@plone/volto 17.0.0-alpha.2 → 17.0.0-alpha.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (297) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/CHANGELOG.md +530 -15
  3. package/CONTRIBUTING.md +1 -1
  4. package/README.md +11 -14
  5. package/addon-registry.js +34 -0
  6. package/create-theme-addons-loader.js +79 -0
  7. package/cypress/support/commands.js +56 -4
  8. package/cypress/support/volto-slate.js +4 -5
  9. package/docker-compose.yml +1 -1
  10. package/locales/ca/LC_MESSAGES/volto.po +272 -6
  11. package/locales/ca.json +1 -1
  12. package/locales/de/LC_MESSAGES/volto.po +291 -25
  13. package/locales/de.json +1 -1
  14. package/locales/en/LC_MESSAGES/volto.po +271 -5
  15. package/locales/en.json +1 -1
  16. package/locales/es/LC_MESSAGES/volto.po +281 -15
  17. package/locales/es.json +1 -1
  18. package/locales/eu/LC_MESSAGES/volto.po +272 -6
  19. package/locales/eu.json +1 -1
  20. package/locales/fi/LC_MESSAGES/volto.po +4882 -0
  21. package/locales/fi.json +1 -1
  22. package/locales/fr/LC_MESSAGES/volto.po +272 -6
  23. package/locales/fr.json +1 -1
  24. package/locales/it/LC_MESSAGES/volto.po +273 -7
  25. package/locales/it.json +1 -1
  26. package/locales/ja/LC_MESSAGES/volto.po +272 -6
  27. package/locales/ja.json +1 -1
  28. package/locales/nl/LC_MESSAGES/volto.po +927 -649
  29. package/locales/nl.json +1 -1
  30. package/locales/pt/LC_MESSAGES/volto.po +272 -6
  31. package/locales/pt.json +1 -1
  32. package/locales/pt_BR/LC_MESSAGES/volto.po +281 -15
  33. package/locales/pt_BR.json +1 -1
  34. package/locales/ro/LC_MESSAGES/volto.po +272 -6
  35. package/locales/ro.json +1 -1
  36. package/locales/volto.pot +272 -6
  37. package/locales/zh_CN/LC_MESSAGES/volto.po +272 -6
  38. package/locales/zh_CN.json +1 -1
  39. package/package.json +5 -3
  40. package/packages/volto-slate/build/messages/src/blocks/Table/TableBlockEdit.json +1 -1
  41. package/packages/volto-slate/build/messages/src/blocks/Text/DefaultTextBlockEditor.json +1 -1
  42. package/packages/volto-slate/build/messages/src/blocks/Text/DetachedTextBlockEditor.json +1 -1
  43. package/packages/volto-slate/build/messages/src/blocks/Text/SlashMenu.json +1 -1
  44. package/packages/volto-slate/build/messages/src/editor/plugins/AdvancedLink/index.json +1 -1
  45. package/packages/volto-slate/build/messages/src/editor/plugins/Link/index.json +1 -1
  46. package/packages/volto-slate/build/messages/src/editor/plugins/Table/index.json +1 -1
  47. package/packages/volto-slate/build/messages/src/elementEditor/messages.json +1 -1
  48. package/packages/volto-slate/build/messages/src/widgets/HtmlSlateWidget.json +1 -1
  49. package/packages/volto-slate/build/messages/src/widgets/RichTextWidgetView.json +1 -1
  50. package/packages/volto-slate/package.json +1 -1
  51. package/packages/volto-slate/src/actions/index.js +1 -1
  52. package/packages/volto-slate/src/blocks/Table/TableBlockEdit.jsx +21 -212
  53. package/packages/volto-slate/src/blocks/Table/schema.js +122 -0
  54. package/packages/volto-slate/src/blocks/Text/DefaultTextBlockEditor.jsx +8 -3
  55. package/packages/volto-slate/src/blocks/Text/SlashMenu.jsx +4 -3
  56. package/packages/volto-slate/src/blocks/Text/TextBlockView.jsx +20 -16
  57. package/packages/volto-slate/src/blocks/Text/extensions/withDeserializers.js +3 -1
  58. package/packages/volto-slate/src/blocks/Text/index.js +10 -2
  59. package/packages/volto-slate/src/editor/config.jsx +5 -4
  60. package/packages/volto-slate/src/editor/deserialize.js +0 -1
  61. package/packages/volto-slate/src/editor/index.js +4 -4
  62. package/packages/volto-slate/src/editor/less/slate.less +28 -0
  63. package/packages/volto-slate/src/editor/plugins/StyleMenu/StyleMenu.jsx +14 -4
  64. package/packages/volto-slate/src/editor/plugins/StyleMenu/utils.js +14 -5
  65. package/packages/volto-slate/src/editor/render.jsx +68 -8
  66. package/packages/volto-slate/src/editor/ui/SlateContextToolbar.jsx +2 -2
  67. package/packages/volto-slate/src/editor/ui/index.js +15 -15
  68. package/packages/volto-slate/src/index.js +2 -2
  69. package/packages/volto-slate/src/utils/blocks.js +7 -0
  70. package/packages/volto-slate/src/widgets/RichTextWidget.jsx +15 -8
  71. package/razzle.config.js +28 -0
  72. package/src/actions/index.js +6 -0
  73. package/src/actions/language/language.js +9 -8
  74. package/src/actions/querystringsearch/querystringsearch.js +20 -14
  75. package/src/actions/relations/rebuild.js +25 -0
  76. package/src/actions/relations/relations.js +86 -0
  77. package/src/actions/relations/relations.test.js +15 -0
  78. package/src/components/index.js +2 -0
  79. package/src/components/manage/Add/Add.jsx +2 -2
  80. package/src/components/manage/AnchorPlugin/index.jsx +2 -2
  81. package/src/components/manage/AnchorPlugin/utils/EditorUtils.js +3 -1
  82. package/src/components/manage/BlockChooser/BlockChooser.jsx +14 -5
  83. package/src/components/manage/BlockChooser/BlockChooser.test.jsx +5 -0
  84. package/src/components/manage/Blocks/Block/BlocksForm.jsx +19 -2
  85. package/src/components/manage/Blocks/Block/Edit.jsx +1 -1
  86. package/src/components/manage/Blocks/Block/Style.jsx +2 -2
  87. package/src/components/manage/Blocks/Container/Data.jsx +32 -0
  88. package/src/components/manage/Blocks/Container/Edit.jsx +174 -0
  89. package/src/components/manage/Blocks/Container/EditBlockWrapper.jsx +120 -0
  90. package/src/components/manage/Blocks/Container/NewBlockAddButton.jsx +84 -0
  91. package/src/components/manage/Blocks/Container/SimpleContainerToolbar.jsx +54 -0
  92. package/src/components/manage/Blocks/Grid/Edit.jsx +33 -0
  93. package/src/components/manage/Blocks/Grid/View.jsx +43 -0
  94. package/src/components/manage/Blocks/Grid/adapter.js +14 -0
  95. package/src/components/manage/Blocks/Grid/grid-1.svg +6 -0
  96. package/src/components/manage/Blocks/Grid/grid-2.svg +9 -0
  97. package/src/components/manage/Blocks/Grid/grid-3.svg +10 -0
  98. package/src/components/manage/Blocks/Grid/grid-4.svg +11 -0
  99. package/src/components/manage/Blocks/Grid/schema.js +35 -0
  100. package/src/components/manage/Blocks/Grid/templates.js +47 -0
  101. package/src/components/manage/Blocks/HeroImageLeft/Edit.jsx +6 -1
  102. package/src/components/manage/Blocks/Image/Edit.jsx +11 -7
  103. package/src/components/manage/Blocks/Image/ImageSidebar.jsx +2 -1
  104. package/src/components/manage/Blocks/Image/schema.js +11 -0
  105. package/src/components/manage/Blocks/Listing/DefaultTemplate.jsx +18 -3
  106. package/src/components/manage/Blocks/Listing/Edit.jsx +0 -14
  107. package/src/components/manage/Blocks/Listing/ListingBody.jsx +30 -8
  108. package/src/components/manage/Blocks/Listing/ListingBody.test.jsx +20 -0
  109. package/src/components/manage/Blocks/Listing/getAsyncData.js +9 -3
  110. package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +26 -18
  111. package/src/components/manage/Blocks/Search/SearchBlockEdit.jsx +5 -4
  112. package/src/components/manage/Blocks/Search/SearchBlockView.jsx +2 -1
  113. package/src/components/manage/Blocks/Search/components/DateRangeFacet.jsx +4 -1
  114. package/src/components/manage/Blocks/Search/components/Facets.jsx +64 -4
  115. package/src/components/manage/Blocks/Search/components/SearchInput.jsx +9 -2
  116. package/src/components/manage/Blocks/Search/components/index.js +13 -13
  117. package/src/components/manage/Blocks/Search/hocs/index.js +2 -2
  118. package/src/components/manage/Blocks/Search/hocs/withQueryString.jsx +2 -2
  119. package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +43 -15
  120. package/src/components/manage/Blocks/Search/layout/LeftColumnFacets.jsx +17 -5
  121. package/src/components/manage/Blocks/Search/layout/RightColumnFacets.jsx +17 -5
  122. package/src/components/manage/Blocks/Search/layout/TopSideFacets.jsx +21 -5
  123. package/src/components/manage/Blocks/Search/schema.js +16 -1
  124. package/src/components/manage/Blocks/Teaser/Body.jsx +0 -1
  125. package/src/components/manage/Blocks/Teaser/DefaultBody.jsx +20 -15
  126. package/src/components/manage/Blocks/Teaser/schema.js +5 -0
  127. package/src/components/manage/Blocks/Title/View.jsx +15 -5
  128. package/src/components/manage/Blocks/Title/View.test.jsx +16 -1
  129. package/src/components/manage/Blocks/ToC/Schema.jsx +5 -1
  130. package/src/components/manage/Blocks/ToC/View.jsx +8 -1
  131. package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +17 -4
  132. package/src/components/manage/Blocks/ToC/variations/HorizontalMenu.jsx +148 -10
  133. package/src/components/manage/Blocks/ToC/variations/index.js +3 -1
  134. package/src/components/manage/Contents/Contents.jsx +39 -26
  135. package/src/components/manage/Contents/ContentsItem.jsx +6 -0
  136. package/src/components/manage/Contents/ContentsUploadModal.jsx +10 -5
  137. package/src/components/manage/Controlpanels/AddonsControlpanel.jsx +3 -3
  138. package/src/components/manage/Controlpanels/Controlpanels.jsx +199 -224
  139. package/src/components/manage/Controlpanels/Controlpanels.test.jsx +46 -7
  140. package/src/components/manage/Controlpanels/Relations/BrokenRelations.jsx +66 -0
  141. package/src/components/manage/Controlpanels/Relations/Relations.jsx +114 -0
  142. package/src/components/manage/Controlpanels/Relations/RelationsListing.jsx +479 -0
  143. package/src/components/manage/Controlpanels/Relations/RelationsMatrix.jsx +531 -0
  144. package/src/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.jsx +3 -3
  145. package/src/components/manage/Controlpanels/Users/UserGroupMembershipListing.jsx +51 -82
  146. package/src/components/manage/Controlpanels/Users/UserGroupMembershipMatrix.jsx +79 -75
  147. package/src/components/manage/DragDropList/DragDropList.jsx +18 -13
  148. package/src/components/manage/Form/Form.jsx +5 -3
  149. package/src/components/manage/Form/InlineForm.jsx +39 -9
  150. package/src/components/manage/Form/InlineFormState.js +8 -0
  151. package/src/components/manage/History/History.jsx +11 -1
  152. package/src/components/manage/LinksToItem/LinksToItem.jsx +209 -0
  153. package/src/components/manage/LinksToItem/LinksToItem.test.jsx +97 -0
  154. package/src/components/manage/Multilingual/CreateTranslation.jsx +2 -2
  155. package/src/components/manage/Multilingual/TranslationObject.jsx +4 -3
  156. package/src/components/manage/Preferences/ChangePassword.jsx +2 -2
  157. package/src/components/manage/Preferences/PersonalPreferences.jsx +2 -2
  158. package/src/components/manage/Sharing/Sharing.jsx +5 -1
  159. package/src/components/manage/TemplateChooser/TemplateChooser.jsx +38 -0
  160. package/src/components/manage/TemplateChooser/TemplateChooser.test.jsx +34 -0
  161. package/src/components/manage/TemplateChooser/template.svg +10 -0
  162. package/src/components/manage/Toast/Toast.jsx +2 -2
  163. package/src/components/manage/Toolbar/More.jsx +15 -0
  164. package/src/components/manage/Toolbar/Types.jsx +2 -2
  165. package/src/components/manage/UniversalLink/UniversalLink.jsx +2 -6
  166. package/src/components/manage/UniversalLink/UniversalLink.test.jsx +36 -0
  167. package/src/components/manage/Widgets/ColorPickerWidget.jsx +6 -1
  168. package/src/components/manage/Widgets/DatetimeWidget.jsx +9 -5
  169. package/src/components/manage/Widgets/FileWidget.jsx +2 -1
  170. package/src/components/manage/Widgets/ObjectListWidget.jsx +3 -8
  171. package/src/components/manage/Widgets/RecurrenceWidget/ByDayField.jsx +2 -1
  172. package/src/components/manage/Widgets/RecurrenceWidget/MonthOfTheYearField.jsx +2 -1
  173. package/src/components/manage/Widgets/RecurrenceWidget/Occurences.jsx +2 -1
  174. package/src/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +8 -3
  175. package/src/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthField.jsx +2 -1
  176. package/src/components/manage/Widgets/SelectUtils.js +1 -1
  177. package/src/components/manage/Widgets/SelectWidget.jsx +1 -1
  178. package/src/components/theme/Anontools/Anontools.jsx +44 -72
  179. package/src/components/theme/Anontools/Anontools.stories.jsx +16 -6
  180. package/src/components/theme/Anontools/Anontools.test.jsx +16 -2
  181. package/src/components/theme/Breadcrumbs/Breadcrumbs.jsx +52 -99
  182. package/src/components/theme/Breadcrumbs/Breadcrumbs.stories.jsx +14 -13
  183. package/src/components/theme/Comments/CommentEditModal.jsx +63 -115
  184. package/src/components/theme/Component/Component.jsx +1 -1
  185. package/src/components/theme/ContactForm/ContactForm.jsx +108 -192
  186. package/src/components/theme/ContactForm/ContactForm.stories.jsx +1 -1
  187. package/src/components/theme/ContactForm/ContactForm.test.jsx +2 -3
  188. package/src/components/theme/Footer/Footer.jsx +2 -13
  189. package/src/components/theme/Header/Header.jsx +37 -63
  190. package/src/components/theme/Header/Header.test.jsx +18 -0
  191. package/src/components/theme/Icon/Icon.jsx +2 -2
  192. package/src/components/theme/LanguageSelector/LanguageSelector.js +8 -3
  193. package/src/components/theme/Login/Login.jsx +1 -0
  194. package/src/components/theme/Logo/Logo.jsx +2 -1
  195. package/src/components/theme/MultilingualRedirector/MultilingualRedirector.jsx +2 -2
  196. package/src/components/theme/Navigation/NavItem.jsx +4 -2
  197. package/src/components/theme/NotFound/NotFound.jsx +55 -41
  198. package/src/components/theme/PasswordReset/PasswordReset.jsx +7 -4
  199. package/src/components/theme/PasswordReset/RequestPasswordReset.jsx +1 -1
  200. package/src/components/theme/SearchWidget/SearchWidget.jsx +38 -98
  201. package/src/components/theme/Sitemap/Sitemap.jsx +5 -3
  202. package/src/components/theme/View/AlbumView.jsx +9 -1
  203. package/src/components/theme/View/DefaultView.jsx +1 -1
  204. package/src/components/theme/View/EventDatesInfo.jsx +2 -1
  205. package/src/components/theme/View/EventView.jsx +6 -2
  206. package/src/components/theme/View/FileView.jsx +23 -18
  207. package/src/components/theme/View/ImageView.jsx +37 -32
  208. package/src/components/theme/View/LinkView.jsx +53 -78
  209. package/src/components/theme/View/ListingView.jsx +33 -27
  210. package/src/components/theme/View/NewsItemView.jsx +10 -5
  211. package/src/components/theme/View/RenderBlocks.jsx +56 -21
  212. package/src/components/theme/View/RenderEmptyBlock.jsx +5 -0
  213. package/src/components/theme/View/SummaryView.jsx +47 -38
  214. package/src/components/theme/View/TabularView.jsx +59 -53
  215. package/src/components/theme/Widgets/DateWidget.jsx +2 -1
  216. package/src/components/theme/Widgets/DatetimeWidget.jsx +2 -1
  217. package/src/components/theme/Widgets/RelationsWidget.jsx +13 -11
  218. package/src/config/Blocks.jsx +44 -0
  219. package/src/config/ControlPanels.js +2 -0
  220. package/src/config/NonContentRoutes.jsx +1 -0
  221. package/src/config/RichTextEditor/Blocks.jsx +2 -2
  222. package/src/config/RichTextEditor/FromHTML.jsx +2 -2
  223. package/src/config/RichTextEditor/Styles.jsx +1 -1
  224. package/src/config/Widgets.jsx +2 -0
  225. package/src/config/index.js +24 -0
  226. package/src/config/server.js +2 -0
  227. package/src/constants/ActionTypes.js +4 -0
  228. package/src/constants/Indexes.js +3 -1
  229. package/src/constants/Languages.js +8 -4
  230. package/src/express-middleware/devproxy.js +1 -1
  231. package/src/express-middleware/files.js +3 -3
  232. package/src/express-middleware/images.js +4 -4
  233. package/src/express-middleware/ok.js +16 -0
  234. package/src/express-middleware/robotstxt.js +1 -1
  235. package/src/express-middleware/sitemap.js +37 -5
  236. package/src/express-middleware/static.js +3 -3
  237. package/src/helpers/Api/Api.js +1 -1
  238. package/src/helpers/Blocks/Blocks.js +48 -0
  239. package/src/helpers/Blocks/Blocks.test.js +79 -0
  240. package/src/helpers/Extensions/index.js +2 -1
  241. package/src/helpers/Extensions/withBlockSchemaEnhancer.js +15 -11
  242. package/src/helpers/Extensions/withBlockSchemaEnhancer.test.js +145 -0
  243. package/src/helpers/FormValidation/FormValidation.js +40 -2
  244. package/src/helpers/FormValidation/FormValidation.test.js +73 -0
  245. package/src/helpers/Html/Html.jsx +3 -1
  246. package/src/helpers/Html/Html.test.jsx +5 -0
  247. package/src/helpers/MessageLabels/MessageLabels.js +80 -0
  248. package/src/helpers/Robots/Robots.js +24 -6
  249. package/src/helpers/ScrollToTop/ScrollToTop.jsx +5 -3
  250. package/src/helpers/Sitemap/Sitemap.js +44 -2
  251. package/src/helpers/Url/Url.js +27 -6
  252. package/src/helpers/Url/Url.test.js +26 -0
  253. package/src/helpers/Utils/UseDetectClickOutside.stories.jsx +191 -0
  254. package/src/helpers/Utils/Utils.js +63 -13
  255. package/src/helpers/Utils/Utils.test.js +4 -4
  256. package/src/helpers/Utils/usePagination.js +67 -14
  257. package/src/helpers/Utils/usePagination.test.js +115 -0
  258. package/src/helpers/index.js +20 -10
  259. package/src/hooks/client/useClient.js +11 -0
  260. package/src/hooks/clipboard/useClipboard.js +26 -0
  261. package/src/hooks/index.js +2 -0
  262. package/src/icons/grid-block.svg +11 -0
  263. package/src/middleware/Api.test.js +54 -0
  264. package/src/middleware/api.js +24 -6
  265. package/src/middleware/index.js +2 -2
  266. package/src/reducers/actions/actions.js +8 -6
  267. package/src/reducers/actions/actions.test.js +70 -0
  268. package/src/reducers/breadcrumbs/breadcrumbs.js +1 -1
  269. package/src/reducers/index.js +2 -0
  270. package/src/reducers/navigation/navigation.js +1 -1
  271. package/src/reducers/relations/relations.js +173 -0
  272. package/src/reducers/types/types.js +1 -1
  273. package/src/routes.js +14 -0
  274. package/src/server.jsx +28 -23
  275. package/src/start-server.js +2 -2
  276. package/test-setup-config.js +2 -0
  277. package/theme/themes/pastanaga/extras/blocks.less +3 -1
  278. package/theme/themes/pastanaga/extras/contents.less +1 -0
  279. package/theme/themes/pastanaga/extras/grid.less +426 -0
  280. package/theme/themes/pastanaga/extras/main.less +3 -1
  281. package/theme/themes/pastanaga/extras/search.less +6 -0
  282. package/theme/themes/pastanaga/extras/sidebar.less +4 -0
  283. package/theme/themes/pastanaga/extras/toc.less +29 -0
  284. package/theme/themes/pastanaga/extras/userscontrolpanel.less +99 -76
  285. package/.changelog.draft +0 -31
  286. package/.editorconfig +0 -36
  287. package/.storybook/main.js +0 -127
  288. package/.storybook/manager.js +0 -15
  289. package/.storybook/preview.js +0 -21
  290. package/.storybook/static/previewImage.svg +0 -48
  291. package/.yarnrc.yml +0 -5
  292. package/jsdoc.json +0 -16
  293. package/netlify.toml +0 -5
  294. package/pyvenv.cfg +0 -3
  295. package/share/man/man1/ttx.1 +0 -225
  296. package/src/components/theme/Header/Header.md +0 -27
  297. package/towncrier.toml +0 -33
@@ -0,0 +1,4882 @@
1
+ #
2
+ # Translators:
3
+ # Petri Savolainen <petri.savolainen@iki.fi>, 2020
4
+ # Asko Soukka <asko.soukka@iki.fi>, 2020
5
+ # Rikupekka Oksanen <rioksane@gmail.com>, 2022
6
+ #
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: Plone\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2020-01-28T02:46:27.521Z\n"
12
+ "PO-Revision-Date: \n"
13
+ "Last-Translator: Asko Soukka <asko.soukka@iki.fi>, 2020\n"
14
+ "Language: fi\n"
15
+ "Language-Team: Finnish (https://www.transifex.com/plone/teams/14552/fi/)\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "MIME-Version: 1.0\n"
20
+ "Domain: volto\n"
21
+ "Language-Code: fi\n"
22
+ "Language-Name: Finnish\n"
23
+ "Preferred-Encodings: utf-8\n"
24
+
25
+ #: components/manage/Blocks/HTML/Edit
26
+ # defaultMessage: <p>Add some HTML here</p>
27
+ msgid "<p>Add some HTML here</p>"
28
+ msgstr "<p>Kirjoita tähän HTML-koodia</p>"
29
+
30
+ #: components/theme/Register/Register
31
+ # defaultMessage: Account Registration Completed
32
+ msgid "Account Registration Completed"
33
+ msgstr "Käyttäjätunnuksen rekisteröinti on valmis"
34
+
35
+ #: components/theme/PasswordReset/PasswordReset
36
+ # defaultMessage: Account activation completed
37
+ msgid "Account activation completed"
38
+ msgstr "Käyttäjätunnuksen aktivointi on valmis"
39
+
40
+ #: components/manage/Controlpanels/ModerateComments
41
+ # defaultMessage: Action
42
+ msgid "Action"
43
+ msgstr "Toiminto"
44
+
45
+ #: components/manage/Controlpanels/Rules/ConfigureRule
46
+ # defaultMessage: Action changed
47
+ msgid "Action changed"
48
+ msgstr "Toiminto muutettu"
49
+
50
+ #: components/manage/Controlpanels/Rules/ConfigureRule
51
+ # defaultMessage: Action:
52
+ msgid "Action: "
53
+ msgstr "Toiminto"
54
+
55
+ #: components/manage/Actions/Actions
56
+ #: components/manage/Contents/Contents
57
+ #: components/manage/Controlpanels/ContentTypes
58
+ #: components/manage/Controlpanels/Groups/GroupsControlpanel
59
+ #: components/manage/Controlpanels/Rules/Rules
60
+ #: components/manage/Controlpanels/Users/UsersControlpanel
61
+ # defaultMessage: Actions
62
+ msgid "Actions"
63
+ msgstr "Toiminnot"
64
+
65
+ #: components/manage/Controlpanels/AddonsControlpanel
66
+ # defaultMessage: Activate and deactivate add-ons in the lists below.
67
+ msgid "Activate and deactivate"
68
+ msgstr "Ota käyttöön ja poista käytöstä"
69
+
70
+ #: components/manage/Rules/Rules
71
+ # defaultMessage: Active
72
+ msgid "Active"
73
+ msgstr "Aktiivinen"
74
+
75
+ #: components/manage/Rules/Rules
76
+ # defaultMessage: Active content rules in this Page
77
+ msgid "Active content rules in this Page"
78
+ msgstr "Aktiiviset sisältösäännöt tällä sivulla"
79
+
80
+ #: components/manage/Aliases/Aliases
81
+ #: components/manage/Controlpanels/Aliases
82
+ #: components/manage/Controlpanels/ContentTypes
83
+ #: components/manage/Controlpanels/Rules/ConfigureRule
84
+ #: components/manage/Rules/Rules
85
+ #: components/manage/Toolbar/Toolbar
86
+ #: components/manage/Widgets/SchemaWidget
87
+ #: helpers/MessageLabels/MessageLabels
88
+ # defaultMessage: Add
89
+ msgid "Add"
90
+ msgstr "Lisää"
91
+
92
+ #: components/manage/Widgets/ObjectListWidget
93
+ # defaultMessage: Add
94
+ msgid "Add (object list)"
95
+ msgstr "Lisää (objektilista)"
96
+
97
+ #: components/manage/Controlpanels/AddonsControlpanel
98
+ # defaultMessage: To make new add-ons show up here, add them to your configuration, build, and restart the server process. For detailed instructions see
99
+ msgid "Add Addons"
100
+ msgstr "Lisää laajennoksia"
101
+
102
+ #: components/manage/Toolbar/Types
103
+ # defaultMessage: Add Content…
104
+ msgid "Add Content"
105
+ msgstr "Lisää sisältöä"
106
+
107
+ #: components/manage/Controlpanels/Rules/AddRule
108
+ # defaultMessage: Add Content Rule
109
+ msgid "Add Content Rule"
110
+ msgstr "Lisää sisältösääntö"
111
+
112
+ #: components/manage/Controlpanels/Rules/AddRule
113
+ # defaultMessage: Add Rule
114
+ msgid "Add Rule"
115
+ msgstr "Lisää sääntö"
116
+
117
+ #: components/manage/Toolbar/Types
118
+ # defaultMessage: Add Translation…
119
+ msgid "Add Translation…"
120
+ msgstr "Lisää käännös…"
121
+
122
+ #: helpers/MessageLabels/MessageLabels
123
+ # defaultMessage: Add User
124
+ msgid "Add User"
125
+ msgstr "Lisää käyttäjä"
126
+
127
+ #: components/manage/Blocks/Description/Edit
128
+ # defaultMessage: Add a description…
129
+ msgid "Add a description…"
130
+ msgstr "Lisää kuvaus…"
131
+
132
+ #: components/manage/Aliases/Aliases
133
+ # defaultMessage: Add a new alternative url
134
+ msgid "Add a new alternative url"
135
+ msgstr "Lisää vaihtoehtoinen URL"
136
+
137
+ #: components/manage/Controlpanels/Rules/ConfigureRule
138
+ # defaultMessage: Action added
139
+ msgid "Add action"
140
+ msgstr "Lisää toiminto"
141
+
142
+ #: components/manage/BlockChooser/BlockChooserButton
143
+ # defaultMessage: Add block
144
+ msgid "Add block"
145
+ msgstr "Lisää palikka"
146
+
147
+ #: components/manage/Blocks/Container/NewBlockAddButton
148
+ # defaultMessage: Add block in position {index}
149
+ msgid "Add block in position {index}"
150
+ msgstr ""
151
+
152
+ #: helpers/MessageLabels/MessageLabels
153
+ # defaultMessage: Add block…
154
+ msgid "Add block…"
155
+ msgstr "Add palikka…"
156
+
157
+ #: components/manage/Controlpanels/Rules/ConfigureRule
158
+ # defaultMessage: Condition added
159
+ msgid "Add condition"
160
+ msgstr "Lisää ehto"
161
+
162
+ #: components/manage/Controlpanels/Rules/Rules
163
+ # defaultMessage: Add content rule
164
+ msgid "Add content rule"
165
+ msgstr "Lisää sisältösääntö"
166
+
167
+ #: components/manage/Widgets/QueryWidget
168
+ # defaultMessage: Add criteria
169
+ msgid "Add criteria"
170
+ msgstr "Lisää ehto"
171
+
172
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
173
+ # defaultMessage: Add date
174
+ msgid "Add date"
175
+ msgstr "Lisää päivä"
176
+
177
+ #: components/manage/Blocks/Container/SimpleContainerToolbar
178
+ # defaultMessage: Add element to container
179
+ msgid "Add element to container"
180
+ msgstr ""
181
+
182
+ #: components/manage/Widgets/SchemaWidget
183
+ # defaultMessage: Add field
184
+ msgid "Add field"
185
+ msgstr "Lisää kenttä"
186
+
187
+ #: components/manage/Widgets/SchemaWidget
188
+ # defaultMessage: Add fieldset
189
+ msgid "Add fieldset"
190
+ msgstr "Lisää kenttäryhmä"
191
+
192
+ #: helpers/MessageLabels/MessageLabels
193
+ # defaultMessage: Add group
194
+ msgid "Add group"
195
+ msgstr "Lisää ryhmä"
196
+
197
+ #: components/manage/Controlpanels/ContentTypes
198
+ # defaultMessage: Add new content type
199
+ msgid "Add new content type"
200
+ msgstr "Lisää uusi sisältötyyppi"
201
+
202
+ #: helpers/MessageLabels/MessageLabels
203
+ # defaultMessage: Add new group
204
+ msgid "Add new group"
205
+ msgstr "Lisää uusi ryhmä"
206
+
207
+ #: helpers/MessageLabels/MessageLabels
208
+ # defaultMessage: Add new user
209
+ msgid "Add new user"
210
+ msgstr "Lisää uusi käyttäjä"
211
+
212
+ #: helpers/MessageLabels/MessageLabels
213
+ # defaultMessage: Add to Groups
214
+ msgid "Add to Groups"
215
+ msgstr "Lisää ryhmiin"
216
+
217
+ #: helpers/MessageLabels/MessageLabels
218
+ # defaultMessage: Add users to group
219
+ msgid "Add users to group"
220
+ msgstr "Lisää käyttäjiä ryhmään"
221
+
222
+ #: components/manage/Widgets/VocabularyTermsWidget
223
+ # defaultMessage: Add term
224
+ msgid "Add vocabulary term"
225
+ msgstr "Lisää sanastotermi"
226
+
227
+ #: components/manage/Add/Add
228
+ # defaultMessage: Add {type}
229
+ msgid "Add {type}"
230
+ msgstr "Lisää {type}"
231
+
232
+ #: components/manage/Controlpanels/Controlpanels
233
+ # defaultMessage: Add-Ons
234
+ msgid "Add-Ons"
235
+ msgstr "Laajennokset"
236
+
237
+ #: components/manage/Controlpanels/Controlpanels
238
+ # defaultMessage: Add-on Configuration
239
+ msgid "Add-on Configuration"
240
+ msgstr "Laajennosten asetukset"
241
+
242
+ #: components/manage/Controlpanels/AddonsControlpanel
243
+ # defaultMessage: Add-ons
244
+ msgid "Add-ons"
245
+ msgstr "Laajennokset"
246
+
247
+ #: components/manage/Controlpanels/AddonsControlpanel
248
+ # defaultMessage: Add-ons Settings
249
+ msgid "Add-ons Settings"
250
+ msgstr "Laajennoksien asetukset"
251
+
252
+ #: components/manage/Rules/Rules
253
+ # defaultMessage: Added
254
+ msgid "Added"
255
+ msgstr "Lisätty"
256
+
257
+ #: components/manage/Widgets/RecurrenceWidget/Occurences
258
+ # defaultMessage: Additional date
259
+ msgid "Additional date"
260
+ msgstr "Erillinen päivä"
261
+
262
+ #: components/manage/Controlpanels/AddonsControlpanel
263
+ # defaultMessage: Addon could not be installed
264
+ msgid "Addon could not be installed"
265
+ msgstr "Laajennosta ei voitu asentaa"
266
+
267
+ #: components/manage/Controlpanels/AddonsControlpanel
268
+ # defaultMessage: Addon could not be uninstalled
269
+ msgid "Addon could not be uninstalled"
270
+ msgstr "Laajennosta ei voitu poistaa"
271
+
272
+ #: components/manage/Controlpanels/AddonsControlpanel
273
+ # defaultMessage: Addon could not be upgraded
274
+ msgid "Addon could not be upgraded"
275
+ msgstr "Laajennosta ei voitu päivittää"
276
+
277
+ #: components/manage/Controlpanels/AddonsControlpanel
278
+ # defaultMessage: Addon installed succesfuly
279
+ msgid "Addon installed succesfuly"
280
+ msgstr "Laajennos asennettu onnistuneesti"
281
+
282
+ #: components/manage/Controlpanels/AddonsControlpanel
283
+ # defaultMessage: Addon uninstalled succesfuly
284
+ msgid "Addon uninstalled succesfuly"
285
+ msgstr "Laajennos poistettu onnistuneesti"
286
+
287
+ #: components/manage/Controlpanels/AddonsControlpanel
288
+ # defaultMessage: Addon upgraded succesfuly
289
+ msgid "Addon upgraded succesfuly"
290
+ msgstr "Laajennos päivitetty onnistuneesti"
291
+
292
+ #: components/manage/Blocks/Search/schema
293
+ # defaultMessage: Advanced facet?
294
+ msgid "Advanced facet?"
295
+ msgstr ""
296
+
297
+ #: components/manage/Blocks/Search/schema
298
+ # defaultMessage: Advanced facets are initially hidden and displayed on demand
299
+ msgid "Advanced facets are initially hidden and displayed on demand"
300
+ msgstr ""
301
+
302
+ #: config/Views
303
+ # defaultMessage: Album view
304
+ msgid "Album view"
305
+ msgstr "Albuminäkymä"
306
+
307
+ #: components/manage/Controlpanels/Aliases
308
+ # defaultMessage: Alias
309
+ msgid "Alias"
310
+ msgstr "Alias"
311
+
312
+ #: components/manage/Aliases/Aliases
313
+ #: components/manage/Controlpanels/Aliases
314
+ # defaultMessage: Alias has been added
315
+ msgid "Alias has been added"
316
+ msgstr "Alias on lisätty"
317
+
318
+ #: components/manage/Blocks/Image/schema
319
+ #: components/manage/Blocks/LeadImage/LeadImageSidebar
320
+ #: components/manage/Blocks/Maps/schema
321
+ #: components/manage/Blocks/Teaser/schema
322
+ #: components/manage/Blocks/Video/schema
323
+ # defaultMessage: Alignment
324
+ msgid "Alignment"
325
+ msgstr "Asettelu"
326
+
327
+ #: components/manage/Contents/Contents
328
+ # defaultMessage: All
329
+ msgid "All"
330
+ msgstr "Kaikki"
331
+
332
+ #: config/Views
333
+ # defaultMessage: All content
334
+ msgid "All content"
335
+ msgstr "Kaikki sisältö"
336
+
337
+ #: components/manage/Controlpanels/Aliases
338
+ # defaultMessage: All existing alternative urls for this site
339
+ msgid "All existing alternative urls for this site"
340
+ msgstr "Kaikki vaihtoehtoiset URL:t tälle sivustolle"
341
+
342
+ #: components/theme/Search/Search
343
+ # defaultMessage: Alphabetically
344
+ msgid "Alphabetically"
345
+ msgstr "Aakkosjärjestys"
346
+
347
+ #: components/manage/Blocks/Image/schema
348
+ #: components/manage/Blocks/LeadImage/LeadImageSidebar
349
+ #: components/manage/Blocks/Maps/schema
350
+ # defaultMessage: Alt text
351
+ msgid "Alt text"
352
+ msgstr "Kuvaus"
353
+
354
+ #: components/manage/Blocks/Image/schema
355
+ # defaultMessage: Leave empty if the image is purely decorative.
356
+ msgid "Alt text hint"
357
+ msgstr "Kuvaustekstin vihje"
358
+
359
+ #: components/manage/Blocks/Image/schema
360
+ # defaultMessage: Describe the purpose of the image.
361
+ msgid "Alt text hint link text"
362
+ msgstr "Kuvaustekstin vihjeen linkkiteksti"
363
+
364
+ #: components/manage/Controlpanels/Aliases
365
+ # defaultMessage: Alternative url path (Required)
366
+ msgid "Alternative url path (Required)"
367
+ msgstr "Vaihtoehtoinen URL-polku (pakollinen)"
368
+
369
+ #: components/manage/Aliases/Aliases
370
+ #: components/manage/Controlpanels/Aliases
371
+ # defaultMessage: Alternative url path must start with a slash.
372
+ msgid "Alternative url path must start with a slash."
373
+ msgstr "Vaihtoehtoisen URL-polun pitää alkaa kauttaviivalla"
374
+
375
+ #: components/manage/Controlpanels/Aliases
376
+ # defaultMessage: Alternative url path → target url path (date and time of creation, manually created yes/no)
377
+ msgid "Alternative url path → target url path (date and time of creation, manually created yes/no)"
378
+ msgstr "Vaihtoehtoinen URL-polku -> kohteen URL-polku (päivämäärä ja luontiaika, käsin luotu kyllä/ei)"
379
+
380
+ #: components/manage/Rules/Rules
381
+ # defaultMessage: Applied to subfolders
382
+ msgid "Applied to subfolders"
383
+ msgstr "Koskee alikansioita"
384
+
385
+ #: components/manage/Rules/Rules
386
+ # defaultMessage: Applies to subfolders?
387
+ msgid "Applies to subfolders?"
388
+ msgstr "Koskee alikansioita"
389
+
390
+ #: components/manage/Rules/Rules
391
+ # defaultMessage: Apply to subfolders
392
+ msgid "Apply to subfolders"
393
+ msgstr "Kohdista alikansioihin"
394
+
395
+ #: components/manage/Toolbar/More
396
+ # defaultMessage: Apply working copy
397
+ msgid "Apply working copy"
398
+ msgstr "Kohdista työkopio"
399
+
400
+ #: components/manage/Widgets/SchemaWidget
401
+ # defaultMessage: Are you sure you want to delete this field?
402
+ msgid "Are you sure you want to delete this field?"
403
+ msgstr "Haluatko varmasti poistaa tämän kentän?"
404
+
405
+ #: components/manage/Widgets/SchemaWidget
406
+ # defaultMessage: Are you sure you want to delete this fieldset including all fields?
407
+ msgid "Are you sure you want to delete this fieldset including all fields?"
408
+ msgstr "Haluatko varmasti poistaa tämän kenttäryhmän ja kaikki sen kentät?"
409
+
410
+ #: components/manage/Blocks/Search/components/SortOn
411
+ #: components/manage/Contents/Contents
412
+ # defaultMessage: Ascending
413
+ msgid "Ascending"
414
+ msgstr "Nouseva"
415
+
416
+ #: components/manage/Controlpanels/Rules/ConfigureRule
417
+ # defaultMessage: Assignments
418
+ msgid "Assignments"
419
+ msgstr "Tehtävät"
420
+
421
+ #: components/manage/Controlpanels/AddonsControlpanel
422
+ # defaultMessage: Available
423
+ msgid "Available"
424
+ msgstr "Saatavilla"
425
+
426
+ #: components/manage/Rules/Rules
427
+ # defaultMessage: Available content rules:
428
+ msgid "Available content rules:"
429
+ msgstr "Saatavilla olevat sisältösäännöt:"
430
+
431
+ #: components/manage/Aliases/Aliases
432
+ #: components/manage/Contents/Contents
433
+ #: components/manage/Controlpanels/AddonsControlpanel
434
+ #: components/manage/Controlpanels/Aliases
435
+ #: components/manage/Controlpanels/ContentType
436
+ #: components/manage/Controlpanels/ContentTypeLayout
437
+ #: components/manage/Controlpanels/ContentTypes
438
+ #: components/manage/Controlpanels/Controlpanel
439
+ #: components/manage/Controlpanels/Controlpanels
440
+ #: components/manage/Controlpanels/DatabaseInformation
441
+ #: components/manage/Controlpanels/ModerateComments
442
+ #: components/manage/Controlpanels/Rules/AddRule
443
+ #: components/manage/Controlpanels/Rules/ConfigureRule
444
+ #: components/manage/Controlpanels/Rules/EditRule
445
+ #: components/manage/Controlpanels/Rules/Rules
446
+ #: components/manage/Controlpanels/UndoControlpanel
447
+ #: components/manage/Controlpanels/UpgradeControlPanel
448
+ #: components/manage/Diff/Diff
449
+ #: components/manage/History/History
450
+ #: components/manage/LinksToItem/LinksToItem
451
+ #: components/manage/Multilingual/ManageTranslations
452
+ #: components/manage/Preferences/ChangePassword
453
+ #: components/manage/Preferences/PersonalPreferences
454
+ #: components/manage/Rules/Rules
455
+ #: components/manage/Sharing/Sharing
456
+ #: components/manage/Sidebar/ObjectBrowserBody
457
+ #: components/manage/Toolbar/PersonalTools
458
+ #: components/manage/Toolbar/Toolbar
459
+ #: components/theme/ContactForm/ContactForm
460
+ #: helpers/MessageLabels/MessageLabels
461
+ # defaultMessage: Back
462
+ msgid "Back"
463
+ msgstr "Takaisin"
464
+
465
+ #: components/manage/Diff/Diff
466
+ # defaultMessage: Base
467
+ msgid "Base"
468
+ msgstr "Vertailukohta"
469
+
470
+ #: components/manage/Blocks/Search/schema
471
+ # defaultMessage: Base search query
472
+ msgid "Base search query"
473
+ msgstr ""
474
+
475
+ #: components/manage/Sidebar/Sidebar
476
+ # defaultMessage: Block
477
+ msgid "Block"
478
+ msgstr "Palikka"
479
+
480
+ #: components/theme/Login/Login
481
+ # defaultMessage: Both email address and password are case sensitive, check that caps lock is not enabled.
482
+ msgid "Both email address and password are case sensitive, check that caps lock is not enabled."
483
+ msgstr "Tarkista, että caps lock ei ole päällä. Sekä sähköpostiosoitteessa että salasanassa myös kirjainten koko tarkistetaan."
484
+
485
+ #: components/theme/Breadcrumbs/Breadcrumbs
486
+ # defaultMessage: Breadcrumbs
487
+ msgid "Breadcrumbs"
488
+ msgstr "Leivänmurut"
489
+
490
+ #: components/manage/Controlpanels/Relations/BrokenRelations
491
+ # defaultMessage: Broken relations
492
+ msgid "Broken relations"
493
+ msgstr ""
494
+
495
+ #: components/manage/Blocks/HeroImageLeft/Edit
496
+ #: components/manage/Contents/ContentsUploadModal
497
+ #: components/manage/Sidebar/ObjectBrowserNav
498
+ # defaultMessage: Browse
499
+ msgid "Browse"
500
+ msgstr "Selaa"
501
+
502
+ #: components/manage/Blocks/Image/Edit
503
+ # defaultMessage: Browse the site, drop an image, or type an URL
504
+ msgid "Browse the site, drop an image, or type an URL"
505
+ msgstr "Selaa sivustoa, raahaa ja pudota kuva, tai syötä URL"
506
+
507
+ #: components/manage/Sharing/Sharing
508
+ # defaultMessage: By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator.
509
+ msgid "By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator."
510
+ msgstr "Oletuksena käyttöoikeudet peritään aina edeltävältä sisältötasolta. Jos tämä valinta poistetaan, vain tällä tasolla erikseen määritellyt käyttöoikeudet ovat voimassa. {inherited} tarkoittaa perittyä käyttöoikeutta. {global} tarkoittaa ylläpitäjän myöntämää sivustonlaajuista käyttöoikeutta."
511
+
512
+ #: components/manage/Contents/Contents
513
+ # defaultMessage: By deleting this item, you will break links that exist in the items listed below. If this is indeed what you want to do, we recommend that remove these references first.
514
+ msgid "By deleting this item, you will break links that exist in the items listed below. If this is indeed what you want to do, we recommend that remove these references first."
515
+ msgstr "Poistamalla tämän kohteen, rikot alla listatuissa kohteissa olevat linkit. Jos todella haluat tehdä tämän, suosittelemme, että poistat viittaukset ensin."
516
+
517
+ #: components/manage/Controlpanels/DatabaseInformation
518
+ # defaultMessage: Cache Name
519
+ msgid "Cache Name"
520
+ msgstr "Välimuistin nimi"
521
+
522
+ #: components/manage/Controlpanels/ContentTypeLayout
523
+ # defaultMessage: Can not edit Layout for <strong>{type}</strong> content-type as it doesn't have support for <strong>Volto Blocks</strong> enabled
524
+ msgid "Can not edit Layout for <strong>{type}</strong> content-type as it doesn't have support for <strong>Volto Blocks</strong> enabled"
525
+ msgstr "Sisältötyypin <strong>{type}</strong> asettelua ei voi muokata, koska sisältötyyppi ei tue <strong>Volto-palikoita</strong>"
526
+
527
+ #: components/manage/Controlpanels/ContentTypeLayout
528
+ # defaultMessage: Can not edit Layout for <strong>{type}</strong> content-type as the <strong>Blocks behavior</strong> is enabled and <strong>read-only</strong>
529
+ msgid "Can not edit Layout for <strong>{type}</strong> content-type as the <strong>Blocks behavior</strong> is enabled and <strong>read-only</strong>"
530
+ msgstr "Sisältötyypin <strong>{type}</strong> asettelua ei voi muokata, koska sisältötyypille ei ole aktivoitu <strong>Volto-palikoita</strong>"
531
+
532
+ #: components/manage/Add/Add
533
+ #: components/manage/Contents/ContentsUploadModal
534
+ #: components/manage/Controlpanels/ContentType
535
+ #: components/manage/Controlpanels/ContentTypeLayout
536
+ #: components/manage/Controlpanels/ContentTypeSchema
537
+ #: components/manage/Controlpanels/Controlpanel
538
+ #: components/manage/Controlpanels/Rules/AddRule
539
+ #: components/manage/Controlpanels/Rules/EditRule
540
+ #: components/manage/Delete/Delete
541
+ #: components/manage/Edit/Edit
542
+ #: components/manage/Form/ModalForm
543
+ #: components/manage/Sharing/Sharing
544
+ #: components/theme/Login/Login
545
+ #: helpers/MessageLabels/MessageLabels
546
+ # defaultMessage: Cancel
547
+ msgid "Cancel"
548
+ msgstr "Peruuta"
549
+
550
+ #: components/manage/Blocks/Table/Edit
551
+ # defaultMessage: Cell
552
+ msgid "Cell"
553
+ msgstr "Sarake"
554
+
555
+ #: components/manage/Blocks/Maps/Edit
556
+ #: components/manage/Sidebar/AlignBlock
557
+ #: components/manage/Widgets/AlignWidget
558
+ # defaultMessage: Center
559
+ msgid "Center"
560
+ msgstr "Keskellä"
561
+
562
+ #: components/manage/History/History
563
+ # defaultMessage: Change Note
564
+ msgid "Change Note"
565
+ msgstr "Muutoskommentti"
566
+
567
+ #: components/manage/Preferences/ChangePassword
568
+ # defaultMessage: Change Password
569
+ msgid "Change Password"
570
+ msgstr "Vaida salasana"
571
+
572
+ #: components/manage/Contents/ContentsWorkflowModal
573
+ # defaultMessage: Change State
574
+ msgid "Change State"
575
+ msgstr "Muuta julkisuutta"
576
+
577
+ #: components/manage/Contents/ContentsWorkflowModal
578
+ # defaultMessage: Change workflow state recursively
579
+ msgid "Change workflow state recursively"
580
+ msgstr "Muuta työnkulun tila rekursiivisesti"
581
+
582
+ #: components/manage/Toolbar/More
583
+ # defaultMessage: Changes applied
584
+ msgid "Changes applied."
585
+ msgstr "Muutokset toteutettu."
586
+
587
+ #: components/manage/Preferences/ChangePassword
588
+ #: components/manage/Preferences/PersonalPreferences
589
+ # defaultMessage: Changes saved
590
+ msgid "Changes saved"
591
+ msgstr "Muutokset tallennettu"
592
+
593
+ #: components/manage/Controlpanels/ContentType
594
+ #: components/manage/Controlpanels/ContentTypeLayout
595
+ #: components/manage/Controlpanels/ContentTypeSchema
596
+ #: components/manage/Controlpanels/Controlpanel
597
+ # defaultMessage: Changes saved.
598
+ msgid "Changes saved."
599
+ msgstr "Muutokset tallennettu"
600
+
601
+ #: components/manage/Widgets/SchemaWidget
602
+ # defaultMessage: Checkbox
603
+ msgid "Checkbox"
604
+ msgstr "Valinta"
605
+
606
+ #: components/manage/Widgets/SelectWidget
607
+ # defaultMessage: Choices
608
+ msgid "Choices"
609
+ msgstr "Luettelo"
610
+
611
+ #: components/manage/Sidebar/ObjectBrowserBody
612
+ # defaultMessage: Choose Image
613
+ msgid "Choose Image"
614
+ msgstr "Valitse kuva"
615
+
616
+ #: components/manage/Sidebar/ObjectBrowserBody
617
+ # defaultMessage: Choose Target
618
+ msgid "Choose Target"
619
+ msgstr "Valitse sisältö"
620
+
621
+ #: components/manage/Widgets/FileWidget
622
+ # defaultMessage: Choose a file
623
+ msgid "Choose a file"
624
+ msgstr "Valitse tiedosto"
625
+
626
+ #: components/manage/Blocks/HTML/Edit
627
+ # defaultMessage: Clear
628
+ msgid "Clear"
629
+ msgstr "Tyhjennä"
630
+
631
+ #: components/manage/Blocks/Search/components/FilterList
632
+ # defaultMessage: Clear filters
633
+ msgid "Clear filters"
634
+ msgstr "Tyhjennä suodattimet"
635
+
636
+ #: components/theme/View/ImageView
637
+ # defaultMessage: Click to download full sized image
638
+ msgid "Click to download full sized image"
639
+ msgstr "Lataa täysikokoinen kuva"
640
+
641
+ #: components/manage/Widgets/SelectWidget
642
+ # defaultMessage: Close
643
+ msgid "Close"
644
+ msgstr "Sulje"
645
+
646
+ #: components/theme/Navigation/Navigation
647
+ # defaultMessage: Close menu
648
+ msgid "Close menu"
649
+ msgstr "Sulje valikko"
650
+
651
+ #: components/manage/Blocks/HTML/Edit
652
+ # defaultMessage: Code
653
+ msgid "Code"
654
+ msgstr "Koodi"
655
+
656
+ #: components/manage/Widgets/ObjectListWidget
657
+ # defaultMessage: Collapse item
658
+ msgid "Collapse item"
659
+ msgstr "Sulje kohde"
660
+
661
+ #: components/manage/Toolbar/Toolbar
662
+ # defaultMessage: Collection
663
+ msgid "Collection"
664
+ msgstr "Kokoelma"
665
+
666
+ #: components/manage/Widgets/ColorPickerWidget
667
+ # defaultMessage: Color
668
+ msgid "Color"
669
+ msgstr "Väri"
670
+
671
+ #: components/manage/Controlpanels/ModerateComments
672
+ #: components/theme/Comments/CommentEditModal
673
+ #: components/theme/Comments/Comments
674
+ # defaultMessage: Comment
675
+ msgid "Comment"
676
+ msgstr "Kommentti"
677
+
678
+ #: components/manage/Controlpanels/ModerateComments
679
+ # defaultMessage: Commenter
680
+ msgid "Commenter"
681
+ msgstr "Kommentoija"
682
+
683
+ #: components/theme/Comments/Comments
684
+ # defaultMessage: Comments
685
+ msgid "Comments"
686
+ msgstr "Kommentit"
687
+
688
+ #: components/manage/Diff/Diff
689
+ # defaultMessage: Compare
690
+ msgid "Compare"
691
+ msgstr "Vertaile"
692
+
693
+ #: components/manage/Controlpanels/Rules/ConfigureRule
694
+ # defaultMessage: Condition changed
695
+ msgid "Condition changed"
696
+ msgstr "Ehto muutettu"
697
+
698
+ #: components/manage/Controlpanels/Rules/ConfigureRule
699
+ # defaultMessage: Condition:
700
+ msgid "Condition: "
701
+ msgstr "Ehto: "
702
+
703
+ #: components/manage/Controlpanels/UpgradeControlPanel
704
+ # defaultMessage: Configuration Versions
705
+ msgid "Configuration Versions"
706
+ msgstr "Konfiguraation versiot"
707
+
708
+ #: components/manage/Controlpanels/Rules/EditRule
709
+ # defaultMessage: Configure Content Rule
710
+ msgid "Configure Content Rule"
711
+ msgstr "Määrittele sisältösääntö"
712
+
713
+ #: components/manage/Controlpanels/Rules/ConfigureRule
714
+ # defaultMessage: Configure Content Rule: {title}
715
+ msgid "Configure Content Rule: {title}"
716
+ msgstr "Määrittele sisältösääntö: {title}"
717
+
718
+ #: components/manage/Controlpanels/Rules/ConfigureRule
719
+ # defaultMessage: Configure content rule
720
+ msgid "Configure content rule"
721
+ msgstr "Määrittele sisältösääntö"
722
+
723
+ #: components/manage/Preferences/ChangePassword
724
+ #: components/theme/PasswordReset/PasswordReset
725
+ # defaultMessage: Confirm password
726
+ msgid "Confirm password"
727
+ msgstr "Vahvista salasana"
728
+
729
+ #: components/theme/ConnectionRefused/ConnectionRefused
730
+ # defaultMessage: Connection refused
731
+ msgid "Connection refused"
732
+ msgstr "Yhteys epäonnistui"
733
+
734
+ #: components/theme/ContactForm/ContactForm
735
+ # defaultMessage: Contact form
736
+ msgid "Contact form"
737
+ msgstr "Yhteydenottolomake"
738
+
739
+ #: components/manage/Blocks/Listing/Edit
740
+ # defaultMessage: Contained items
741
+ msgid "Contained items"
742
+ msgstr "Sisältö"
743
+
744
+ #: components/manage/Blocks/Container/SimpleContainerToolbar
745
+ # defaultMessage: Container settings
746
+ msgid "Container settings"
747
+ msgstr ""
748
+
749
+ #: components/manage/Controlpanels/Controlpanels
750
+ # defaultMessage: Content
751
+ msgid "Content"
752
+ msgstr "Sisältö"
753
+
754
+ #: components/manage/Controlpanels/Rules/Rules
755
+ # defaultMessage: Content Rule
756
+ msgid "Content Rule"
757
+ msgstr "Sisältösääntö"
758
+
759
+ #: components/manage/Controlpanels/Controlpanels
760
+ #: components/manage/Controlpanels/Rules/Rules
761
+ # defaultMessage: Content Rules
762
+ msgid "Content Rules"
763
+ msgstr "Sisältösäännöt"
764
+
765
+ #: components/manage/Rules/Rules
766
+ # defaultMessage: Content rules for {title}
767
+ msgid "Content rules for {title}"
768
+ msgstr "Sisältösäännöt kohteelle {title} "
769
+
770
+ #: components/manage/Rules/Rules
771
+ # defaultMessage: Content rules from parent folders
772
+ msgid "Content rules from parent folders"
773
+ msgstr "Sisältösäännöt ylemmistä kansioista"
774
+
775
+ #: components/manage/LinksToItem/LinksToItem
776
+ # defaultMessage: Content that links to or references {title}
777
+ msgid "Content that links to or references {title}"
778
+ msgstr ""
779
+
780
+ #: components/manage/Controlpanels/ContentTypes
781
+ # defaultMessage: Content type created
782
+ msgid "Content type created"
783
+ msgstr "Luotiin sisältötyyppi"
784
+
785
+ #: components/manage/Controlpanels/ContentTypes
786
+ # defaultMessage: Content type deleted
787
+ msgid "Content type deleted"
788
+ msgstr "Poistettiin sisältötyyppi"
789
+
790
+ #: components/manage/Contents/Contents
791
+ #: components/manage/Toolbar/Toolbar
792
+ # defaultMessage: Contents
793
+ msgid "Contents"
794
+ msgstr "Sisältö"
795
+
796
+ #: components/manage/Blocks/Search/schema
797
+ # defaultMessage: Controls
798
+ msgid "Controls"
799
+ msgstr "Kontrollit"
800
+
801
+ #: components/manage/Actions/Actions
802
+ #: components/manage/Contents/Contents
803
+ #: components/manage/Contents/ContentsItem
804
+ # defaultMessage: Copy
805
+ msgid "Copy"
806
+ msgstr "Kopioi"
807
+
808
+ #: helpers/MessageLabels/MessageLabels
809
+ # defaultMessage: undefined
810
+ msgid "Copy blocks"
811
+ msgstr "Kopioi palikat"
812
+
813
+ #: components/theme/Footer/Footer
814
+ # defaultMessage: Copyright
815
+ msgid "Copyright"
816
+ msgstr "Tekijänoikeudet"
817
+
818
+ #: components/manage/Contents/ContentsPropertiesModal
819
+ # defaultMessage: Copyright statement or other rights information on this item.
820
+ msgid "Copyright statement or other rights information on this item."
821
+ msgstr "Tekijänoikeuslauseke tai muu sisällön tekijänoikeuksia kuvaava tieto."
822
+
823
+ #: helpers/MessageLabels/MessageLabels
824
+ # defaultMessage: Create or delete relations to target
825
+ msgid "Create or delete relations to target"
826
+ msgstr ""
827
+
828
+ #: components/manage/Toolbar/More
829
+ # defaultMessage: Create working copy
830
+ msgid "Create working copy"
831
+ msgstr "Luo työkopio"
832
+
833
+ #: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
834
+ # defaultMessage: Created by {creator} on {date}
835
+ msgid "Created by {creator} on {date}"
836
+ msgstr "Luotu {creator} toimesta {date} "
837
+
838
+ #: components/manage/Contents/Contents
839
+ # defaultMessage: Created on
840
+ msgid "Created on"
841
+ msgstr "Luotu"
842
+
843
+ #: components/manage/Contents/Contents
844
+ # defaultMessage: Creator
845
+ msgid "Creator"
846
+ msgstr "Tekijä"
847
+
848
+ #: components/manage/Contents/ContentsPropertiesModal
849
+ # defaultMessage: Creators
850
+ msgid "Creators"
851
+ msgstr "Tekijät"
852
+
853
+ #: components/manage/Widgets/QuerystringWidget
854
+ #: components/manage/Widgets/QueryWidget
855
+ # defaultMessage: Criteria
856
+ msgid "Criteria"
857
+ msgstr "Hakuehdot"
858
+
859
+ #: components/manage/Controlpanels/UpgradeControlPanel
860
+ # defaultMessage: Current active configuration
861
+ msgid "Current active configuration"
862
+ msgstr "Tämänhetkinen aktiivinen määritys"
863
+
864
+ #: components/manage/Blocks/Search/components/FilterList
865
+ # defaultMessage: Current filters applied
866
+ msgid "Current filters applied"
867
+ msgstr "Käytössä olevat suodattimet"
868
+
869
+ #: components/manage/Preferences/ChangePassword
870
+ # defaultMessage: Current password
871
+ msgid "Current password"
872
+ msgstr "Nykyinen salasana"
873
+
874
+ #: components/manage/Actions/Actions
875
+ #: components/manage/Contents/Contents
876
+ #: components/manage/Contents/ContentsItem
877
+ # defaultMessage: Cut
878
+ msgid "Cut"
879
+ msgstr "Leikkaa"
880
+
881
+ #: helpers/MessageLabels/MessageLabels
882
+ # defaultMessage: undefined
883
+ msgid "Cut blocks"
884
+ msgstr "Leikkaa palikat"
885
+
886
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
887
+ # defaultMessage: Daily
888
+ msgid "Daily"
889
+ msgstr "Päivittäin"
890
+
891
+ #: components/manage/Controlpanels/Controlpanels
892
+ # defaultMessage: Database
893
+ msgid "Database"
894
+ msgstr "Tietokanta"
895
+
896
+ #: components/manage/Controlpanels/DatabaseInformation
897
+ # defaultMessage: Database Information
898
+ msgid "Database Information"
899
+ msgstr "Tietokannan tiedot"
900
+
901
+ #: components/manage/Controlpanels/DatabaseInformation
902
+ # defaultMessage: Database Location
903
+ msgid "Database Location"
904
+ msgstr "Tietokannan sijainti"
905
+
906
+ #: components/manage/Controlpanels/DatabaseInformation
907
+ # defaultMessage: Database Size
908
+ msgid "Database Size"
909
+ msgstr "Tietokannan koko"
910
+
911
+ #: components/manage/Controlpanels/DatabaseInformation
912
+ # defaultMessage: Database main
913
+ msgid "Database main"
914
+ msgstr "Päätietokanta"
915
+
916
+ #: components/manage/Controlpanels/Aliases
917
+ #: components/manage/Controlpanels/ModerateComments
918
+ #: components/manage/Widgets/DatetimeWidget
919
+ # defaultMessage: Date
920
+ msgid "Date"
921
+ msgstr "Päiväys"
922
+
923
+ #: components/theme/Search/Search
924
+ # defaultMessage: Date (newest first)
925
+ msgid "Date (newest first)"
926
+ msgstr "Päivä (uusin ensin)"
927
+
928
+ #: components/manage/Contents/ContentsPropertiesModal
929
+ #: components/manage/Contents/ContentsRenameModal
930
+ #: components/manage/Contents/ContentsTagsModal
931
+ #: components/manage/Contents/ContentsWorkflowModal
932
+ #: components/manage/Controlpanels/UndoControlpanel
933
+ #: components/manage/Preferences/ChangePassword
934
+ #: components/manage/Preferences/PersonalPreferences
935
+ #: components/manage/Widgets/SchemaWidget
936
+ #: components/manage/Widgets/SelectWidget
937
+ #: components/manage/Widgets/WysiwygWidget
938
+ #: components/theme/Comments/CommentEditModal
939
+ #: components/theme/Comments/Comments
940
+ #: components/theme/ContactForm/ContactForm
941
+ #: components/theme/PasswordReset/PasswordReset
942
+ #: components/theme/PasswordReset/RequestPasswordReset
943
+ #: components/theme/Register/Register
944
+ # defaultMessage: Default
945
+ msgid "Default"
946
+ msgstr "Oletus"
947
+
948
+ #: config/Views
949
+ # defaultMessage: Default view
950
+ msgid "Default view"
951
+ msgstr "Oletusnäkymä"
952
+
953
+ #: components/manage/Contents/Contents
954
+ #: components/manage/Contents/ContentsItem
955
+ #: components/manage/Controlpanels/ContentTypesActions
956
+ #: components/manage/Controlpanels/Groups/RenderGroups
957
+ #: components/manage/Controlpanels/ModerateComments
958
+ #: components/manage/Controlpanels/Users/RenderUsers
959
+ #: components/manage/Delete/Delete
960
+ #: components/manage/Widgets/FormFieldWrapper
961
+ #: components/manage/Widgets/ObjectBrowserWidget
962
+ #: components/manage/Widgets/WysiwygWidget
963
+ #: components/theme/Comments/Comments
964
+ # defaultMessage: Delete
965
+ msgid "Delete"
966
+ msgstr "Poista"
967
+
968
+ #: helpers/MessageLabels/MessageLabels
969
+ # defaultMessage: Delete Group
970
+ msgid "Delete Group"
971
+ msgstr "Poista ryhmä"
972
+
973
+ #: components/manage/Controlpanels/ContentTypes
974
+ # defaultMessage: Delete Type
975
+ msgid "Delete Type"
976
+ msgstr "Poista sisältötyyppi"
977
+
978
+ #: helpers/MessageLabels/MessageLabels
979
+ # defaultMessage: Delete User
980
+ msgid "Delete User"
981
+ msgstr "Poista käyttäjä"
982
+
983
+ #: components/manage/Controlpanels/Rules/ConfigureRule
984
+ # defaultMessage: Action deleted
985
+ msgid "Delete action"
986
+ msgstr "Poista toiminto"
987
+
988
+ #: helpers/MessageLabels/MessageLabels
989
+ # defaultMessage: undefined
990
+ msgid "Delete blocks"
991
+ msgstr "Poista palikat"
992
+
993
+ #: components/manage/Blocks/Table/Edit
994
+ # defaultMessage: Delete col
995
+ msgid "Delete col"
996
+ msgstr "Poista sarake"
997
+
998
+ #: components/manage/Controlpanels/Rules/ConfigureRule
999
+ # defaultMessage: Condition deleted
1000
+ msgid "Delete condition"
1001
+ msgstr "Poista ehto"
1002
+
1003
+ #: components/manage/Blocks/Table/Edit
1004
+ # defaultMessage: Delete row
1005
+ msgid "Delete row"
1006
+ msgstr "Poista valittu rivi"
1007
+
1008
+ #: components/manage/Controlpanels/Rules/Rules
1009
+ # defaultMessage: Deleted
1010
+ msgid "Deleted"
1011
+ msgstr "Poistettu"
1012
+
1013
+ #: components/manage/Widgets/QuerystringWidget
1014
+ # defaultMessage: Depth
1015
+ msgid "Depth"
1016
+ msgstr "Syvyys"
1017
+
1018
+ #: components/manage/Blocks/Search/components/SortOn
1019
+ #: components/manage/Contents/Contents
1020
+ # defaultMessage: Descending
1021
+ msgid "Descending"
1022
+ msgstr "Laskeva"
1023
+
1024
+ #: components/manage/Blocks/HeroImageLeft/Edit
1025
+ #: components/manage/Blocks/Teaser/schema
1026
+ #: components/manage/Controlpanels/ContentTypes
1027
+ #: components/manage/Widgets/SchemaWidget
1028
+ #: components/manage/Widgets/SelectWidget
1029
+ #: components/manage/Widgets/WysiwygWidget
1030
+ #: components/theme/View/TabularView
1031
+ #: helpers/MessageLabels/MessageLabels
1032
+ # defaultMessage: Description
1033
+ msgid "Description"
1034
+ msgstr "Kuvaus"
1035
+
1036
+ #: components/manage/Diff/Diff
1037
+ # defaultMessage: Diff
1038
+ msgid "Diff"
1039
+ msgstr "Vertailu"
1040
+
1041
+ #: components/manage/Diff/Diff
1042
+ # defaultMessage: Difference between revision {one} and {two} of {title}
1043
+ msgid "Difference between revision {one} and {two} of {title}"
1044
+ msgstr "{title} muutokset versiosta {one} versioon {two}"
1045
+
1046
+ #: components/manage/Rules/Rules
1047
+ # defaultMessage: Disable
1048
+ msgid "Disable"
1049
+ msgstr "Poista käytöstä"
1050
+
1051
+ #: components/manage/Rules/Rules
1052
+ # defaultMessage: Disable apply to subfolders
1053
+ msgid "Disable apply to subfolders"
1054
+ msgstr "Poista käytöstä alikansioissa"
1055
+
1056
+ #: components/manage/Rules/Rules
1057
+ # defaultMessage: Disabled
1058
+ msgid "Disabled"
1059
+ msgstr "Poistettu käytöstä"
1060
+
1061
+ #: components/manage/Rules/Rules
1062
+ # defaultMessage: Disabled apply to subfolders
1063
+ msgid "Disabled apply to subfolders"
1064
+ msgstr "Poistettu käytöstä alikansioissa"
1065
+
1066
+ #: components/theme/Footer/Footer
1067
+ # defaultMessage: Distributed under the {license}.
1068
+ msgid "Distributed under the {license}."
1069
+ msgstr "Julkaistu {license} -lisenssillä."
1070
+
1071
+ #: components/manage/Blocks/Table/Edit
1072
+ # defaultMessage: Add border to inner columns
1073
+ msgid "Divide each row into separate cells"
1074
+ msgstr "Erottuvat sarakkeet"
1075
+
1076
+ #: components/manage/Contents/Contents
1077
+ # defaultMessage: Do you really want to delete the following items?
1078
+ msgid "Do you really want to delete the following items?"
1079
+ msgstr "Haluatko varmasti poistaa kaiken tämän sisällön?"
1080
+
1081
+ #: components/manage/Controlpanels/Groups/GroupsControlpanel
1082
+ # defaultMessage: Do you really want to delete the group {groupname}?
1083
+ msgid "Do you really want to delete the group {groupname}?"
1084
+ msgstr "Haluatko varmasti poistaa ryhmän {groupname}?"
1085
+
1086
+ #: components/manage/Controlpanels/ContentTypes
1087
+ # defaultMessage: Do you really want to delete type {typename}?
1088
+ msgid "Do you really want to delete the type {typename}?"
1089
+ msgstr "Haluatko varmasti poistaa sisältötyypin {typename}?"
1090
+
1091
+ #: components/manage/Controlpanels/Users/UsersControlpanel
1092
+ # defaultMessage: Do you really want to delete the user {username}?
1093
+ msgid "Do you really want to delete the user {username}?"
1094
+ msgstr "Haluatko varmasti poistaa käyttäjän {username}?"
1095
+
1096
+ #: components/manage/Delete/Delete
1097
+ # defaultMessage: Do you really want to delete this item?
1098
+ msgid "Do you really want to delete this item?"
1099
+ msgstr "Haluatko varmasti poistaa tämän sisällön?"
1100
+
1101
+ #: components/manage/Multilingual/TranslationObject
1102
+ #: components/manage/Sidebar/Sidebar
1103
+ # defaultMessage: Document
1104
+ msgid "Document"
1105
+ msgstr "Sivu"
1106
+
1107
+ #: config/Views
1108
+ # defaultMessage: Document view
1109
+ msgid "Document view"
1110
+ msgstr "Dokumenttinäkymä"
1111
+
1112
+ #: components/theme/EventDetails/EventDetails
1113
+ # defaultMessage: Download Event
1114
+ msgid "Download Event"
1115
+ msgstr "Lataa tapahtuma"
1116
+
1117
+ #: components/manage/Contents/ContentsUploadModal
1118
+ # defaultMessage: Drag and drop files from your computer onto this area or click the “Browse” button.
1119
+ msgid "Drag and drop files from your computer onto this area or click the “Browse” button."
1120
+ msgstr "Raahaa ja pudota tiedostoja tietokoneeltasi tähän tai paina “Selaa”."
1121
+
1122
+ #: components/manage/Widgets/FileWidget
1123
+ # defaultMessage: Drop file here to replace the existing file
1124
+ msgid "Drop file here to replace the existing file"
1125
+ msgstr "Pudota tiedosto tähän korvataksesi olemassaolevan tiedoston"
1126
+
1127
+ #: components/manage/Widgets/FileWidget
1128
+ # defaultMessage: Drop file here to upload a new file
1129
+ msgid "Drop file here to upload a new file"
1130
+ msgstr "Pudota tiedosto tähän ladataksesi uuden tiedoston"
1131
+
1132
+ #: components/manage/Widgets/FileWidget
1133
+ # defaultMessage: Drop files here ...
1134
+ msgid "Drop files here ..."
1135
+ msgstr "Pudota tiedosto tänne... "
1136
+
1137
+ #: components/manage/Controlpanels/UpgradeControlPanel
1138
+ # defaultMessage: Dry run selected, transaction aborted.
1139
+ msgid "Dry run selected, transaction aborted."
1140
+ msgstr "Koeajo valittu, toiminto keskeytetty."
1141
+
1142
+ #: components/theme/Register/Register
1143
+ # defaultMessage: E-mail
1144
+ msgid "E-mail"
1145
+ msgstr "Sähköposti"
1146
+
1147
+ #: components/theme/PasswordReset/PasswordReset
1148
+ # defaultMessage: E-mail addresses do not match.
1149
+ msgid "E-mail addresses do not match."
1150
+ msgstr "Sähköpostiosoitteet eivät olleet identtiset."
1151
+
1152
+ #: components/manage/Contents/ContentsItem
1153
+ #: components/manage/Controlpanels/ContentTypesActions
1154
+ #: components/manage/Controlpanels/ModerateComments
1155
+ #: components/manage/Controlpanels/Rules/EditRule
1156
+ #: components/manage/Toolbar/Toolbar
1157
+ #: components/manage/Widgets/FormFieldWrapper
1158
+ #: components/manage/Widgets/ObjectBrowserWidget
1159
+ #: components/theme/Comments/Comments
1160
+ # defaultMessage: Edit
1161
+ msgid "Edit"
1162
+ msgstr "Muokkaa"
1163
+
1164
+ #: components/manage/Controlpanels/Rules/EditRule
1165
+ # defaultMessage: Edit Rule
1166
+ msgid "Edit Rule"
1167
+ msgstr "Muokkaa sääntöä"
1168
+
1169
+ #: components/theme/Comments/CommentEditModal
1170
+ # defaultMessage: Edit comment
1171
+ msgid "Edit comment"
1172
+ msgstr "Muokkaa kommenttia"
1173
+
1174
+ #: components/manage/Widgets/SchemaWidget
1175
+ # defaultMessage: Edit field
1176
+ msgid "Edit field"
1177
+ msgstr "Muokkaa kenttää"
1178
+
1179
+ #: components/manage/Widgets/SchemaWidget
1180
+ # defaultMessage: Edit fieldset
1181
+ msgid "Edit fieldset"
1182
+ msgstr "Muokkaa kenttäryhmää"
1183
+
1184
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
1185
+ # defaultMessage: Edit recurrence
1186
+ msgid "Edit recurrence"
1187
+ msgstr "Muokkaa toistuvuutta"
1188
+
1189
+ #: components/manage/Form/InlineForm
1190
+ # defaultMessage: Edit values
1191
+ msgid "Edit values"
1192
+ msgstr "Muokkaa arvoja"
1193
+
1194
+ #: components/manage/Edit/Edit
1195
+ # defaultMessage: Edit {title}
1196
+ msgid "Edit {title}"
1197
+ msgstr "Muokkaa {title}"
1198
+
1199
+ #: helpers/MessageLabels/MessageLabels
1200
+ # defaultMessage: Email
1201
+ msgid "Email"
1202
+ msgstr "Sähköposti"
1203
+
1204
+ #: components/theme/ContactForm/ContactForm
1205
+ # defaultMessage: Email sent
1206
+ msgid "Email sent"
1207
+ msgstr "Sähköposti lähetetty"
1208
+
1209
+ #: components/manage/Blocks/Maps/Edit
1210
+ # defaultMessage: Embed code error, please follow the instructions and try again.
1211
+ msgid "Embed code error, please follow the instructions and try again."
1212
+ msgstr "Virhe upotuskoodissa. Seuraa ohjeita ja yritä uudelleen."
1213
+
1214
+ #: components/manage/Widgets/ObjectListWidget
1215
+ # defaultMessage: Empty object list
1216
+ msgid "Empty object list"
1217
+ msgstr "Tyhjä kohdelista"
1218
+
1219
+ #: components/manage/Rules/Rules
1220
+ # defaultMessage: Enable
1221
+ msgid "Enable"
1222
+ msgstr "Aktivoi"
1223
+
1224
+ #: components/manage/Controlpanels/ContentTypeLayout
1225
+ # defaultMessage: Enable editable Blocks
1226
+ msgid "Enable editable Blocks"
1227
+ msgstr "Salli palikoiden muokkaus"
1228
+
1229
+ #: components/manage/Rules/Rules
1230
+ # defaultMessage: Enabled
1231
+ msgid "Enabled"
1232
+ msgstr "Aktivoitu"
1233
+
1234
+ #: components/manage/Rules/Rules
1235
+ # defaultMessage: Enabled here?
1236
+ msgid "Enabled here?"
1237
+ msgstr "Aktivoi tänne?"
1238
+
1239
+ #: components/manage/Rules/Rules
1240
+ # defaultMessage: Enabled?
1241
+ msgid "Enabled?"
1242
+ msgstr "Aktivoitu?"
1243
+
1244
+ #: components/manage/Blocks/Search/components/DateRangeFacet
1245
+ #: components/manage/Contents/Contents
1246
+ # defaultMessage: End Date
1247
+ msgid "End Date"
1248
+ msgstr "Päättymispäivä"
1249
+
1250
+ #: components/manage/AnchorPlugin/components/LinkButton/AddLinkForm
1251
+ # defaultMessage: Enter URL or select an item
1252
+ msgid "Enter URL or select an item"
1253
+ msgstr "Syötä URL-osoite tai valitse kohde"
1254
+
1255
+ #: helpers/MessageLabels/MessageLabels
1256
+ # defaultMessage: Enter a username above to search or click 'Show All'
1257
+ msgid "Enter a username above to search or click 'Show All'"
1258
+ msgstr "Syötä yläpuolelle etsittävä käyttäjähimi tai valitse 'Näytä kaikki'"
1259
+
1260
+ #: components/theme/Register/Register
1261
+ # defaultMessage: Enter an email address. This will be your login name. We respect your privacy, and will not give the address away to any third parties or expose it anywhere.
1262
+ msgid "Enter an email address. This will be your login name. We respect your privacy, and will not give the address away to any third parties or expose it anywhere."
1263
+ msgstr "Syötä sähköpostiosoite, jota haluat käyttää kirjautumistunnuksena. Me kunnioitamme yksityisyyttäsi, emmekä jaa sähköpostiosoitettasi kenellekään muulle tai julkaise sitä missään."
1264
+
1265
+ #: components/theme/Register/Register
1266
+ # defaultMessage: Enter full name, e.g. John Smith.
1267
+ msgid "Enter full name, e.g. John Smith."
1268
+ msgstr "Syötä koko nimi, esimerkiksi Lumi Vuorinen."
1269
+
1270
+ #: components/manage/Blocks/Maps/Edit
1271
+ # defaultMessage: Enter map Embed Code
1272
+ msgid "Enter map Embed Code"
1273
+ msgstr "Syötä Google Maps -upotuskoodi"
1274
+
1275
+ #: components/manage/Controlpanels/Aliases
1276
+ # defaultMessage: Enter the absolute path of the target. The path must start with '/'. Target must exist or be an existing alternative url path to the target.
1277
+ msgid "Enter the absolute path of the target. The path must start with '/'. Target must exist or be an existing alternative url path to the target."
1278
+ msgstr "Syötä kohteen osoite. Osoitteen tulee alkaa merkillä '/'. Kohteen tulee olla olemassa tai sen tulee olla olemassaoleva vaihtoehtoinen URL-polku kohteelle."
1279
+
1280
+ #: components/manage/Aliases/Aliases
1281
+ #: components/manage/Controlpanels/Aliases
1282
+ # defaultMessage: Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring.
1283
+ msgid "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring."
1284
+ msgstr ""
1285
+
1286
+ #: components/manage/Preferences/ChangePassword
1287
+ # defaultMessage: Enter your current password.
1288
+ msgid "Enter your current password."
1289
+ msgstr "Syötä nykyinen salasanasi."
1290
+
1291
+ #: components/theme/PasswordReset/PasswordReset
1292
+ # defaultMessage: Enter your email for verification.
1293
+ msgid "Enter your email for verification."
1294
+ msgstr "Syötä sähköpostiosoitteesi vahvistusta varten."
1295
+
1296
+ #: components/manage/Preferences/ChangePassword
1297
+ #: components/theme/PasswordReset/PasswordReset
1298
+ # defaultMessage: Enter your new password. Minimum 8 characters.
1299
+ msgid "Enter your new password. Minimum 8 characters."
1300
+ msgstr "Syötä uusi salasanasi, jossa on vähintään viisi (8) merkkiä."
1301
+
1302
+ #: components/theme/PasswordReset/PasswordReset
1303
+ # defaultMessage: Enter your username for verification.
1304
+ msgid "Enter your username for verification."
1305
+ msgstr "Syötä käyttäjätunnuksesi vahvistusta varten."
1306
+
1307
+ #: components/manage/Add/Add
1308
+ #: components/manage/Controlpanels/AddonsControlpanel
1309
+ #: components/manage/Controlpanels/ContentTypeSchema
1310
+ #: components/manage/Controlpanels/UndoControlpanel
1311
+ #: components/manage/Edit/Edit
1312
+ #: components/manage/Form/InlineForm
1313
+ #: components/manage/Toolbar/More
1314
+ #: components/manage/Widgets/SchemaWidget
1315
+ #: components/theme/ContactForm/ContactForm
1316
+ #: components/theme/Login/Login
1317
+ #: helpers/MessageLabels/MessageLabels
1318
+ # defaultMessage: Error
1319
+ msgid "Error"
1320
+ msgstr "Virhe"
1321
+
1322
+ #: components/manage/Controlpanels/Aliases
1323
+ # defaultMessage: Error
1324
+ msgid "ErrorHeader"
1325
+ msgstr ""
1326
+
1327
+ #: components/manage/Controlpanels/Rules/Rules
1328
+ # defaultMessage: Event
1329
+ msgid "Event"
1330
+ msgstr "Tapahtuma"
1331
+
1332
+ #: config/Views
1333
+ # defaultMessage: Event listing
1334
+ msgid "Event listing"
1335
+ msgstr "Tapahtumalista"
1336
+
1337
+ #: config/Views
1338
+ # defaultMessage: Event view
1339
+ msgid "Event view"
1340
+ msgstr "Tapahtuman näkymä"
1341
+
1342
+ #: components/manage/Contents/ContentsPropertiesModal
1343
+ # defaultMessage: Exclude from navigation
1344
+ msgid "Exclude from navigation"
1345
+ msgstr "Piilota navigoinnista"
1346
+
1347
+ #: components/manage/Widgets/RecurrenceWidget/Occurences
1348
+ # defaultMessage: Exclude this occurence
1349
+ msgid "Exclude this occurence"
1350
+ msgstr "Jätä pois tämä päivä"
1351
+
1352
+ #: components/manage/Contents/Contents
1353
+ # defaultMessage: Excluded from navigation
1354
+ msgid "Excluded from navigation"
1355
+ msgstr "Piilota navigoinnista"
1356
+
1357
+ #: components/manage/Aliases/Aliases
1358
+ # defaultMessage: Existing alternative urls for this item
1359
+ msgid "Existing alternative urls for this item"
1360
+ msgstr "Voimassaolevat vaihtoehtoiset URL:t tälle kohteelle"
1361
+
1362
+ #: components/manage/Sidebar/Sidebar
1363
+ # defaultMessage: Expand sidebar
1364
+ msgid "Expand sidebar"
1365
+ msgstr "Laajenna sivupalkki"
1366
+
1367
+ #: components/manage/Contents/ContentsPropertiesModal
1368
+ # defaultMessage: Expiration Date
1369
+ msgid "Expiration Date"
1370
+ msgstr "Erääntyminen"
1371
+
1372
+ #: components/manage/Contents/Contents
1373
+ # defaultMessage: Expiration date
1374
+ msgid "Expiration date"
1375
+ msgstr "Erääntymispäivä"
1376
+
1377
+ #: components/manage/Contents/ContentsItem
1378
+ # defaultMessage: Expired
1379
+ msgid "Expired"
1380
+ msgstr "Erääntynyt"
1381
+
1382
+ #: components/manage/Blocks/LeadImage/LeadImageSidebar
1383
+ # defaultMessage: External URL
1384
+ msgid "External URL"
1385
+ msgstr "Ulkoinen URL"
1386
+
1387
+ #: components/manage/Blocks/Search/schema
1388
+ # defaultMessage: Facet
1389
+ msgid "Facet"
1390
+ msgstr ""
1391
+
1392
+ #: components/manage/Blocks/Search/schema
1393
+ # defaultMessage: Facet widget
1394
+ msgid "Facet widget"
1395
+ msgstr "Fasettilohko"
1396
+
1397
+ #: components/manage/Blocks/Search/schema
1398
+ # defaultMessage: Facets
1399
+ msgid "Facets"
1400
+ msgstr "Fasetit"
1401
+
1402
+ #: config/Blocks
1403
+ # defaultMessage: Facets on left side
1404
+ msgid "Facets on left side"
1405
+ msgstr "Fasetit vasemmalla "
1406
+
1407
+ #: config/Blocks
1408
+ # defaultMessage: Facets on right side
1409
+ msgid "Facets on right side"
1410
+ msgstr "Fasetit oikealla"
1411
+
1412
+ #: config/Blocks
1413
+ # defaultMessage: Facets on top
1414
+ msgid "Facets on top"
1415
+ msgstr "Fasetit ylälaidassa"
1416
+
1417
+ #: components/manage/Controlpanels/UndoControlpanel
1418
+ # defaultMessage: Failed to undo transactions
1419
+ msgid "Failed To Undo Transactions"
1420
+ msgstr "Tapahtumien peruutus epäonnistui"
1421
+
1422
+ #: components/manage/Blocks/Search/schema
1423
+ # defaultMessage: Field
1424
+ msgid "Field"
1425
+ msgstr "Kenttä"
1426
+
1427
+ #: components/manage/Toolbar/Toolbar
1428
+ # defaultMessage: File
1429
+ msgid "File"
1430
+ msgstr "Tiedosto"
1431
+
1432
+ #: components/manage/Contents/ContentsUploadModal
1433
+ # defaultMessage: File size
1434
+ msgid "File size"
1435
+ msgstr "Tiedoston koko"
1436
+
1437
+ #: config/Views
1438
+ # defaultMessage: File view
1439
+ msgid "File view"
1440
+ msgstr "Tiedostonäkymä"
1441
+
1442
+ #: components/manage/Contents/ContentsUploadModal
1443
+ # defaultMessage: Filename
1444
+ msgid "Filename"
1445
+ msgstr "Tiedostonimi"
1446
+
1447
+ #: helpers/MessageLabels/MessageLabels
1448
+ # defaultMessage: Filter
1449
+ msgid "Filter"
1450
+ msgstr ""
1451
+
1452
+ #: components/manage/Controlpanels/Rules/Rules
1453
+ # defaultMessage: Filter Rules:
1454
+ msgid "Filter Rules:"
1455
+ msgstr "Suodata säännöt:"
1456
+
1457
+ #: components/manage/Controlpanels/Aliases
1458
+ # defaultMessage: Filter by prefix
1459
+ msgid "Filter by prefix"
1460
+ msgstr "Suodata alkutunnisteen perusteella"
1461
+
1462
+ #: helpers/MessageLabels/MessageLabels
1463
+ # defaultMessage: Filter users by groups
1464
+ msgid "Filter users by groups"
1465
+ msgstr "Suodata käyttäjiä ryhmittäin"
1466
+
1467
+ #: components/manage/Contents/Contents
1468
+ # defaultMessage: Filter…
1469
+ msgid "Filter…"
1470
+ msgstr "Suodattimet…"
1471
+
1472
+ #: components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField
1473
+ # defaultMessage: First
1474
+ msgid "First"
1475
+ msgstr "Ensimmäinen"
1476
+
1477
+ #: helpers/MessageLabels/MessageLabels
1478
+ # defaultMessage: Fix relations
1479
+ msgid "Fix relations"
1480
+ msgstr ""
1481
+
1482
+ #: components/manage/Blocks/Table/Edit
1483
+ # defaultMessage: Fixed width columns
1484
+ msgid "Fixed width table cells"
1485
+ msgstr "Kiinteälevyiset sarakkeet"
1486
+
1487
+ #: components/manage/BlockChooser/BlockChooser
1488
+ # defaultMessage: Fold
1489
+ msgid "Fold"
1490
+ msgstr "Sulje"
1491
+
1492
+ #: components/manage/Contents/Contents
1493
+ # defaultMessage: Folder
1494
+ msgid "Folder"
1495
+ msgstr "Kansio"
1496
+
1497
+ #: config/Views
1498
+ # defaultMessage: Folder listing
1499
+ msgid "Folder listing"
1500
+ msgstr "Kansiolistaus"
1501
+
1502
+ #: components/theme/Forbidden/Forbidden
1503
+ # defaultMessage: Forbidden
1504
+ msgid "Forbidden"
1505
+ msgstr "Ei pääsyä"
1506
+
1507
+ #: components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField
1508
+ # defaultMessage: Fourth
1509
+ msgid "Fourth"
1510
+ msgstr "Neljäs"
1511
+
1512
+ #: components/theme/ContactForm/ContactForm
1513
+ # defaultMessage: From
1514
+ msgid "From"
1515
+ msgstr "Sähköposti"
1516
+
1517
+ #: components/manage/Blocks/Maps/Edit
1518
+ #: components/manage/Sidebar/AlignBlock
1519
+ #: components/manage/Widgets/AlignWidget
1520
+ # defaultMessage: Full
1521
+ msgid "Full"
1522
+ msgstr "Kokoleveästi"
1523
+
1524
+ #: components/theme/Register/Register
1525
+ # defaultMessage: Full Name
1526
+ msgid "Full Name"
1527
+ msgstr "Koko nimi"
1528
+
1529
+ #: helpers/MessageLabels/MessageLabels
1530
+ # defaultMessage: Fullname
1531
+ msgid "Fullname"
1532
+ msgstr "Koko nimi"
1533
+
1534
+ #: components/theme/Footer/Footer
1535
+ # defaultMessage: GNU GPL license
1536
+ msgid "GNU GPL license"
1537
+ msgstr "GNU GPL -lisenssi"
1538
+
1539
+ #: components/manage/Controlpanels/Controlpanels
1540
+ # defaultMessage: General
1541
+ msgid "General"
1542
+ msgstr "Yleinen"
1543
+
1544
+ #: components/manage/Sharing/Sharing
1545
+ # defaultMessage: Global role
1546
+ msgid "Global role"
1547
+ msgstr "Sivustonlaajuinen rooli"
1548
+
1549
+ #: components/manage/Blocks/Maps/Edit
1550
+ # defaultMessage: Google Maps Embedded Block
1551
+ msgid "Google Maps Embedded Block"
1552
+ msgstr "Google Maps -upotuspalikka"
1553
+
1554
+ #: components/manage/Blocks/Grid/schema
1555
+ # defaultMessage: Grid
1556
+ msgid "Grid"
1557
+ msgstr ""
1558
+
1559
+ #: components/manage/Sharing/Sharing
1560
+ # defaultMessage: Group
1561
+ msgid "Group"
1562
+ msgstr "Ryhmä"
1563
+
1564
+ #: helpers/MessageLabels/MessageLabels
1565
+ # defaultMessage: Group created
1566
+ msgid "Group created"
1567
+ msgstr "Ryhmä luotu"
1568
+
1569
+ #: helpers/MessageLabels/MessageLabels
1570
+ # defaultMessage: Group roles updated
1571
+ msgid "Group roles updated"
1572
+ msgstr "Ryhmän roolit päivitetty"
1573
+
1574
+ #: components/manage/Controlpanels/Groups/GroupsControlpanel
1575
+ #: helpers/MessageLabels/MessageLabels
1576
+ # defaultMessage: Groupname
1577
+ msgid "Groupname"
1578
+ msgstr "Ryhmän nimi"
1579
+
1580
+ #: components/manage/Controlpanels/Controlpanels
1581
+ #: components/manage/Controlpanels/Groups/GroupsControlpanel
1582
+ #: helpers/MessageLabels/MessageLabels
1583
+ # defaultMessage: Groups
1584
+ msgid "Groups"
1585
+ msgstr "Ryhmät"
1586
+
1587
+ #: components/manage/Controlpanels/Groups/GroupsControlpanel
1588
+ # defaultMessage: Groups are logical collections of users, such as departments and business units. Groups are not directly related to permissions on a global level, you normally use Roles for that - and let certain Groups have a particular role. The symbol{plone_svg}indicates a role inherited from membership in another group.
1589
+ msgid "Groups are logical collections of users, such as departments and business units. Groups are not directly related to permissions on a global level, you normally use Roles for that - and let certain Groups have a particular role. The symbol{plone_svg}indicates a role inherited from membership in another group."
1590
+ msgstr ""
1591
+
1592
+ #: components/manage/Blocks/Table/Edit
1593
+ # defaultMessage: Header cell
1594
+ msgid "Header cell"
1595
+ msgstr "Otsikkosolu"
1596
+
1597
+ #: components/manage/Blocks/Grid/schema
1598
+ #: components/manage/Blocks/Listing/schema
1599
+ #: components/manage/Blocks/Search/schema
1600
+ # defaultMessage: Headline
1601
+ msgid "Headline"
1602
+ msgstr "Otsikko"
1603
+
1604
+ #: components/manage/Blocks/Listing/schema
1605
+ # defaultMessage: Headline level
1606
+ msgid "Headline level"
1607
+ msgstr "Otsikon taso"
1608
+
1609
+ #: components/manage/Blocks/Search/schema
1610
+ # defaultMessage: Hidden facets will still filter the results if proper parameters are passed in URLs
1611
+ msgid "Hidden facets will still filter the results if proper parameters are passed in URLs"
1612
+ msgstr "Piilotetut fasetit suodattavat tuloksia jos sopivat parametrit syötetään URL:n mukana"
1613
+
1614
+ #: components/theme/Comments/Comments
1615
+ # defaultMessage: Hide Replies
1616
+ msgid "Hide Replies"
1617
+ msgstr "Piilota vastaukset"
1618
+
1619
+ #: components/manage/Blocks/Search/schema
1620
+ # defaultMessage: Hide facet?
1621
+ msgid "Hide facet?"
1622
+ msgstr "Piilota fasetti?"
1623
+
1624
+ #: components/manage/Blocks/Search/components/Facets
1625
+ # defaultMessage: Hide filters
1626
+ msgid "Hide filters"
1627
+ msgstr ""
1628
+
1629
+ #: components/manage/History/History
1630
+ #: components/manage/Toolbar/More
1631
+ # defaultMessage: History
1632
+ msgid "History"
1633
+ msgstr "Muutoshistoria"
1634
+
1635
+ #: components/manage/History/History
1636
+ # defaultMessage: #
1637
+ msgid "History Version Number"
1638
+ msgstr "Historian versionumero"
1639
+
1640
+ #: components/manage/History/History
1641
+ # defaultMessage: History of {title}
1642
+ msgid "History of {title}"
1643
+ msgstr "{title} – muutoshistoria"
1644
+
1645
+ #: components/manage/Contents/Contents
1646
+ #: components/manage/Contents/ContentsBreadcrumbs
1647
+ #: components/manage/Contents/ContentsBreadcrumbsHomeItem
1648
+ #: components/theme/Breadcrumbs/Breadcrumbs
1649
+ # defaultMessage: Home
1650
+ msgid "Home"
1651
+ msgstr "Etusivu"
1652
+
1653
+ #: components/manage/Contents/Contents
1654
+ # defaultMessage: ID
1655
+ msgid "ID"
1656
+ msgstr "ID"
1657
+
1658
+ #: components/manage/Controlpanels/Rules/ConfigureRule
1659
+ # defaultMessage: If all of the following conditions are met:
1660
+ msgid "If all of the following conditions are met:"
1661
+ msgstr "Jos kaikki seuraavat ehdot täyttyvät:"
1662
+
1663
+ #: components/manage/Contents/ContentsPropertiesModal
1664
+ # defaultMessage: If selected, this item will not appear in the navigation tree
1665
+ msgid "If selected, this item will not appear in the navigation tree"
1666
+ msgstr "Kun tämä on valittuna, tämä sisältö ei näy navigoinnissa"
1667
+
1668
+ #: components/manage/Contents/ContentsPropertiesModal
1669
+ # defaultMessage: If this date is in the future, the content will not show up in listings and searches until this date.
1670
+ msgid "If this date is in the future, the content will not show up in listings and searches until this date."
1671
+ msgstr "Kun voimaantuloaika on tulevaisuudessa, tämä sisältö ei näy navigoinnissa, sisältölistauksissa tai hakutuloksissa ennen valittua aikaa."
1672
+
1673
+ #: components/manage/LockingToastsFactory/LockingToastsFactory
1674
+ # defaultMessage: If you are certain this user has abandoned the object, you may unlock the object. You will then be able to edit it.
1675
+ msgid "If you are certain this user has abandoned the object, you may unlock the object. You will then be able to edit it."
1676
+ msgstr "Jos olet varma, että käyttäjä ei muokkaa kohdetta, voit avata lukituksen. Sen jälkeen voit itse muokata kohdetta."
1677
+
1678
+ #: components/theme/NotFound/NotFound
1679
+ #: components/theme/Unauthorized/Unauthorized
1680
+ # defaultMessage: If you are certain you have the correct web address but are encountering an error, please contact the {site_admin}.
1681
+ msgid "If you are certain you have the correct web address but are encountering an error, please contact the {site_admin}."
1682
+ msgstr "Jos olet vakuuttunut, että tämä sivu pitäisi olla olemassa, ota yhteyttä sivuston ylläpitoon: {site_admin}."
1683
+
1684
+ #: components/manage/Blocks/HeroImageLeft/Edit
1685
+ #: components/manage/Blocks/Image/ImageSidebar
1686
+ #: components/manage/Blocks/Image/schema
1687
+ #: components/manage/Blocks/LeadImage/LeadImageSidebar
1688
+ # defaultMessage: Image
1689
+ msgid "Image"
1690
+ msgstr "Kuva"
1691
+
1692
+ #: config/Blocks
1693
+ # defaultMessage: Image gallery
1694
+ msgid "Image gallery"
1695
+ msgstr "Kuvagalleria"
1696
+
1697
+ #: components/manage/Blocks/Teaser/schema
1698
+ # defaultMessage: Image override
1699
+ msgid "Image override"
1700
+ msgstr ""
1701
+
1702
+ #: components/manage/Blocks/Image/schema
1703
+ # defaultMessage: Image size
1704
+ msgid "Image size"
1705
+ msgstr "Kuvan koko"
1706
+
1707
+ #: config/Views
1708
+ # defaultMessage: Image view
1709
+ msgid "Image view"
1710
+ msgstr "Kuvanäkymä"
1711
+
1712
+ #: components/manage/Widgets/RecurrenceWidget/Occurences
1713
+ # defaultMessage: Include this occurrence
1714
+ msgid "Include this occurence"
1715
+ msgstr "Sisällytä tämä päivä"
1716
+
1717
+ #: components/manage/Controlpanels/ContentType
1718
+ #: components/manage/Controlpanels/ContentTypeLayout
1719
+ #: components/manage/Controlpanels/ContentTypeSchema
1720
+ #: components/manage/Controlpanels/Controlpanel
1721
+ # defaultMessage: Info
1722
+ msgid "Info"
1723
+ msgstr "Tiedot"
1724
+
1725
+ #: components/manage/Controlpanels/Users/UserGroupMembershipControlPanel
1726
+ # defaultMessage: You have selected the option 'many users' or 'many groups'. Thus this control panel asks for input to show users and groups. If you want to see users and groups instantaneous, head over to user group settings. See the button on the left.
1727
+ msgid "InfoUserGroupSettings"
1728
+ msgstr ""
1729
+
1730
+ #: components/manage/Sharing/Sharing
1731
+ # defaultMessage: Inherit permissions from higher levels
1732
+ msgid "Inherit permissions from higher levels"
1733
+ msgstr "Peri oikeudet edeltävältä sisältötasolta"
1734
+
1735
+ #: components/manage/Sharing/Sharing
1736
+ # defaultMessage: Inherited value
1737
+ msgid "Inherited value"
1738
+ msgstr "Peritty arvo"
1739
+
1740
+ #: components/manage/Blocks/Table/Edit
1741
+ # defaultMessage: Insert col after
1742
+ msgid "Insert col after"
1743
+ msgstr "Lisää sarake valinnan jälkeen"
1744
+
1745
+ #: components/manage/Blocks/Table/Edit
1746
+ # defaultMessage: Insert col before
1747
+ msgid "Insert col before"
1748
+ msgstr "Lisää sarake ennen valintaa"
1749
+
1750
+ #: components/manage/Blocks/Table/Edit
1751
+ # defaultMessage: Insert row after
1752
+ msgid "Insert row after"
1753
+ msgstr "Lisää rivi valinnan jälkeen"
1754
+
1755
+ #: components/manage/Blocks/Table/Edit
1756
+ # defaultMessage: Insert row before
1757
+ msgid "Insert row before"
1758
+ msgstr "Lisää rivi ennen valintaa"
1759
+
1760
+ #: helpers/MessageLabels/MessageLabels
1761
+ # defaultMessage: Inspect relations
1762
+ msgid "Inspect relations"
1763
+ msgstr ""
1764
+
1765
+ #: components/manage/Controlpanels/AddonsControlpanel
1766
+ # defaultMessage: Install
1767
+ msgid "Install"
1768
+ msgstr "Asenna"
1769
+
1770
+ #: components/manage/Controlpanels/AddonsControlpanel
1771
+ # defaultMessage: Installed
1772
+ msgid "Installed"
1773
+ msgstr "Asennettu"
1774
+
1775
+ #: components/manage/Controlpanels/AddonsControlpanel
1776
+ # defaultMessage: Installed version
1777
+ msgid "Installed version"
1778
+ msgstr "Asennettu versio"
1779
+
1780
+ #: components/manage/Controlpanels/AddonsControlpanel
1781
+ # defaultMessage: Installing a third party add-on
1782
+ msgid "Installing a third party add-on"
1783
+ msgstr "Asennetaan kolmannen osapuolen laajennos"
1784
+
1785
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
1786
+ # defaultMessage: days
1787
+ msgid "Interval Daily"
1788
+ msgstr "Toista päivittäin"
1789
+
1790
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
1791
+ # defaultMessage: Month(s)
1792
+ msgid "Interval Monthly"
1793
+ msgstr "Toista kuukausittain"
1794
+
1795
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
1796
+ # defaultMessage: week(s)
1797
+ msgid "Interval Weekly"
1798
+ msgstr "Toista viikoittain"
1799
+
1800
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
1801
+ # defaultMessage: year(s)
1802
+ msgid "Interval Yearly"
1803
+ msgstr "Toista vuosittain"
1804
+
1805
+ #: components/manage/Blocks/Block/DefaultView
1806
+ #: components/theme/View/RenderBlocks
1807
+ # defaultMessage: Invalid block - Will be removed on saving
1808
+ msgid "Invalid Block"
1809
+ msgstr "Virheellinen palikka"
1810
+
1811
+ #: components/manage/Widgets/QuerystringWidget
1812
+ # defaultMessage: Item batch size
1813
+ msgid "Item batch size"
1814
+ msgstr "Sivun koko"
1815
+
1816
+ #: components/manage/Contents/Contents
1817
+ # defaultMessage: Item successfully moved.
1818
+ msgid "Item succesfully moved."
1819
+ msgstr "Sisällön siirto onnistui."
1820
+
1821
+ #: components/manage/Contents/Contents
1822
+ # defaultMessage: Item(s) copied.
1823
+ msgid "Item(s) copied."
1824
+ msgstr "Sisältö kopioitu."
1825
+
1826
+ #: components/manage/Contents/Contents
1827
+ # defaultMessage: Item(s) cut.
1828
+ msgid "Item(s) cut."
1829
+ msgstr "Sisältö leikattu."
1830
+
1831
+ #: components/manage/Contents/Contents
1832
+ # defaultMessage: Item(s) has been updated.
1833
+ msgid "Item(s) has been updated."
1834
+ msgstr "Sisältö on päivitetty."
1835
+
1836
+ #: components/manage/Actions/Actions
1837
+ #: components/manage/Contents/Contents
1838
+ # defaultMessage: Item(s) pasted.
1839
+ msgid "Item(s) pasted."
1840
+ msgstr "Sisältö liitetty."
1841
+
1842
+ #: components/manage/Contents/Contents
1843
+ # defaultMessage: Item(s) state has been updated.
1844
+ msgid "Item(s) state has been updated."
1845
+ msgstr "Kohteiden tila on päivitetty."
1846
+
1847
+ #: components/manage/Controlpanels/ContentTypes
1848
+ # defaultMessage: Items
1849
+ msgid "Items"
1850
+ msgstr "Sisältö"
1851
+
1852
+ #: components/manage/Form/ModalForm
1853
+ #: helpers/MessageLabels/MessageLabels
1854
+ # defaultMessage: Items must be unique.
1855
+ msgid "Items must be unique."
1856
+ msgstr "Kohteiden täytyy olla ainutkertaisia."
1857
+
1858
+ #: components/manage/Contents/Contents
1859
+ # defaultMessage: Items to be deleted:
1860
+ msgid "Items to be deleted:"
1861
+ msgstr "Poistettavat kohteet:"
1862
+
1863
+ #: components/manage/Blocks/Search/schema
1864
+ # defaultMessage: Label
1865
+ msgid "Label"
1866
+ msgstr "Nimike"
1867
+
1868
+ #: components/manage/Preferences/PersonalPreferences
1869
+ # defaultMessage: Language
1870
+ msgid "Language"
1871
+ msgstr "Kieli"
1872
+
1873
+ #: components/manage/Widgets/FormFieldWrapper
1874
+ # defaultMessage: Language independent field.
1875
+ msgid "Language independent field."
1876
+ msgstr "Kieliriippumaton kenttä"
1877
+
1878
+ #: components/manage/Widgets/ImageSizeWidget
1879
+ # defaultMessage: Large
1880
+ msgid "Large"
1881
+ msgstr "Suuri"
1882
+
1883
+ #: components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField
1884
+ # defaultMessage: Last
1885
+ msgid "Last"
1886
+ msgstr "Viimeinen"
1887
+
1888
+ #: components/manage/Contents/Contents
1889
+ # defaultMessage: Last comment date
1890
+ msgid "Last comment date"
1891
+ msgstr "Viimeisin kommentti"
1892
+
1893
+ #: components/manage/Contents/ContentsUploadModal
1894
+ # defaultMessage: Last modified
1895
+ msgid "Last modified"
1896
+ msgstr "Muokattu viimeksi"
1897
+
1898
+ #: components/manage/Controlpanels/UpgradeControlPanel
1899
+ # defaultMessage: Latest available configuration
1900
+ msgid "Latest available configuration"
1901
+ msgstr "Viimeisin saatavilla oleva konfiguraatio"
1902
+
1903
+ #: components/manage/Controlpanels/AddonsControlpanel
1904
+ # defaultMessage: Latest version
1905
+ msgid "Latest version"
1906
+ msgstr "Viimeisin versio"
1907
+
1908
+ #: components/manage/Controlpanels/ContentTypesActions
1909
+ # defaultMessage: Layout
1910
+ msgid "Layout"
1911
+ msgstr "Asettelu"
1912
+
1913
+ #: components/manage/Blocks/LeadImage/LeadImageSidebar
1914
+ # defaultMessage: Lead Image
1915
+ msgid "Lead Image"
1916
+ msgstr "Nostokuva"
1917
+
1918
+ #: components/manage/Blocks/Maps/Edit
1919
+ #: components/manage/Sidebar/AlignBlock
1920
+ #: components/manage/Widgets/AlignWidget
1921
+ # defaultMessage: Left
1922
+ msgid "Left"
1923
+ msgstr "Vasemmalla"
1924
+
1925
+ #: components/manage/Blocks/Search/components/Facets
1926
+ # defaultMessage: Less filters
1927
+ msgid "Less filters"
1928
+ msgstr ""
1929
+
1930
+ #: components/manage/Toolbar/Toolbar
1931
+ # defaultMessage: Link
1932
+ msgid "Link"
1933
+ msgstr "Linkki"
1934
+
1935
+ #: helpers/MessageLabels/MessageLabels
1936
+ # defaultMessage: Link copied to clipboard
1937
+ msgid "Link copied to clipboard"
1938
+ msgstr ""
1939
+
1940
+ #: components/manage/Blocks/HeroImageLeft/schema
1941
+ #: components/manage/Blocks/Listing/schema
1942
+ # defaultMessage: Link more
1943
+ msgid "Link more"
1944
+ msgstr "Lisää"
1945
+
1946
+ #: config/Views
1947
+ # defaultMessage: Link redirect view
1948
+ msgid "Link redirect view"
1949
+ msgstr "Linkin uudelleenohjauksen näkymä"
1950
+
1951
+ #: components/manage/Blocks/HeroImageLeft/schema
1952
+ #: components/manage/Blocks/Listing/schema
1953
+ # defaultMessage: Link Title
1954
+ msgid "Link title"
1955
+ msgstr "Otsikko"
1956
+
1957
+ #: components/manage/Blocks/HeroImageLeft/schema
1958
+ #: components/manage/Blocks/Image/schema
1959
+ #: components/manage/Blocks/LeadImage/LeadImageSidebar
1960
+ #: components/manage/Blocks/Listing/schema
1961
+ # defaultMessage: Link to
1962
+ msgid "Link to"
1963
+ msgstr "Linkin kohde"
1964
+
1965
+ #: components/manage/Multilingual/ManageTranslations
1966
+ # defaultMessage: Link translation for
1967
+ msgid "Link translation for"
1968
+ msgstr "Linkin käännös kohteelle"
1969
+
1970
+ #: components/manage/LinksToItem/LinksToItem
1971
+ # defaultMessage: Linking this item with hyperlink in text
1972
+ msgid "Linking this item with hyperlink in text"
1973
+ msgstr ""
1974
+
1975
+ #: components/manage/LinksToItem/LinksToItem
1976
+ #: components/manage/Toolbar/More
1977
+ # defaultMessage: Links and references
1978
+ msgid "Links and references"
1979
+ msgstr ""
1980
+
1981
+ #: components/manage/Blocks/Listing/schema
1982
+ # defaultMessage: Listing
1983
+ msgid "Listing"
1984
+ msgstr "Luettelo"
1985
+
1986
+ #: config/Views
1987
+ # defaultMessage: Listing view
1988
+ msgid "Listing view"
1989
+ msgstr "Luettelonäkymä"
1990
+
1991
+ #: components/theme/Comments/Comments
1992
+ # defaultMessage: Load more...
1993
+ msgid "Load more"
1994
+ msgstr "Lataa lisää"
1995
+
1996
+ #: components/manage/Form/ModalForm
1997
+ # defaultMessage: Loading.
1998
+ msgid "Loading"
1999
+ msgstr "Ladataan"
2000
+
2001
+ #: components/theme/Login/Login
2002
+ # defaultMessage: Login
2003
+ msgid "Log In"
2004
+ msgstr "Kirjaudu"
2005
+
2006
+ #: components/theme/Anontools/Anontools
2007
+ #: components/theme/Login/Login
2008
+ # defaultMessage: Log in
2009
+ msgid "Log in"
2010
+ msgstr "Kirjaudu"
2011
+
2012
+ #: components/theme/Logout/Logout
2013
+ # defaultMessage: Logged out
2014
+ msgid "Logged out"
2015
+ msgstr "Kirjauduttu ulos"
2016
+
2017
+ #: components/theme/Login/Login
2018
+ # defaultMessage: Login
2019
+ msgid "Login"
2020
+ msgstr "Kirjaudu"
2021
+
2022
+ #: components/theme/Login/Login
2023
+ # defaultMessage: Login Failed
2024
+ msgid "Login Failed"
2025
+ msgstr "Kirjautuminen epäonnistui"
2026
+
2027
+ #: components/theme/Login/Login
2028
+ # defaultMessage: Login Name
2029
+ msgid "Login Name"
2030
+ msgstr "Tunnus"
2031
+
2032
+ #: components/manage/Toolbar/PersonalTools
2033
+ # defaultMessage: Logout
2034
+ msgid "Logout"
2035
+ msgstr "Kirjaudu ulos"
2036
+
2037
+ #: components/manage/Toolbar/More
2038
+ # defaultMessage: Made by {creator} on {date}. This is not a working copy anymore, but the main content.
2039
+ msgid "Made by {creator} on {date}. This is not a working copy anymore, but the main content."
2040
+ msgstr ""
2041
+
2042
+ #: components/manage/Blocks/Table/Edit
2043
+ # defaultMessage: Reduce cell padding
2044
+ msgid "Make the table compact"
2045
+ msgstr "Tiivisrivinen taulukko"
2046
+
2047
+ #: components/manage/Multilingual/ManageTranslations
2048
+ #: components/manage/Toolbar/More
2049
+ # defaultMessage: Manage Translations
2050
+ msgid "Manage Translations"
2051
+ msgstr "Hallitse käännöksiä"
2052
+
2053
+ #: components/manage/Toolbar/More
2054
+ # defaultMessage: Manage content…
2055
+ msgid "Manage content…"
2056
+ msgstr "Hallitse sisältöä..."
2057
+
2058
+ #: components/manage/Multilingual/ManageTranslations
2059
+ # defaultMessage: Manage translations for {title}
2060
+ msgid "Manage translations for {title}"
2061
+ msgstr "Hallitse käännöksiä: {title}"
2062
+
2063
+ #: components/manage/Controlpanels/Aliases
2064
+ # defaultMessage: Manual
2065
+ msgid "Manual"
2066
+ msgstr "Manuaalinen"
2067
+
2068
+ #: components/manage/Controlpanels/Aliases
2069
+ # defaultMessage: Manually or automatically added?
2070
+ msgid "Manually or automatically added?"
2071
+ msgstr "Manuaalisesti vai automaattisesti lisätty?"
2072
+
2073
+ #: helpers/MessageLabels/MessageLabels
2074
+ # defaultMessage: Many relations found. Please search.
2075
+ msgid "Many relations found. Please search."
2076
+ msgstr ""
2077
+
2078
+ #: components/manage/Blocks/Maps/MapsSidebar
2079
+ #: components/manage/Blocks/Maps/schema
2080
+ # defaultMessage: Maps
2081
+ msgid "Maps"
2082
+ msgstr "Kartat"
2083
+
2084
+ #: components/manage/Blocks/Maps/schema
2085
+ # defaultMessage: Maps URL
2086
+ msgid "Maps URL"
2087
+ msgstr "Kartan URL"
2088
+
2089
+ #: helpers/MessageLabels/MessageLabels
2090
+ # defaultMessage: Maximum length is {len}.
2091
+ msgid "Maximum length is {len}."
2092
+ msgstr "Suurin mahdollinen pituus on {len}."
2093
+
2094
+ #: helpers/MessageLabels/MessageLabels
2095
+ # defaultMessage: Maximum value is {len}.
2096
+ msgid "Maximum value is {len}."
2097
+ msgstr "Suurin mahdollinen arvo on {len}."
2098
+
2099
+ #: components/manage/Widgets/ImageSizeWidget
2100
+ # defaultMessage: Medium
2101
+ msgid "Medium"
2102
+ msgstr "Keskikokoinen"
2103
+
2104
+ #: helpers/MessageLabels/MessageLabels
2105
+ # defaultMessage: Membership updated
2106
+ msgid "Membership updated"
2107
+ msgstr "Jäsenyys päivitetty"
2108
+
2109
+ #: components/theme/ContactForm/ContactForm
2110
+ # defaultMessage: Message
2111
+ msgid "Message"
2112
+ msgstr "Viesti"
2113
+
2114
+ #: components/manage/Form/ModalForm
2115
+ #: helpers/MessageLabels/MessageLabels
2116
+ # defaultMessage: Minimum length is {len}.
2117
+ msgid "Minimum length is {len}."
2118
+ msgstr "Vähimmäispituus on {len} merkkiä."
2119
+
2120
+ #: helpers/MessageLabels/MessageLabels
2121
+ # defaultMessage: Minimum value is {len}.
2122
+ msgid "Minimum value is {len}."
2123
+ msgstr "Pienin mahdollinen arvo on {len}."
2124
+
2125
+ #: components/manage/Controlpanels/Controlpanels
2126
+ # defaultMessage: Moderate Comments
2127
+ msgid "Moderate Comments"
2128
+ msgstr "Kommenttien moderointi"
2129
+
2130
+ #: components/manage/Controlpanels/ModerateComments
2131
+ # defaultMessage: Moderate comments
2132
+ msgid "Moderate comments"
2133
+ msgstr "Kommenttien moderointi"
2134
+
2135
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
2136
+ # defaultMessage: Monday and Friday
2137
+ msgid "Monday and Friday"
2138
+ msgstr "Maanantai ja perjantai"
2139
+
2140
+ #: components/manage/Widgets/RecurrenceWidget/ByMonthDayField
2141
+ # defaultMessage: Day
2142
+ msgid "Month day"
2143
+ msgstr "Kuukaudenpäivä"
2144
+
2145
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
2146
+ # defaultMessage: Monthly
2147
+ msgid "Monthly"
2148
+ msgstr "Kuukausittain"
2149
+
2150
+ #: components/manage/Toolbar/Toolbar
2151
+ # defaultMessage: More
2152
+ msgid "More"
2153
+ msgstr "Lisää"
2154
+
2155
+ #: components/manage/Blocks/Search/components/Facets
2156
+ # defaultMessage: More filters
2157
+ msgid "More filters"
2158
+ msgstr ""
2159
+
2160
+ #: components/manage/Controlpanels/UpgradeControlPanel
2161
+ # defaultMessage: More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide.
2162
+ msgid "More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide."
2163
+ msgstr ""
2164
+
2165
+ #: config/Views
2166
+ # defaultMessage: Mosaic layout
2167
+ msgid "Mosaic layout"
2168
+ msgstr "Mosaic-asettelu"
2169
+
2170
+ #: components/manage/Controlpanels/Rules/ConfigureRule
2171
+ # defaultMessage: Move down
2172
+ msgid "Move down"
2173
+ msgstr "Siirrä alaspäin"
2174
+
2175
+ #: components/manage/Contents/ContentsItem
2176
+ # defaultMessage: Move to bottom of folder
2177
+ msgid "Move to bottom of folder"
2178
+ msgstr "Siirrä kansion pohjalle"
2179
+
2180
+ #: components/manage/Contents/ContentsItem
2181
+ # defaultMessage: Move to top of folder
2182
+ msgid "Move to top of folder"
2183
+ msgstr "Siirrä kansion pinnalle"
2184
+
2185
+ #: components/manage/Controlpanels/Rules/ConfigureRule
2186
+ # defaultMessage: Move up
2187
+ msgid "Move up"
2188
+ msgstr "Siirrä ylöspäin"
2189
+
2190
+ #: components/manage/Blocks/Search/schema
2191
+ # defaultMessage: Multiple choices?
2192
+ msgid "Multiple choices?"
2193
+ msgstr "Monivalinta?"
2194
+
2195
+ #: components/theme/PasswordReset/PasswordReset
2196
+ # defaultMessage: My email is
2197
+ msgid "My email is"
2198
+ msgstr "Sähköpostiosoitteeni on"
2199
+
2200
+ #: components/theme/PasswordReset/PasswordReset
2201
+ # defaultMessage: My user name is
2202
+ msgid "My username is"
2203
+ msgstr "Käyttäjätunnukseni on"
2204
+
2205
+ #: components/manage/Sharing/Sharing
2206
+ #: components/theme/ContactForm/ContactForm
2207
+ # defaultMessage: Name
2208
+ msgid "Name"
2209
+ msgstr "Nimi"
2210
+
2211
+ #: components/manage/Widgets/AlignWidget
2212
+ # defaultMessage: Narrow
2213
+ msgid "Narrow"
2214
+ msgstr "Kavenna"
2215
+
2216
+ #: error
2217
+ # defaultMessage: Navigate back
2218
+ msgid "Navigate back"
2219
+ msgstr "Takaisin"
2220
+
2221
+ #: components/theme/Navigation/ContextNavigation
2222
+ # defaultMessage: Navigation
2223
+ msgid "Navigation"
2224
+ msgstr "Navigaatio"
2225
+
2226
+ #: components/manage/Preferences/ChangePassword
2227
+ #: components/theme/PasswordReset/PasswordReset
2228
+ # defaultMessage: New password
2229
+ msgid "New password"
2230
+ msgstr "Uusi salasana"
2231
+
2232
+ #: components/manage/Toolbar/Toolbar
2233
+ # defaultMessage: News Item
2234
+ msgid "News Item"
2235
+ msgstr "Uutinen"
2236
+
2237
+ #: config/Views
2238
+ # defaultMessage: News item view
2239
+ msgid "News item view"
2240
+ msgstr "Uutisnäkymä"
2241
+
2242
+ #: components/manage/Contents/ContentsItem
2243
+ #: components/manage/Contents/ContentsPropertiesModal
2244
+ #: components/manage/Controlpanels/ContentTypes
2245
+ # defaultMessage: No
2246
+ msgid "No"
2247
+ msgstr "Ei"
2248
+
2249
+ #: components/manage/Controlpanels/UndoControlpanel
2250
+ # defaultMessage: No transactions found
2251
+ msgid "No Transactions Found"
2252
+ msgstr "Käännöksiä ei löytynyt"
2253
+
2254
+ #: components/manage/Controlpanels/UndoControlpanel
2255
+ # defaultMessage: No transactions selected
2256
+ msgid "No Transactions Selected"
2257
+ msgstr "Käännöksiä ei valittu"
2258
+
2259
+ #: components/manage/Controlpanels/UndoControlpanel
2260
+ # defaultMessage: No transactions selected to do undo
2261
+ msgid "No Transactions Selected To Do Undo"
2262
+ msgstr "Käännöksiä ei valittu peruutusta varten"
2263
+
2264
+ #: components/manage/Blocks/Video/VideoSidebar
2265
+ # defaultMessage: No Video selected
2266
+ msgid "No Video selected"
2267
+ msgstr "Videota ei valittu"
2268
+
2269
+ #: components/manage/Controlpanels/VersionOverview
2270
+ # defaultMessage: No addons found
2271
+ msgid "No addons found"
2272
+ msgstr "Lisäosia ei löytynyt"
2273
+
2274
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
2275
+ # defaultMessage: No broken relations found.
2276
+ msgid "No broken relations found."
2277
+ msgstr ""
2278
+
2279
+ #: components/theme/RequestTimeout/RequestTimeout
2280
+ # defaultMessage: There is no connection to the server, due to a timeout o no network connection.
2281
+ msgid "No connection to the server"
2282
+ msgstr "Ei yhteyttä palvelimeen"
2283
+
2284
+ #: components/manage/Blocks/Image/ImageSidebar
2285
+ # defaultMessage: No image selected
2286
+ msgid "No image selected"
2287
+ msgstr "Kuvaa ei ole määritety"
2288
+
2289
+ #: components/manage/Blocks/LeadImage/LeadImageSidebar
2290
+ # defaultMessage: No image set in Lead Image content field
2291
+ msgid "No image set in Lead Image content field"
2292
+ msgstr "Sisällöstä puuttuu nostokuva"
2293
+
2294
+ #: components/manage/Blocks/LeadImage/LeadImageSidebar
2295
+ # defaultMessage: No image set in image content field
2296
+ msgid "No image set in image content field"
2297
+ msgstr "Kuva puuttuu"
2298
+
2299
+ #: components/manage/Blocks/Listing/GalleryNoResultsComponent
2300
+ # defaultMessage: No images found.
2301
+ msgid "No images found."
2302
+ msgstr ""
2303
+
2304
+ #: components/manage/Blocks/Listing/ListingBody
2305
+ # defaultMessage: No items found in this container.
2306
+ msgid "No items found in this container."
2307
+ msgstr "Ei sisältöä"
2308
+
2309
+ #: components/manage/Widgets/ObjectBrowserWidget
2310
+ # defaultMessage: No items selected
2311
+ msgid "No items selected"
2312
+ msgstr "Sisältöä ei ole valittu"
2313
+
2314
+ #: components/manage/LinksToItem/LinksToItem
2315
+ # defaultMessage: No links to this item found.
2316
+ msgid "No links to this item found."
2317
+ msgstr ""
2318
+
2319
+ #: components/manage/Blocks/Maps/MapsSidebar
2320
+ # defaultMessage: No map selected
2321
+ msgid "No map selected"
2322
+ msgstr "Karttaa ei ole määritetty"
2323
+
2324
+ #: components/manage/Widgets/RecurrenceWidget/Occurences
2325
+ # defaultMessage: No occurences set
2326
+ msgid "No occurences set"
2327
+ msgstr "Toistumista ei ole määritetty"
2328
+
2329
+ #: components/manage/Widgets/ArrayWidget
2330
+ #: components/manage/Widgets/SelectAutoComplete
2331
+ #: components/manage/Widgets/SelectWidget
2332
+ #: components/manage/Widgets/TokenWidget
2333
+ # defaultMessage: No options
2334
+ msgid "No options"
2335
+ msgstr "Ei vaihtoehtoja"
2336
+
2337
+ #: helpers/MessageLabels/MessageLabels
2338
+ # defaultMessage: No relation found
2339
+ msgid "No relation found"
2340
+ msgstr ""
2341
+
2342
+ #: components/manage/BlockChooser/BlockChooser
2343
+ #: components/theme/Search/Search
2344
+ # defaultMessage: No results found
2345
+ msgid "No results found"
2346
+ msgstr "Yhtään tulosta ei löytynyt"
2347
+
2348
+ #: components/manage/Blocks/Listing/DefaultNoResultsComponent
2349
+ #: components/manage/Widgets/ReferenceWidget
2350
+ # defaultMessage: No results found.
2351
+ msgid "No results found."
2352
+ msgstr "Ei tuloksia"
2353
+
2354
+ #: components/manage/Blocks/Search/components/SortOn
2355
+ #: components/manage/Widgets/QuerySortOnWidget
2356
+ #: components/manage/Widgets/QuerystringWidget
2357
+ # defaultMessage: No selection
2358
+ msgid "No selection"
2359
+ msgstr "Ei valintaa"
2360
+
2361
+ #: components/manage/Controlpanels/AddonsControlpanel
2362
+ # defaultMessage: This addon does not provide an uninstall profile.
2363
+ msgid "No uninstall profile"
2364
+ msgstr "Ei sisällä asennuksen poistamista"
2365
+
2366
+ #: helpers/MessageLabels/MessageLabels
2367
+ # defaultMessage: No user found
2368
+ msgid "No user found"
2369
+ msgstr ""
2370
+
2371
+ #: components/manage/Widgets/ArrayWidget
2372
+ #: components/manage/Widgets/ReferenceWidget
2373
+ #: components/manage/Widgets/SelectUtils
2374
+ #: components/manage/Widgets/SelectWidget
2375
+ # defaultMessage: No value
2376
+ msgid "No value"
2377
+ msgstr "Ei arvoa"
2378
+
2379
+ #: components/manage/Workflow/Workflow
2380
+ # defaultMessage: No workflow
2381
+ msgid "No workflow"
2382
+ msgstr "Ei työnkulkua"
2383
+
2384
+ #: components/manage/Contents/Contents
2385
+ #: components/manage/Contents/ContentsItem
2386
+ # defaultMessage: None
2387
+ msgid "None"
2388
+ msgstr "Ei mitään"
2389
+
2390
+ #: components/manage/Controlpanels/UndoControlpanel
2391
+ # defaultMessage: Note
2392
+ msgid "Note"
2393
+ msgstr "Muistiinpano"
2394
+
2395
+ #: components/manage/Controlpanels/Users/UsersControlpanel
2396
+ # defaultMessage: Note that roles set here apply directly to a user. The symbol{plone_svg}indicates a role inherited from membership in a group.
2397
+ msgid "Note that roles set here apply directly to a user. The symbol{plone_svg}indicates a role inherited from membership in a group."
2398
+ msgstr "Huomioi, että tässä määritellyt roolit kohdistuvat suoraan käyttäjään. Symboli {plone_svg} kertoo että käyttäjälle periytyy rooli ryhmästä."
2399
+
2400
+ #: components/manage/Controlpanels/DatabaseInformation
2401
+ # defaultMessage: Number of active objects
2402
+ msgid "Number of active objects"
2403
+ msgstr "Aktiivisten kohteiden määrä"
2404
+
2405
+ #: components/manage/Contents/Contents
2406
+ # defaultMessage: Object Size
2407
+ msgid "Object Size"
2408
+ msgstr "Koko"
2409
+
2410
+ #: components/manage/Widgets/RecurrenceWidget/EndField
2411
+ # defaultMessage: occurrence(s)
2412
+ msgid "Occurences"
2413
+ msgstr "Toistuminen"
2414
+
2415
+ #: components/manage/Delete/Delete
2416
+ # defaultMessage: Ok
2417
+ msgid "Ok"
2418
+ msgstr "Ok"
2419
+
2420
+ #: components/manage/Widgets/IdWidget
2421
+ # defaultMessage: Only lowercase letters (a-z) without accents, numbers (0-9), and the characters "-", "_", and "." are allowed.
2422
+ msgid "Only lowercase letters (a-z) without accents, numbers (0-9), and the characters "-", "_", and "." are allowed."
2423
+ msgstr "Ainostaan pienet kirjaimet (a-z), numerot (0-9) ja merkit "-", "_", ja "." ovat sallittuja. "
2424
+
2425
+ #: components/manage/Blocks/Image/schema
2426
+ #: components/manage/Blocks/LeadImage/LeadImageSidebar
2427
+ #: components/manage/Blocks/Teaser/schema
2428
+ # defaultMessage: Open in a new tab
2429
+ msgid "Open in a new tab"
2430
+ msgstr "Avaa uudella välilehdellä"
2431
+
2432
+ #: components/theme/Navigation/Navigation
2433
+ # defaultMessage: Open menu
2434
+ msgid "Open menu"
2435
+ msgstr "Avaa valikko"
2436
+
2437
+ #: components/manage/Widgets/ObjectBrowserWidget
2438
+ # defaultMessage: Open object browser
2439
+ msgid "Open object browser"
2440
+ msgstr ""
2441
+
2442
+ #: components/manage/Blocks/LeadImage/LeadImageSidebar
2443
+ # defaultMessage: Origin
2444
+ msgid "Origin"
2445
+ msgstr "Kuva"
2446
+
2447
+ #: components/manage/LinksToItem/LinksToItem
2448
+ # defaultMessage: Overview of relations of all content items
2449
+ msgid "Overview of relations of all content items"
2450
+ msgstr ""
2451
+
2452
+ #: components/manage/Toolbar/Toolbar
2453
+ # defaultMessage: Page
2454
+ msgid "Page"
2455
+ msgstr "Sivu"
2456
+
2457
+ #: components/manage/Widgets/SchemaWidget
2458
+ # defaultMessage: Parent fieldset
2459
+ msgid "Parent fieldset"
2460
+ msgstr "Kenttäjoukko"
2461
+
2462
+ #: components/theme/Login/Login
2463
+ #: helpers/MessageLabels/MessageLabels
2464
+ # defaultMessage: Password
2465
+ msgid "Password"
2466
+ msgstr "Salasana"
2467
+
2468
+ #: components/theme/PasswordReset/PasswordReset
2469
+ #: components/theme/PasswordReset/RequestPasswordReset
2470
+ # defaultMessage: Password reset
2471
+ msgid "Password reset"
2472
+ msgstr "Salasanan vaihto"
2473
+
2474
+ #: components/theme/PasswordReset/PasswordReset
2475
+ # defaultMessage: Passwords do not match.
2476
+ msgid "Passwords do not match."
2477
+ msgstr "Salasanat eivät olleet identtiset."
2478
+
2479
+ #: components/manage/Actions/Actions
2480
+ #: components/manage/Contents/Contents
2481
+ # defaultMessage: Paste
2482
+ msgid "Paste"
2483
+ msgstr "Liitä"
2484
+
2485
+ #: helpers/MessageLabels/MessageLabels
2486
+ # defaultMessage: undefined
2487
+ msgid "Paste blocks"
2488
+ msgstr ""
2489
+
2490
+ #: components/manage/Controlpanels/Rules/ConfigureRule
2491
+ # defaultMessage: Perform the following actions:
2492
+ msgid "Perform the following actions:"
2493
+ msgstr ""
2494
+
2495
+ #: components/manage/Sharing/Sharing
2496
+ # defaultMessage: Permissions have been updated successfully
2497
+ msgid "Permissions have been updated successfully"
2498
+ msgstr ""
2499
+
2500
+ #: components/manage/Sharing/Sharing
2501
+ # defaultMessage: Permissions updated
2502
+ msgid "Permissions updated"
2503
+ msgstr ""
2504
+
2505
+ #: components/manage/Toolbar/Toolbar
2506
+ # defaultMessage: Personal Information
2507
+ msgid "Personal Information"
2508
+ msgstr "Henkilötiedot"
2509
+
2510
+ #: components/manage/Preferences/PersonalPreferences
2511
+ #: components/manage/Toolbar/Toolbar
2512
+ # defaultMessage: Personal Preferences
2513
+ msgid "Personal Preferences"
2514
+ msgstr "Omat asetukset"
2515
+
2516
+ #: components/manage/Toolbar/More
2517
+ #: components/manage/Toolbar/Toolbar
2518
+ # defaultMessage: Personal tools
2519
+ msgid "Personal tools"
2520
+ msgstr "Omat työkalut"
2521
+
2522
+ #: components/manage/Contents/ContentsPropertiesModal
2523
+ # defaultMessage: Persons responsible for creating the content of this item. Please enter a list of user names, one per line. The principal creator should come first.
2524
+ msgid "Persons responsible for creating the content of this item. Please enter a list of user names, one per line. The principal creator should come first."
2525
+ msgstr "Tämän sisällön tuottamiseen osallistuneet käyttäjät. Syötä Yksi käyttäjätunus per rivi. Syötä ensisijainen tekijä ensimmäisenä."
2526
+
2527
+ #: components/manage/Blocks/Teaser/DefaultBody
2528
+ # defaultMessage: Please choose an existing content as source for this element
2529
+ msgid "Please choose an existing content as source for this element"
2530
+ msgstr ""
2531
+
2532
+ #: components/manage/Controlpanels/Controlpanels
2533
+ # defaultMessage: Please continue with the upgrade.
2534
+ msgid "Please continue with the upgrade."
2535
+ msgstr "Ole hyvä ja jatka päivitystä."
2536
+
2537
+ #: components/manage/Controlpanels/UpgradeControlPanel
2538
+ # defaultMessage: Please ensure you have a backup of your site before performing the upgrade.
2539
+ msgid "Please ensure you have a backup of your site before performing the upgrade."
2540
+ msgstr "Varmista, että sinulla on varmuuskopio sivustosta ennen päivityksen suorittamista."
2541
+
2542
+ #: components/manage/Blocks/Video/Body
2543
+ # defaultMessage: Please enter a valid URL by deleting the block and adding a new video block.
2544
+ msgid "Please enter a valid URL by deleting the block and adding a new video block."
2545
+ msgstr "Syötä toimiva osoite poistamalla tämä palikka ja lisäämällä sitten uusi videopalikka."
2546
+
2547
+ #: components/manage/Blocks/Maps/Edit
2548
+ # defaultMessage: Please enter the Embed Code provided by Google Maps -> Share -> Embed map. It should contain the <iframe> code on it.
2549
+ msgid "Please enter the Embed Code provided by Google Maps -> Share -> Embed map. It should contain the <iframe> code on it."
2550
+ msgstr "Syötä Google Maps -upotuskoodi. Koodin tulee sisältää <frame>-tagi. Löydät koodin Google Maps -palvelusta valitsemalla: Jaa tai upota kartta -> Upota."
2551
+
2552
+ #: components/theme/PasswordReset/PasswordReset
2553
+ # defaultMessage: Please fill out the form below to set your password.
2554
+ msgid "Please fill out the form below to set your password."
2555
+ msgstr "Voit vaihtaa salasanan täytämällä oheisen lomakkeen."
2556
+
2557
+ #: helpers/MessageLabels/MessageLabels
2558
+ # defaultMessage: Please search for users or use the filters on the side.
2559
+ msgid "Please search for users or use the filters on the side."
2560
+ msgstr "Etsi käyttäjiä tai käytä suodattimia."
2561
+
2562
+ #: components/manage/Controlpanels/Users/UserGroupMembershipControlPanel
2563
+ # defaultMessage: Please upgrade to plone.restapi >= 8.24.0.
2564
+ msgid "Please upgrade to plone.restapi >= 8.24.0."
2565
+ msgstr "Päivitä plone.restapi"
2566
+
2567
+ #: components/manage/Controlpanels/Relations/Relations
2568
+ # defaultMessage: Please upgrade to plone.restapi >= 8.35.3.
2569
+ msgid "Please upgrade to plone.restapi >= 8.35.3."
2570
+ msgstr ""
2571
+
2572
+ #: components/theme/Footer/Footer
2573
+ # defaultMessage: Plone Foundation
2574
+ msgid "Plone Foundation"
2575
+ msgstr "Plone-säätiön"
2576
+
2577
+ #: components/theme/Logo/Logo
2578
+ # defaultMessage: Plone Site
2579
+ msgid "Plone Site"
2580
+ msgstr "Plone-sivusto"
2581
+
2582
+ #: components/theme/Footer/Footer
2583
+ # defaultMessage: Plone{reg} Open Source CMS/WCM
2584
+ msgid "Plone{reg} Open Source CMS/WCM"
2585
+ msgstr "Plone{reg} avoimen lähdenkoodin sisällönhallintajärjestelmä CMS/WCM"
2586
+
2587
+ #: components/manage/Controlpanels/Rules/ConfigureRule
2588
+ # defaultMessage: Position changed
2589
+ msgid "Position changed"
2590
+ msgstr "Järjestystä muutettu"
2591
+
2592
+ #: components/manage/Widgets/SchemaWidget
2593
+ # defaultMessage: Possible values (Enter allowed choices one per line).
2594
+ msgid "Possible values"
2595
+ msgstr "Mahdolliset arvot"
2596
+
2597
+ #: components/manage/Contents/Contents
2598
+ # defaultMessage: Potential link breakage
2599
+ msgid "Potential link breakage"
2600
+ msgstr "Mahdollinen rikkinäinen linkki"
2601
+
2602
+ #: components/theme/Footer/Footer
2603
+ # defaultMessage: Powered by Plone & Python
2604
+ msgid "Powered by Plone & Python"
2605
+ msgstr "Voimanlähteenä Plone & Python"
2606
+
2607
+ #: components/manage/Toolbar/PersonalTools
2608
+ # defaultMessage: Preferences
2609
+ msgid "Preferences"
2610
+ msgstr "Asetukset"
2611
+
2612
+ #: components/manage/Blocks/HTML/Edit
2613
+ # defaultMessage: Prettify your code
2614
+ msgid "Prettify your code"
2615
+ msgstr "Siisti koodisi"
2616
+
2617
+ #: components/manage/Blocks/HTML/Edit
2618
+ #: components/manage/Contents/ContentsUploadModal
2619
+ # defaultMessage: Preview
2620
+ msgid "Preview"
2621
+ msgstr "Esikatselu"
2622
+
2623
+ #: components/manage/Blocks/Video/schema
2624
+ # defaultMessage: Preview Image URL
2625
+ msgid "Preview Image URL"
2626
+ msgstr "Esikatselukuvan URL-osoite"
2627
+
2628
+ #: components/manage/Toolbar/PersonalTools
2629
+ # defaultMessage: Profile
2630
+ msgid "Profile"
2631
+ msgstr "Profiili"
2632
+
2633
+ #: components/manage/Contents/Contents
2634
+ #: components/manage/Contents/ContentsPropertiesModal
2635
+ # defaultMessage: Properties
2636
+ msgid "Properties"
2637
+ msgstr "Ominaisuudet"
2638
+
2639
+ #: components/manage/Contents/Contents
2640
+ # defaultMessage: Publication date
2641
+ msgid "Publication date"
2642
+ msgstr "Julkaisupäivä"
2643
+
2644
+ #: components/manage/Contents/ContentsPropertiesModal
2645
+ # defaultMessage: Publishing Date
2646
+ msgid "Publishing Date"
2647
+ msgstr "Voimaantulo"
2648
+
2649
+ #: components/manage/Blocks/Listing/schema
2650
+ # defaultMessage: Query
2651
+ msgid "Query"
2652
+ msgstr "Kysely"
2653
+
2654
+ #: components/manage/Preferences/ChangePassword
2655
+ #: components/theme/PasswordReset/PasswordReset
2656
+ # defaultMessage: Re-enter the password. Make sure the passwords are identical.
2657
+ msgid "Re-enter the password. Make sure the passwords are identical."
2658
+ msgstr "Syötä salasana uudelleen. Syötettyjen salasanojen tulee olla identtiset."
2659
+
2660
+ #: components/theme/Search/Search
2661
+ #: components/theme/View/SummaryView
2662
+ # defaultMessage: Read More…
2663
+ msgid "Read More…"
2664
+ msgstr "Lue lisää…"
2665
+
2666
+ #: components/manage/Controlpanels/Relations/RelationsListing
2667
+ # defaultMessage: Read only for this type of relation.
2668
+ msgid "Read only for this type of relation."
2669
+ msgstr ""
2670
+
2671
+ #: components/manage/Contents/Contents
2672
+ # defaultMessage: Rearrange items by…
2673
+ msgid "Rearrange items by…"
2674
+ msgstr "Järjestä sisältö…"
2675
+
2676
+ #: components/manage/Widgets/RecurrenceWidget/EndField
2677
+ # defaultMessage: Ends
2678
+ msgid "Recurrence ends"
2679
+ msgstr "Toistuminen päättyy"
2680
+
2681
+ #: components/manage/Widgets/RecurrenceWidget/EndField
2682
+ # defaultMessage: after
2683
+ msgid "Recurrence ends after"
2684
+ msgstr "Toistumisen viimeinen päivä"
2685
+
2686
+ #: components/manage/Widgets/RecurrenceWidget/EndField
2687
+ # defaultMessage: on
2688
+ msgid "Recurrence ends on"
2689
+ msgstr "Toistuminen päättyy"
2690
+
2691
+ #: components/manage/Form/UndoToolbar
2692
+ # defaultMessage: Redo
2693
+ msgid "Redo"
2694
+ msgstr "Toista"
2695
+
2696
+ #: components/manage/Blocks/Table/Edit
2697
+ # defaultMessage: Minimalistic table design
2698
+ msgid "Reduce complexity"
2699
+ msgstr "Yksinkertainen taulukko"
2700
+
2701
+ #: components/manage/LinksToItem/LinksToItem
2702
+ # defaultMessage: Referencing this item as related item
2703
+ msgid "Referencing this item as related item"
2704
+ msgstr ""
2705
+
2706
+ #: components/manage/LinksToItem/LinksToItem
2707
+ # defaultMessage: Referencing this item with {relationship}
2708
+ msgid "Referencing this item with {relationship}"
2709
+ msgstr ""
2710
+
2711
+ #: components/theme/Anontools/Anontools
2712
+ #: components/theme/Login/Login
2713
+ #: components/theme/Register/Register
2714
+ # defaultMessage: Register
2715
+ msgid "Register"
2716
+ msgstr "Rekisteröidy"
2717
+
2718
+ #: components/theme/Register/Register
2719
+ # defaultMessage: Registration form
2720
+ msgid "Registration form"
2721
+ msgstr "Rekisteröitymislomake"
2722
+
2723
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
2724
+ #: helpers/MessageLabels/MessageLabels
2725
+ # defaultMessage: Relation
2726
+ msgid "Relation name"
2727
+ msgstr ""
2728
+
2729
+ #: components/manage/Controlpanels/Controlpanels
2730
+ #: components/manage/Controlpanels/Relations/Relations
2731
+ #: helpers/MessageLabels/MessageLabels
2732
+ # defaultMessage: Relations
2733
+ msgid "Relations"
2734
+ msgstr ""
2735
+
2736
+ #: components/manage/Controlpanels/Relations/RelationsListing
2737
+ # defaultMessage: Relations are editable with plone.api >= 2.0.3.
2738
+ msgid "Relations are editable with plone.api >= 2.0.3."
2739
+ msgstr ""
2740
+
2741
+ #: helpers/MessageLabels/MessageLabels
2742
+ # defaultMessage: Relations updated
2743
+ msgid "Relations updated"
2744
+ msgstr ""
2745
+
2746
+ #: components/theme/Search/Search
2747
+ # defaultMessage: Relevance
2748
+ msgid "Relevance"
2749
+ msgstr "Osuvuus"
2750
+
2751
+ #: components/manage/Aliases/Aliases
2752
+ # defaultMessage: Remove
2753
+ msgid "Remove"
2754
+ msgstr "Poista"
2755
+
2756
+ #: components/manage/Blocks/Container/EditBlockWrapper
2757
+ # defaultMessage: Remove element {index}
2758
+ msgid "Remove element {index}"
2759
+ msgstr ""
2760
+
2761
+ #: components/manage/Widgets/ObjectListWidget
2762
+ # defaultMessage: Remove item
2763
+ msgid "Remove item"
2764
+ msgstr "Poista kohde"
2765
+
2766
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
2767
+ # defaultMessage: Remove
2768
+ msgid "Remove recurrence"
2769
+ msgstr "Poista toistuminen"
2770
+
2771
+ #: components/manage/Controlpanels/Aliases
2772
+ # defaultMessage: Remove selected
2773
+ msgid "Remove selected"
2774
+ msgstr "Poista valitut"
2775
+
2776
+ #: components/manage/Widgets/VocabularyTermsWidget
2777
+ # defaultMessage: Remove term
2778
+ msgid "Remove term"
2779
+ msgstr "Poista termi"
2780
+
2781
+ #: helpers/MessageLabels/MessageLabels
2782
+ # defaultMessage: Remove users from group
2783
+ msgid "Remove users from group"
2784
+ msgstr "Poista käyttäjät ryhmästä"
2785
+
2786
+ #: components/manage/Toolbar/More
2787
+ # defaultMessage: Remove working copy
2788
+ msgid "Remove working copy"
2789
+ msgstr "Poista työkopio"
2790
+
2791
+ #: components/manage/Actions/Actions
2792
+ #: components/manage/Contents/Contents
2793
+ # defaultMessage: Rename
2794
+ msgid "Rename"
2795
+ msgstr "Nimeä uudelleen"
2796
+
2797
+ #: components/manage/Contents/ContentsRenameModal
2798
+ # defaultMessage: Renaming items...
2799
+ msgid "Rename Items Loading Message"
2800
+ msgstr "Kohteita nimetään uudelleen"
2801
+
2802
+ #: components/manage/Contents/ContentsRenameModal
2803
+ # defaultMessage: Rename items
2804
+ msgid "Rename items"
2805
+ msgstr "Nimeä uudelleen"
2806
+
2807
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
2808
+ # defaultMessage: Repeat
2809
+ msgid "Repeat"
2810
+ msgstr "Toista"
2811
+
2812
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
2813
+ # defaultMessage: Repeat every
2814
+ msgid "Repeat every"
2815
+ msgstr "Toista joka"
2816
+
2817
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
2818
+ # defaultMessage: Repeat on
2819
+ msgid "Repeat on"
2820
+ msgstr "Toista"
2821
+
2822
+ #: components/manage/Widgets/FileWidget
2823
+ # defaultMessage: Replace existing file
2824
+ msgid "Replace existing file"
2825
+ msgstr "Korvaa olemassaoleva tiedosto"
2826
+
2827
+ #: components/theme/Comments/Comments
2828
+ # defaultMessage: Reply
2829
+ msgid "Reply"
2830
+ msgstr "Vastaa"
2831
+
2832
+ #: components/manage/Widgets/SchemaWidget
2833
+ #: components/manage/Widgets/SelectWidget
2834
+ #: components/manage/Widgets/WysiwygWidget
2835
+ # defaultMessage: Required
2836
+ msgid "Required"
2837
+ msgstr "Pakollinen"
2838
+
2839
+ #: components/manage/Form/ModalForm
2840
+ #: helpers/MessageLabels/MessageLabels
2841
+ # defaultMessage: Required input is missing.
2842
+ msgid "Required input is missing."
2843
+ msgstr "Pakollista tietoa puuttuu."
2844
+
2845
+ #: components/manage/Blocks/Container/EditBlockWrapper
2846
+ # defaultMessage: Reset element {index}
2847
+ msgid "Reset element {index}"
2848
+ msgstr ""
2849
+
2850
+ #: components/manage/Widgets/VocabularyTermsWidget
2851
+ # defaultMessage: Reset title
2852
+ msgid "Reset term title"
2853
+ msgstr "Tyhjennä termin otsikko"
2854
+
2855
+ #: components/manage/Blocks/Teaser/Data
2856
+ # defaultMessage: Reset the block
2857
+ msgid "Reset the block"
2858
+ msgstr ""
2859
+
2860
+ #: components/manage/Widgets/QuerystringWidget
2861
+ # defaultMessage: Results limit
2862
+ msgid "Results limit"
2863
+ msgstr "Tulosten määrä"
2864
+
2865
+ #: components/manage/Blocks/Listing/Edit
2866
+ # defaultMessage: Results preview
2867
+ msgid "Results preview"
2868
+ msgstr "Tulosten esikatselu"
2869
+
2870
+ #: components/manage/Blocks/Search/SearchBlockEdit
2871
+ # defaultMessage: Results template
2872
+ msgid "Results template"
2873
+ msgstr "Tulospohja"
2874
+
2875
+ #: components/manage/Widgets/QuerystringWidget
2876
+ # defaultMessage: Reversed order
2877
+ msgid "Reversed order"
2878
+ msgstr "Käänteinen järjestys"
2879
+
2880
+ #: components/manage/History/History
2881
+ # defaultMessage: Revert to this revision
2882
+ msgid "Revert to this revision"
2883
+ msgstr "Palauta tämä versio"
2884
+
2885
+ #: components/manage/Contents/Contents
2886
+ #: components/manage/LinksToItem/LinksToItem
2887
+ # defaultMessage: Review state
2888
+ msgid "Review state"
2889
+ msgstr "Julkaisutila"
2890
+
2891
+ #: components/manage/Widgets/SchemaWidget
2892
+ # defaultMessage: Richtext
2893
+ msgid "Richtext"
2894
+ msgstr "Muotoiltu teksti"
2895
+
2896
+ #: components/manage/Blocks/Maps/Edit
2897
+ #: components/manage/Sidebar/AlignBlock
2898
+ #: components/manage/Widgets/AlignWidget
2899
+ # defaultMessage: Right
2900
+ msgid "Right"
2901
+ msgstr "Oikealla"
2902
+
2903
+ #: components/manage/Contents/ContentsPropertiesModal
2904
+ # defaultMessage: Rights
2905
+ msgid "Rights"
2906
+ msgstr "Oikeudet"
2907
+
2908
+ #: helpers/MessageLabels/MessageLabels
2909
+ # defaultMessage: Roles
2910
+ msgid "Roles"
2911
+ msgstr "Roolit"
2912
+
2913
+ #: components/manage/Contents/ContentsBreadcrumbs
2914
+ #: components/manage/Contents/ContentsBreadcrumbsRootItem
2915
+ # defaultMessage: Root
2916
+ msgid "Root"
2917
+ msgstr "Juuri"
2918
+
2919
+ #: components/manage/Controlpanels/Rules/AddRule
2920
+ # defaultMessage: Rule added
2921
+ msgid "Rule added"
2922
+ msgstr "Sääntö lisätty"
2923
+
2924
+ #: components/manage/Controlpanels/Rules/Rules
2925
+ # defaultMessage: Rule enable changed
2926
+ msgid "Rule enable changed"
2927
+ msgstr "Säännön aktivointi muutettu"
2928
+
2929
+ #: components/manage/Rules/Rules
2930
+ #: components/manage/Toolbar/More
2931
+ # defaultMessage: Rules
2932
+ msgid "Rules"
2933
+ msgstr "Säännöt"
2934
+
2935
+ #: components/manage/Controlpanels/Rules/ConfigureRule
2936
+ # defaultMessage: Rules execute when a triggering event occurs. Rule actions will only be invoked if all the rule's conditions are met. You can add new actions and conditions using the buttons below.
2937
+ msgid "Rules execute when a triggering event occurs. Rule actions will only be invoked if all the rule's conditions are met. You can add new actions and conditions using the buttons below."
2938
+ msgstr ""
2939
+
2940
+ #: components/manage/Add/Add
2941
+ #: components/manage/Controlpanels/ContentType
2942
+ #: components/manage/Controlpanels/ContentTypeLayout
2943
+ #: components/manage/Controlpanels/ContentTypeSchema
2944
+ #: components/manage/Controlpanels/Controlpanel
2945
+ #: components/manage/Controlpanels/Rules/AddRule
2946
+ #: components/manage/Controlpanels/Rules/EditRule
2947
+ #: components/manage/Edit/Edit
2948
+ #: components/manage/Form/ModalForm
2949
+ #: components/manage/Sharing/Sharing
2950
+ #: helpers/MessageLabels/MessageLabels
2951
+ # defaultMessage: Save
2952
+ msgid "Save"
2953
+ msgstr "Tallenna"
2954
+
2955
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
2956
+ # defaultMessage: Save
2957
+ msgid "Save recurrence"
2958
+ msgstr "Tallenna toistuminen"
2959
+
2960
+ #: helpers/MessageLabels/MessageLabels
2961
+ # defaultMessage: Saved
2962
+ msgid "Saved"
2963
+ msgstr "Tallennettu"
2964
+
2965
+ #: components/manage/Contents/ContentsItem
2966
+ # defaultMessage: Scheduled
2967
+ msgid "Scheduled"
2968
+ msgstr ""
2969
+
2970
+ #: components/manage/Controlpanels/ContentTypesActions
2971
+ # defaultMessage: Schema
2972
+ msgid "Schema"
2973
+ msgstr "Skeema"
2974
+
2975
+ #: components/manage/Controlpanels/ContentTypeSchema
2976
+ # defaultMessage: Schema updates
2977
+ msgid "Schema updates"
2978
+ msgstr "Skeemapäivitykset"
2979
+
2980
+ #: components/manage/BlockChooser/BlockChooserSearch
2981
+ #: components/manage/Blocks/Search/components/SearchInput
2982
+ #: components/manage/Blocks/Search/layout/LeftColumnFacets
2983
+ #: components/manage/Blocks/Search/layout/RightColumnFacets
2984
+ #: components/manage/Blocks/Search/layout/TopSideFacets
2985
+ #: components/manage/Blocks/Search/schema
2986
+ #: components/theme/Search/Search
2987
+ #: components/theme/SearchWidget/SearchWidget
2988
+ # defaultMessage: Search
2989
+ msgid "Search"
2990
+ msgstr "Haku"
2991
+
2992
+ #: components/manage/Sidebar/ObjectBrowserBody
2993
+ # defaultMessage: Search SVG
2994
+ msgid "Search SVG"
2995
+ msgstr "Etsi SVG"
2996
+
2997
+ #: components/theme/SearchWidget/SearchWidget
2998
+ # defaultMessage: Search Site
2999
+ msgid "Search Site"
3000
+ msgstr "Hae sisältöä"
3001
+
3002
+ #: components/manage/Blocks/Search/schema
3003
+ # defaultMessage: Search block
3004
+ msgid "Search block"
3005
+ msgstr "Haku"
3006
+
3007
+ #: components/manage/Blocks/Search/schema
3008
+ # defaultMessage: Search button label
3009
+ msgid "Search button label"
3010
+ msgstr "Hakunapin nimike"
3011
+
3012
+ #: components/manage/Sidebar/ObjectBrowserBody
3013
+ # defaultMessage: Search content
3014
+ msgid "Search content"
3015
+ msgstr "Hae sisältöä"
3016
+
3017
+ #: components/manage/Sharing/Sharing
3018
+ # defaultMessage: Search for user or group
3019
+ msgid "Search for user or group"
3020
+ msgstr "Hae käyttäjiä tai ryhmiä"
3021
+
3022
+ #: helpers/MessageLabels/MessageLabels
3023
+ # defaultMessage: Search group…
3024
+ msgid "Search group…"
3025
+ msgstr "Etsi ryhmää…"
3026
+
3027
+ #: components/manage/Blocks/Search/schema
3028
+ # defaultMessage: Search input label
3029
+ msgid "Search input label"
3030
+ msgstr "Hakukentän nimike"
3031
+
3032
+ #: components/manage/Blocks/Search/components/SearchDetails
3033
+ #: components/theme/Search/Search
3034
+ # defaultMessage: Search results
3035
+ msgid "Search results"
3036
+ msgstr "Hakutulokset"
3037
+
3038
+ #: components/theme/Search/Search
3039
+ # defaultMessage: Search results for {term}
3040
+ msgid "Search results for {term}"
3041
+ msgstr "Hakutulokset: {term}"
3042
+
3043
+ #: helpers/MessageLabels/MessageLabels
3044
+ # defaultMessage: Search sources by title or path
3045
+ msgid "Search sources by title or path"
3046
+ msgstr ""
3047
+
3048
+ #: helpers/MessageLabels/MessageLabels
3049
+ # defaultMessage: Search targets by title or path
3050
+ msgid "Search targets by title or path"
3051
+ msgstr ""
3052
+
3053
+ #: helpers/MessageLabels/MessageLabels
3054
+ # defaultMessage: Search users…
3055
+ msgid "Search users…"
3056
+ msgstr "Etsi käyttäjiä…"
3057
+
3058
+ #: components/manage/Blocks/Search/components/SearchDetails
3059
+ # defaultMessage: Searched for: <em>{searchedtext}</em>.
3060
+ msgid "Searched for: <em>{searchedtext}</em>."
3061
+ msgstr "Etsi: <em>{searchedtext}</em>."
3062
+
3063
+ #: components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField
3064
+ # defaultMessage: Second
3065
+ msgid "Second"
3066
+ msgstr "Sekunti"
3067
+
3068
+ #: components/manage/Blocks/Search/schema
3069
+ # defaultMessage: Section title
3070
+ msgid "Section title"
3071
+ msgstr "Osion otsikko"
3072
+
3073
+ #: components/manage/Controlpanels/Aliases
3074
+ #: components/manage/Rules/Rules
3075
+ #: components/manage/Sidebar/ObjectBrowserNav
3076
+ #: helpers/MessageLabels/MessageLabels
3077
+ # defaultMessage: Select
3078
+ msgid "Select"
3079
+ msgstr "Valitse"
3080
+
3081
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
3082
+ # defaultMessage: Select a date to add to recurrence
3083
+ msgid "Select a date to add to recurrence"
3084
+ msgstr "Valitse toistumiseen lisättävä päivä"
3085
+
3086
+ #: components/manage/Contents/Contents
3087
+ # defaultMessage: Select columns to show
3088
+ msgid "Select columns to show"
3089
+ msgstr "Näytettävät sarakkeet"
3090
+
3091
+ #: helpers/MessageLabels/MessageLabels
3092
+ # defaultMessage: Select relation
3093
+ msgid "Select relation"
3094
+ msgstr ""
3095
+
3096
+ #: components/manage/Contents/ContentsWorkflowModal
3097
+ # defaultMessage: Select the transition to be used for modifying the items state.
3098
+ msgid "Select the transition to be used for modifying the items state."
3099
+ msgstr "Valitse tilasiirtymä, jolla sisällön julkisuutta muutetaan."
3100
+
3101
+ #: helpers/MessageLabels/MessageLabels
3102
+ # defaultMessage: Selected
3103
+ msgid "Selected"
3104
+ msgstr ""
3105
+
3106
+ #: components/manage/Widgets/RecurrenceWidget/Occurences
3107
+ # defaultMessage: Selected dates
3108
+ msgid "Selected dates"
3109
+ msgstr "Valitse päivät"
3110
+
3111
+ #: components/manage/Sidebar/ObjectBrowserBody
3112
+ # defaultMessage: Selected items
3113
+ msgid "Selected items"
3114
+ msgstr "Valitse sisältö"
3115
+
3116
+ #: components/manage/Sidebar/ObjectBrowserBody
3117
+ # defaultMessage: of
3118
+ msgid "Selected items - x of y"
3119
+ msgstr "Valittu sisältö"
3120
+
3121
+ #: components/manage/Widgets/SchemaWidget
3122
+ # defaultMessage: Selection
3123
+ msgid "Selection"
3124
+ msgstr "Valinta"
3125
+
3126
+ #: components/manage/Blocks/Search/widgets/SelectMetadataField
3127
+ #: components/manage/Contents/Contents
3128
+ #: components/manage/Widgets/ArrayWidget
3129
+ #: components/manage/Widgets/SelectAutoComplete
3130
+ #: components/manage/Widgets/SelectWidget
3131
+ #: components/manage/Widgets/TokenWidget
3132
+ # defaultMessage: Select…
3133
+ msgid "Select…"
3134
+ msgstr "Valitse…"
3135
+
3136
+ #: components/theme/ContactForm/ContactForm
3137
+ # defaultMessage: Send
3138
+ msgid "Send"
3139
+ msgstr "Lähetä"
3140
+
3141
+ #: helpers/MessageLabels/MessageLabels
3142
+ # defaultMessage: Send a confirmation mail with a link to set the password.
3143
+ msgid "Send a confirmation mail with a link to set the password."
3144
+ msgstr "Lähetä vahvistusviesti ja linkki salasanan asettamista varten."
3145
+
3146
+ #: components/theme/PasswordReset/PasswordReset
3147
+ # defaultMessage: Set my password
3148
+ msgid "Set my password"
3149
+ msgstr "Vaihda salasanani"
3150
+
3151
+ #: components/theme/PasswordReset/PasswordReset
3152
+ # defaultMessage: Set your password
3153
+ msgid "Set your password"
3154
+ msgstr "Vaihda salasanasi"
3155
+
3156
+ #: components/manage/Sidebar/Sidebar
3157
+ # defaultMessage: Settings
3158
+ msgid "Settings"
3159
+ msgstr "Asetukset"
3160
+
3161
+ #: components/manage/Sharing/Sharing
3162
+ #: components/manage/Toolbar/More
3163
+ # defaultMessage: Sharing
3164
+ msgid "Sharing"
3165
+ msgstr "Käyttöoikeudet"
3166
+
3167
+ #: components/manage/Sharing/Sharing
3168
+ # defaultMessage: Sharing for {title}
3169
+ msgid "Sharing for {title}"
3170
+ msgstr "{title} – käyttöoikeudet"
3171
+
3172
+ #: components/manage/Widgets/SchemaWidget
3173
+ #: components/manage/Widgets/SelectWidget
3174
+ #: components/manage/Widgets/WysiwygWidget
3175
+ # defaultMessage: Short Name
3176
+ msgid "Short Name"
3177
+ msgstr "Lyhyt nimi"
3178
+
3179
+ #: components/manage/Contents/ContentsRenameModal
3180
+ # defaultMessage: Short name
3181
+ msgid "Short name"
3182
+ msgstr "Lyhyt nimi"
3183
+
3184
+ #: components/manage/Controlpanels/Aliases
3185
+ #: components/theme/Pagination/Pagination
3186
+ # defaultMessage: Show
3187
+ msgid "Show"
3188
+ msgstr "Näytä"
3189
+
3190
+ #: helpers/MessageLabels/MessageLabels
3191
+ # defaultMessage: Show All
3192
+ msgid "Show All"
3193
+ msgstr "Näytä kaikki"
3194
+
3195
+ #: components/theme/Comments/Comments
3196
+ # defaultMessage: Show Replies
3197
+ msgid "Show Replies"
3198
+ msgstr "Näytä vastaukset"
3199
+
3200
+ #: components/manage/Blocks/Search/components/Facets
3201
+ # defaultMessage: Show filters
3202
+ msgid "Show filters"
3203
+ msgstr ""
3204
+
3205
+ #: helpers/MessageLabels/MessageLabels
3206
+ # defaultMessage: Show groups of users below
3207
+ msgid "Show groups of users below"
3208
+ msgstr "Näytä käyttäjäryhmät alapuolella"
3209
+
3210
+ #: components/manage/Widgets/ObjectListWidget
3211
+ # defaultMessage: Show item
3212
+ msgid "Show item"
3213
+ msgstr "Näytä kohde"
3214
+
3215
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
3216
+ # defaultMessage: Show potential sources. Not only objects that are source of some relation.
3217
+ msgid "Show potential sources. Not only objects that are source of some relation."
3218
+ msgstr ""
3219
+
3220
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
3221
+ # defaultMessage: Show potential targets. Not only objects that are target of some relation.
3222
+ msgid "Show potential targets. Not only objects that are target of some relation."
3223
+ msgstr ""
3224
+
3225
+ #: components/manage/Blocks/Search/schema
3226
+ # defaultMessage: Show search button?
3227
+ msgid "Show search button?"
3228
+ msgstr "Näytä hakupainike?"
3229
+
3230
+ #: components/manage/Blocks/Search/schema
3231
+ # defaultMessage: Show search input?
3232
+ msgid "Show search input?"
3233
+ msgstr "Näytä hakukenttä?"
3234
+
3235
+ #: components/manage/Blocks/Search/schema
3236
+ # defaultMessage: Show sorting?
3237
+ msgid "Show sorting?"
3238
+ msgstr "Näytä lajittelu?"
3239
+
3240
+ #: components/manage/Blocks/Search/schema
3241
+ # defaultMessage: Show total results
3242
+ msgid "Show total results"
3243
+ msgstr "Näytä tulokset"
3244
+
3245
+ #: components/manage/Sidebar/Sidebar
3246
+ # defaultMessage: Shrink sidebar
3247
+ msgid "Shrink sidebar"
3248
+ msgstr "Kutista sivupalkki"
3249
+
3250
+ #: components/manage/Toolbar/Toolbar
3251
+ # defaultMessage: Shrink toolbar
3252
+ msgid "Shrink toolbar"
3253
+ msgstr "Kutista työkalupalkki"
3254
+
3255
+ #: components/theme/Login/Login
3256
+ # defaultMessage: Sign in to start session
3257
+ msgid "Sign in to start session"
3258
+ msgstr "Kirjaudu sisään"
3259
+
3260
+ #: components/theme/Logo/Logo
3261
+ # defaultMessage: Site
3262
+ msgid "Site"
3263
+ msgstr "Sivusto"
3264
+
3265
+ #: components/theme/NotFound/NotFound
3266
+ #: components/theme/Unauthorized/Unauthorized
3267
+ # defaultMessage: Site Administration
3268
+ msgid "Site Administration"
3269
+ msgstr "Sivuston ylläpito"
3270
+
3271
+ #: components/manage/Controlpanels/Controlpanels
3272
+ #: components/manage/Toolbar/PersonalTools
3273
+ # defaultMessage: Site Setup
3274
+ msgid "Site Setup"
3275
+ msgstr "Sivuston asetukset"
3276
+
3277
+ #: components/theme/Sitemap/Sitemap
3278
+ # defaultMessage: Sitemap
3279
+ msgid "Sitemap"
3280
+ msgstr "Sivukartta"
3281
+
3282
+ #: components/theme/View/ImageView
3283
+ # defaultMessage: Size: {size}
3284
+ msgid "Size: {size}"
3285
+ msgstr "Koko: {size}"
3286
+
3287
+ #: components/manage/Widgets/ImageSizeWidget
3288
+ # defaultMessage: Small
3289
+ msgid "Small"
3290
+ msgstr "Pieni"
3291
+
3292
+ #: components/manage/Controlpanels/Relations/Relations
3293
+ # defaultMessage: Some relations are broken. Please fix.
3294
+ msgid "Some relations are broken. Please fix."
3295
+ msgstr ""
3296
+
3297
+ #: error
3298
+ # defaultMessage: Sorry, something went wrong with your request
3299
+ msgid "Sorry, something went wrong with your request"
3300
+ msgstr "Anteeksi, sivua ladattaessa jotain meni pieleen."
3301
+
3302
+ #: components/manage/Controlpanels/UndoControlpanel
3303
+ # defaultMessage: Sort by
3304
+ msgid "Sort By"
3305
+ msgstr "Lajittele"
3306
+
3307
+ #: components/theme/Search/Search
3308
+ # defaultMessage: Sort by:
3309
+ msgid "Sort By:"
3310
+ msgstr "Järjestys:"
3311
+
3312
+ #: components/manage/Blocks/Search/components/SortOn
3313
+ #: components/manage/Widgets/QuerySortOnWidget
3314
+ #: components/manage/Widgets/QuerystringWidget
3315
+ # defaultMessage: Sort on
3316
+ msgid "Sort on"
3317
+ msgstr "Järjestys"
3318
+
3319
+ #: components/manage/Blocks/Search/schema
3320
+ # defaultMessage: Sort on options
3321
+ msgid "Sort on options"
3322
+ msgstr "Lajittelun vaihtoehdot"
3323
+
3324
+ #: components/manage/Controlpanels/UndoControlpanel
3325
+ # defaultMessage: Sort transactions by User-Name, Path or Date
3326
+ msgid "Sort transactions by User-Name, Path or Date"
3327
+ msgstr "Lajittele nimen, polun tai päivämäärän perusteella"
3328
+
3329
+ #: components/manage/Controlpanels/UndoControlpanel
3330
+ # defaultMessage: Sorted
3331
+ msgid "Sorted"
3332
+ msgstr "Lajiteltu"
3333
+
3334
+ #: components/manage/Blocks/HTML/Edit
3335
+ #: components/manage/Blocks/Image/schema
3336
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
3337
+ # defaultMessage: Source
3338
+ msgid "Source"
3339
+ msgstr "Lähde"
3340
+
3341
+ #: components/manage/Blocks/Video/Edit
3342
+ # defaultMessage: Specify a youtube video or playlist url
3343
+ msgid "Specify a youtube video or playlist url"
3344
+ msgstr "Syötä Youtube-videon tai soittolistan URL."
3345
+
3346
+ #: components/manage/Diff/Diff
3347
+ # defaultMessage: Split
3348
+ msgid "Split"
3349
+ msgstr "Halkaise"
3350
+
3351
+ #: components/manage/Blocks/Search/components/DateRangeFacet
3352
+ #: components/manage/Contents/Contents
3353
+ # defaultMessage: Start Date
3354
+ msgid "Start Date"
3355
+ msgstr "Aloituspäivä"
3356
+
3357
+ #: components/manage/Widgets/RecurrenceWidget/Occurences
3358
+ # defaultMessage: Start of the recurrence
3359
+ msgid "Start of the recurrence"
3360
+ msgstr "Toistumisen aloituspäivä"
3361
+
3362
+ #: components/theme/PasswordReset/RequestPasswordReset
3363
+ # defaultMessage: Start password reset
3364
+ msgid "Start password reset"
3365
+ msgstr "Aloita salasanan vaihtaminen"
3366
+
3367
+ #: components/manage/Contents/Contents
3368
+ #: components/manage/Workflow/Workflow
3369
+ #: components/theme/View/TabularView
3370
+ # defaultMessage: State
3371
+ msgid "State"
3372
+ msgstr "Julkisuus"
3373
+
3374
+ #: components/manage/Controlpanels/Rules/Rules
3375
+ # defaultMessage: Status
3376
+ msgid "Status"
3377
+ msgstr "Tila"
3378
+
3379
+ #: components/manage/Multilingual/CompareLanguages
3380
+ # defaultMessage: Stop compare
3381
+ msgid "Stop compare"
3382
+ msgstr "Lopeta vertailu"
3383
+
3384
+ #: components/manage/Widgets/SchemaWidget
3385
+ # defaultMessage: String
3386
+ msgid "String"
3387
+ msgstr "Merkkijono"
3388
+
3389
+ #: components/manage/Blocks/Table/Edit
3390
+ # defaultMessage: Alternate row background color
3391
+ msgid "Stripe alternate rows with color"
3392
+ msgstr "Väritä joka toinen rivi"
3393
+
3394
+ #: helpers/Extensions/withBlockSchemaEnhancer
3395
+ # defaultMessage: Styling
3396
+ msgid "Styling"
3397
+ msgstr "Tyyli"
3398
+
3399
+ #: components/theme/ContactForm/ContactForm
3400
+ # defaultMessage: Subject
3401
+ msgid "Subject"
3402
+ msgstr "Aihe"
3403
+
3404
+ #: components/manage/Actions/Actions
3405
+ #: components/manage/Aliases/Aliases
3406
+ #: components/manage/Contents/Contents
3407
+ #: components/manage/Controlpanels/AddonsControlpanel
3408
+ #: components/manage/Controlpanels/Aliases
3409
+ #: components/manage/Controlpanels/ContentTypes
3410
+ #: components/manage/Controlpanels/ContentTypeSchema
3411
+ #: components/manage/Controlpanels/Rules/AddRule
3412
+ #: components/manage/Controlpanels/Rules/ConfigureRule
3413
+ #: components/manage/Controlpanels/Rules/EditRule
3414
+ #: components/manage/Controlpanels/Rules/Rules
3415
+ #: components/manage/Controlpanels/UndoControlpanel
3416
+ #: components/manage/Multilingual/ManageTranslations
3417
+ #: components/manage/Preferences/ChangePassword
3418
+ #: components/manage/Preferences/PersonalPreferences
3419
+ #: components/manage/Rules/Rules
3420
+ #: components/theme/ContactForm/ContactForm
3421
+ #: helpers/MessageLabels/MessageLabels
3422
+ # defaultMessage: Success
3423
+ msgid "Success"
3424
+ msgstr "Onnistui"
3425
+
3426
+ #: components/manage/Controlpanels/UndoControlpanel
3427
+ # defaultMessage: Successfully undone transactions
3428
+ msgid "Successfully Undone Transactions"
3429
+ msgstr "Toiminnot peruttu onnistuneesti"
3430
+
3431
+ #: config/Blocks
3432
+ # defaultMessage: Summary
3433
+ msgid "Summary"
3434
+ msgstr "Yhteenveto"
3435
+
3436
+ #: config/Views
3437
+ # defaultMessage: Summary view
3438
+ msgid "Summary view"
3439
+ msgstr "Yhteenvetonäkymä"
3440
+
3441
+ #: components/theme/LanguageSelector/LanguageSelector
3442
+ # defaultMessage: Switch to
3443
+ msgid "Switch to"
3444
+ msgstr "Vaihda"
3445
+
3446
+ #: components/manage/Blocks/Table/Edit
3447
+ # defaultMessage: Table
3448
+ msgid "Table"
3449
+ msgstr "Taulukkoa"
3450
+
3451
+ #: components/manage/Blocks/ToC/variations/DefaultTocRenderer
3452
+ #: components/manage/Blocks/ToC/variations/HorizontalMenu
3453
+ # defaultMessage: Table of Contents
3454
+ msgid "Table of Contents"
3455
+ msgstr "Sisällys"
3456
+
3457
+ #: config/Views
3458
+ # defaultMessage: Tabular view
3459
+ msgid "Tabular view"
3460
+ msgstr "Taulukkonäkymä"
3461
+
3462
+ #: components/manage/Contents/Contents
3463
+ #: components/manage/Contents/ContentsTagsModal
3464
+ # defaultMessage: Tags
3465
+ msgid "Tags"
3466
+ msgstr "Tagit eli avainsanat"
3467
+
3468
+ #: components/manage/Contents/ContentsTagsModal
3469
+ # defaultMessage: Tags to add
3470
+ msgid "Tags to add"
3471
+ msgstr "Lisättävät tagit"
3472
+
3473
+ #: components/manage/Contents/ContentsTagsModal
3474
+ # defaultMessage: Tags to remove
3475
+ msgid "Tags to remove"
3476
+ msgstr "Poistettavat tagit"
3477
+
3478
+ #: components/manage/Blocks/Teaser/schema
3479
+ #: components/manage/Controlpanels/Aliases
3480
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
3481
+ # defaultMessage: Target
3482
+ msgid "Target"
3483
+ msgstr "Kohde"
3484
+
3485
+ #: components/manage/Controlpanels/Aliases
3486
+ # defaultMessage: Target Path (Required)
3487
+ msgid "Target Path (Required)"
3488
+ msgstr "Kohteen polku (pakollinen)"
3489
+
3490
+ #: components/manage/Controlpanels/DatabaseInformation
3491
+ # defaultMessage: Target memory size per cache in bytes
3492
+ msgid "Target memory size per cache in bytes"
3493
+ msgstr "Välimuistin tavoitekoko tavuina"
3494
+
3495
+ #: components/manage/Controlpanels/DatabaseInformation
3496
+ # defaultMessage: Target number of objects in memory per cache
3497
+ msgid "Target number of objects in memory per cache"
3498
+ msgstr "Välimuistin tavoitekoko olioiden määrässä"
3499
+
3500
+ #: components/manage/Controlpanels/Aliases
3501
+ # defaultMessage: Target url path must start with a slash.
3502
+ msgid "Target url path must start with a slash."
3503
+ msgstr "Kohdeosoitteen tulee alkaa kauttaviivalla."
3504
+
3505
+ #: components/manage/Blocks/Teaser/schema
3506
+ # defaultMessage: Teaser
3507
+ msgid "Teaser"
3508
+ msgstr ""
3509
+
3510
+ #: components/manage/Widgets/SchemaWidget
3511
+ # defaultMessage: Text
3512
+ msgid "Text"
3513
+ msgstr "Teksti"
3514
+
3515
+ #: components/theme/ConnectionRefused/ConnectionRefused
3516
+ #: components/theme/CorsError/CorsError
3517
+ #: components/theme/NotFound/NotFound
3518
+ #: components/theme/RequestTimeout/RequestTimeout
3519
+ #: components/theme/Unauthorized/Unauthorized
3520
+ # defaultMessage: Thank you.
3521
+ msgid "Thank you."
3522
+ msgstr "Kiitos."
3523
+
3524
+ #: components/manage/Controlpanels/DatabaseInformation
3525
+ # defaultMessage: The Database Manager allow you to view database status information
3526
+ msgid "The Database Manager allow you to view database status information"
3527
+ msgstr "Tietokantamanageri sallii sinun katsoa tietokannan tilannetietoa."
3528
+
3529
+ #: components/theme/RequestTimeout/RequestTimeout
3530
+ # defaultMessage: The backend is not responding, due to a server timeout or a connection problem of your device. Please check your connection and try again.
3531
+ msgid "The backend is not responding, due to a server timeout or a connection problem of your device. Please check your connection and try again."
3532
+ msgstr "Sivuston taustapalvelu ei vastaa, johtuen aikakatkaisusta tai verkkovirheestä laitteessasi. Varmista yhteyden toimivuus ja kokeile uudelleen."
3533
+
3534
+ #: components/theme/ConnectionRefused/ConnectionRefused
3535
+ # defaultMessage: The backend is not responding, please check if you have started Plone, check your project's configuration object apiPath (or if you are using the internal proxy, devProxyToApiPath) or the RAZZLE_API_PATH Volto's environment variable.
3536
+ msgid "The backend is not responding, please check if you have started Plone, check your project's configuration object apiPath (or if you are using the internal proxy, devProxyToApiPath) or the RAZZLE_API_PATH Volto's environment variable."
3537
+ msgstr ""
3538
+
3539
+ #: components/theme/CorsError/CorsError
3540
+ # defaultMessage: The backend is responding, but the CORS headers are not configured properly and the browser has denied the access to the backend resources.
3541
+ msgid "The backend is responding, but the CORS headers are not configured properly and the browser has denied the access to the backend resources."
3542
+ msgstr ""
3543
+
3544
+ #: components/theme/CorsError/CorsError
3545
+ # defaultMessage: The backend server of your website is not answering, we apologize for the inconvenience. Please try to re-load the page and try again. If the problem persists please contact the site administrators.
3546
+ msgid "The backend server of your website is not answering, we apologize for the inconvenience. Please try to re-load the page and try again. If the problem persists please contact the site administrators."
3547
+ msgstr ""
3548
+
3549
+ #: components/manage/Blocks/Search/schema
3550
+ # defaultMessage: The button presence disables the live search, the query is issued when you press ENTER
3551
+ msgid "The button presence disables the live search, the query is issued when you press ENTER"
3552
+ msgstr "Napin näyttäminen poistaa live-haun käytöstä. Haku käynnistetään kun painat ENTER"
3553
+
3554
+ #: components/manage/Rules/Rules
3555
+ # defaultMessage: The following content rules are active in this Page. Use the content rules control panel to create new rules or delete or modify existing ones.
3556
+ msgid "The following content rules are active in this Page. Use the content rules control panel to create new rules or delete or modify existing ones."
3557
+ msgstr "Seuraavat sisältösäännöt ovat voimassa tällä sivulla. Käytä sisältösääntöjen hallintapaneelia luodaksesi uusia sääntöjä tai poistaaksesi olemassa olevia. "
3558
+
3559
+ #: components/manage/Controlpanels/UpgradeControlPanel
3560
+ # defaultMessage: The following list shows which upgrade steps are going to be run. Upgrading sometimes performs a catalog/security update, which may take a long time on large sites. Be patient.
3561
+ msgid "The following list shows which upgrade steps are going to be run. Upgrading sometimes performs a catalog/security update, which may take a long time on large sites. Be patient."
3562
+ msgstr ""
3563
+
3564
+ #: components/manage/Contents/Contents
3565
+ # defaultMessage: The item could not be deleted.
3566
+ msgid "The item could not be deleted."
3567
+ msgstr "Tätä kohdetta ei voitu poistaa."
3568
+
3569
+ #: components/theme/View/LinkView
3570
+ # defaultMessage: The link address is:
3571
+ msgid "The link address is:"
3572
+ msgstr "Linkin osoite on:"
3573
+
3574
+ #: components/manage/Aliases/Aliases
3575
+ # defaultMessage: The provided alternative url already exists!
3576
+ msgid "The provided alternative url already exists!"
3577
+ msgstr "Ehdotettu vaihtoehtoinen URL on jo olemassa!"
3578
+
3579
+ #: components/theme/Register/Register
3580
+ # defaultMessage: The registration process has been successful. Please check your e-mail inbox for information on how activate your account.
3581
+ msgid "The registration process has been successful. Please check your e-mail inbox for information on how activate your account."
3582
+ msgstr "Rekisteröinti onnistui. Tarkista, saitko sähköpostiisi ohjeet käyttäjätunnuksesi aktivoimiseksi."
3583
+
3584
+ #: components/manage/Controlpanels/Controlpanels
3585
+ #: components/manage/Controlpanels/UpgradeControlPanel
3586
+ # defaultMessage: The site configuration is outdated and needs to be upgraded.
3587
+ msgid "The site configuration is outdated and needs to be upgraded."
3588
+ msgstr "Sivuston konfiguraatio on vanhentunut ja se pitää päivittää."
3589
+
3590
+ #: components/manage/Toolbar/More
3591
+ # defaultMessage: The working copy was discarded
3592
+ msgid "The working copy was discarded"
3593
+ msgstr "Työkopio poistettiin"
3594
+
3595
+ #: components/theme/Footer/Footer
3596
+ # defaultMessage: The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends.
3597
+ msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
3598
+ msgstr "{plonecms} {copyright} 2000-{current_year} {plonefoundation} ja ystävien toimesta."
3599
+
3600
+ #: components/theme/CorsError/CorsError
3601
+ # defaultMessage: There is a configuration problem on the backend
3602
+ msgid "There is a configuration problem on the backend"
3603
+ msgstr "Taustapalvelussa havaittiin konfiguraatio-ongelma"
3604
+
3605
+ #: components/manage/Controlpanels/UpgradeControlPanel
3606
+ # defaultMessage: There was an error with the upgrade.
3607
+ msgid "There was an error with the upgrade."
3608
+ msgstr "Päivityksessä tapahtui virhe."
3609
+
3610
+ #: components/manage/Form/InlineForm
3611
+ # defaultMessage: There were some errors
3612
+ msgid "There were some errors"
3613
+ msgstr "Lomakkeesta löytyi virheitä"
3614
+
3615
+ #: components/manage/Form/ModalForm
3616
+ #: helpers/MessageLabels/MessageLabels
3617
+ # defaultMessage: There were some errors.
3618
+ msgid "There were some errors."
3619
+ msgstr "Löytyi joitakin puutteita tai virheitä."
3620
+
3621
+ #: components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField
3622
+ # defaultMessage: Third
3623
+ msgid "Third"
3624
+ msgstr "Kolmas"
3625
+
3626
+ #: components/manage/Contents/Contents
3627
+ # defaultMessage: This Page is referenced by the following items:
3628
+ msgid "This Page is referenced by the following items:"
3629
+ msgstr "Tähän sivuun viitataan seuraavista:"
3630
+
3631
+ #: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
3632
+ # defaultMessage: This has an ongoing working copy in {title}
3633
+ msgid "This has an ongoing working copy in {title}"
3634
+ msgstr ""
3635
+
3636
+ #: components/manage/Widgets/IdWidget
3637
+ # defaultMessage: This is a reserved name and can't be used
3638
+ msgid "This is a reserved name and can't be used"
3639
+ msgstr ""
3640
+
3641
+ #: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
3642
+ # defaultMessage: This is a working copy of {title}
3643
+ msgid "This is a working copy of {title}"
3644
+ msgstr ""
3645
+
3646
+ #: components/manage/LockingToastsFactory/LockingToastsFactory
3647
+ # defaultMessage: This item was locked by {creator} on {date}
3648
+ msgid "This item was locked by {creator} on {date}"
3649
+ msgstr "Tämä kohde oli lukittu {creator} toimesta {date}"
3650
+
3651
+ #: components/manage/Contents/ContentsRenameModal
3652
+ # defaultMessage: This name will be displayed in the URL.
3653
+ msgid "This name will be displayed in the URL."
3654
+ msgstr "Tämä on osa sivun näkyvää osoitetta selaimen osoiterivillä."
3655
+
3656
+ #: components/theme/NotFound/NotFound
3657
+ # defaultMessage: This page does not seem to exist…
3658
+ msgid "This page does not seem to exist…"
3659
+ msgstr "Tätä sivua ei näytä olevan olemassa…"
3660
+
3661
+ #: components/manage/Controlpanels/Rules/ConfigureRule
3662
+ # defaultMessage: This rule is assigned to the following locations:
3663
+ msgid "This rule is assigned to the following locations:"
3664
+ msgstr "Tämä sääntö on kohdistettu seuraaviin sijainteihin:"
3665
+
3666
+ #: components/manage/Widgets/DatetimeWidget
3667
+ # defaultMessage: Time
3668
+ msgid "Time"
3669
+ msgstr "Aika"
3670
+
3671
+ #: components/manage/Blocks/HeroImageLeft/Edit
3672
+ #: components/manage/Blocks/Teaser/schema
3673
+ #: components/manage/Contents/Contents
3674
+ #: components/manage/Contents/ContentsRenameModal
3675
+ #: components/manage/Controlpanels/ContentTypes
3676
+ #: components/manage/Widgets/SchemaWidget
3677
+ #: components/manage/Widgets/SelectWidget
3678
+ #: components/manage/Widgets/WysiwygWidget
3679
+ #: components/theme/View/TabularView
3680
+ #: helpers/MessageLabels/MessageLabels
3681
+ # defaultMessage: Title
3682
+ msgid "Title"
3683
+ msgstr "Nimike"
3684
+
3685
+ #: components/manage/Controlpanels/Rules/AddRule
3686
+ #: components/manage/Controlpanels/Rules/EditRule
3687
+ # defaultMessage: Title field error. Value not provided or already existing.
3688
+ msgid "Title field error. Value not provided or already existing."
3689
+ msgstr "Otsikkovirhe. Arvoa ei syötetty tai se on jo olemassa."
3690
+
3691
+ #: components/manage/Controlpanels/DatabaseInformation
3692
+ # defaultMessage: Total active and non-active objects
3693
+ msgid "Total active and non-active objects"
3694
+ msgstr "Aktiivisten ja ei-aktiivisten kohteiden määrä"
3695
+
3696
+ #: components/manage/Contents/Contents
3697
+ # defaultMessage: Total comments
3698
+ msgid "Total comments"
3699
+ msgstr "Kommentteja"
3700
+
3701
+ #: components/manage/Contents/Contents
3702
+ # defaultMessage: Total items to be deleted:
3703
+ msgid "Total items to be deleted:"
3704
+ msgstr ""
3705
+
3706
+ #: components/manage/Controlpanels/DatabaseInformation
3707
+ # defaultMessage: Total number of objects in each cache
3708
+ msgid "Total number of objects in each cache"
3709
+ msgstr "Jokaisessa välimuistissa olevien kohteiden määrä"
3710
+
3711
+ #: components/manage/Controlpanels/DatabaseInformation
3712
+ # defaultMessage: Total number of objects in memory from all caches
3713
+ msgid "Total number of objects in memory from all caches"
3714
+ msgstr "Kaikissa välimuisteissa olevien kohteiden yhteismäärä"
3715
+
3716
+ #: components/manage/Controlpanels/DatabaseInformation
3717
+ # defaultMessage: Total number of objects in the database
3718
+ msgid "Total number of objects in the database"
3719
+ msgstr "Tietokannassa olevien kohteiden määrä"
3720
+
3721
+ #: components/manage/Controlpanels/UndoControlpanel
3722
+ # defaultMessage: Transactions
3723
+ msgid "Transactions"
3724
+ msgstr "Toiminnot"
3725
+
3726
+ #: components/manage/Controlpanels/UndoControlpanel
3727
+ # defaultMessage: #
3728
+ msgid "Transactions Checkbox"
3729
+ msgstr "Toiminnot"
3730
+
3731
+ #: components/manage/Controlpanels/UndoControlpanel
3732
+ # defaultMessage: Transactions have been sorted
3733
+ msgid "Transactions Have Been Sorted"
3734
+ msgstr "Toiminnot on lajiteltu"
3735
+
3736
+ #: components/manage/Controlpanels/UndoControlpanel
3737
+ # defaultMessage: Transactions have been unsorted
3738
+ msgid "Transactions Have Been Unsorted"
3739
+ msgstr "Toimintojen lajittelu on purettu"
3740
+
3741
+ #: components/manage/Add/Add
3742
+ #: components/manage/Toolbar/Types
3743
+ # defaultMessage: Translate to {lang}
3744
+ msgid "Translate to {lang}"
3745
+ msgstr "Käännä kielelle {lang}"
3746
+
3747
+ #: components/manage/Multilingual/ManageTranslations
3748
+ # defaultMessage: Translation linked
3749
+ msgid "Translation linked"
3750
+ msgstr "Käännös linkitetty"
3751
+
3752
+ #: components/manage/Multilingual/ManageTranslations
3753
+ # defaultMessage: Translation linking removed
3754
+ msgid "Translation linking removed"
3755
+ msgstr "Käännöksen linkitys poistettu"
3756
+
3757
+ #: components/manage/Controlpanels/Rules/AddRule
3758
+ #: components/manage/Controlpanels/Rules/EditRule
3759
+ # defaultMessage: Triggering event field error. Please select a value
3760
+ msgid "Triggering event field error. Please select a value"
3761
+ msgstr "Käynnistä tapahtumakentän virhe. Valtse arvo"
3762
+
3763
+ #: components/manage/Controlpanels/ContentTypes
3764
+ #: components/manage/LinksToItem/LinksToItem
3765
+ #: components/manage/Widgets/SchemaWidget
3766
+ #: components/theme/View/TabularView
3767
+ # defaultMessage: Type
3768
+ msgid "Type"
3769
+ msgstr "Sisältötyyppi"
3770
+
3771
+ #: components/manage/Blocks/Video/Edit
3772
+ # defaultMessage: Type a Video (YouTube, Vimeo or mp4) URL
3773
+ msgid "Type a Video (YouTube, Vimeo or mp4) URL"
3774
+ msgstr "Syötä videon URL (YouTube, Vimeo tai mp4)"
3775
+
3776
+ #: components/manage/Widgets/SelectAutoComplete
3777
+ # defaultMessage: Type text...
3778
+ msgid "Type text..."
3779
+ msgstr "Syötä tekstiä..."
3780
+
3781
+ #: components/manage/Blocks/Text/Edit
3782
+ # defaultMessage: Type text…
3783
+ msgid "Type text…"
3784
+ msgstr "Syötä tekstiä…"
3785
+
3786
+ #: components/manage/TextLineEdit/TextLineEdit
3787
+ # defaultMessage: Type the heading…
3788
+ msgid "Type the heading…"
3789
+ msgstr "Syötä otsikko..."
3790
+
3791
+ #: components/manage/Blocks/Title/Edit
3792
+ # defaultMessage: Type the title…
3793
+ msgid "Type the title…"
3794
+ msgstr "Syötä nimike tai otsikko…"
3795
+
3796
+ #: components/manage/Contents/Contents
3797
+ # defaultMessage: UID
3798
+ msgid "UID"
3799
+ msgstr "UID"
3800
+
3801
+ #: components/manage/Aliases/Aliases
3802
+ #: components/manage/Controlpanels/Aliases
3803
+ #: components/manage/Controlpanels/Controlpanels
3804
+ #: components/manage/Toolbar/More
3805
+ # defaultMessage: URL Management
3806
+ msgid "URL Management"
3807
+ msgstr "URL-osoitteiden hallinta"
3808
+
3809
+ #: components/manage/Aliases/Aliases
3810
+ # defaultMessage: URL Management for {title}
3811
+ msgid "URL Management for {title}"
3812
+ msgstr "URL-osoitteiden hallinta kohteelle {title}"
3813
+
3814
+ #: components/manage/Rules/Rules
3815
+ # defaultMessage: Unassign
3816
+ msgid "Unassign"
3817
+ msgstr "Poista kohdistus"
3818
+
3819
+ #: components/manage/Rules/Rules
3820
+ # defaultMessage: Unassigned
3821
+ msgid "Unassigned"
3822
+ msgstr "Kohdistus poistettu"
3823
+
3824
+ #: components/manage/Toolbar/More
3825
+ #: components/theme/Unauthorized/Unauthorized
3826
+ # defaultMessage: Unauthorized
3827
+ msgid "Unauthorized"
3828
+ msgstr "Ei pääsyä"
3829
+
3830
+ #: components/manage/Controlpanels/Controlpanels
3831
+ #: components/manage/Controlpanels/UndoControlpanel
3832
+ #: components/manage/Form/UndoToolbar
3833
+ # defaultMessage: Undo
3834
+ msgid "Undo"
3835
+ msgstr "Peruuta"
3836
+
3837
+ #: components/manage/Controlpanels/UndoControlpanel
3838
+ # defaultMessage: Undo Controlpanel
3839
+ msgid "Undo Controlpanel"
3840
+ msgstr "Peruutukset"
3841
+
3842
+ #: components/manage/BlockChooser/BlockChooser
3843
+ # defaultMessage: Unfold
3844
+ msgid "Unfold"
3845
+ msgstr "Avaa"
3846
+
3847
+ #: components/manage/Diff/Diff
3848
+ # defaultMessage: Unified
3849
+ msgid "Unified"
3850
+ msgstr "Yhdistetty"
3851
+
3852
+ #: components/manage/Controlpanels/AddonsControlpanel
3853
+ # defaultMessage: Uninstall
3854
+ msgid "Uninstall"
3855
+ msgstr "Poista asennus"
3856
+
3857
+ #: components/manage/Blocks/Block/DefaultView
3858
+ #: components/manage/Blocks/Block/Edit
3859
+ #: components/theme/View/RenderBlocks
3860
+ # defaultMessage: Unknown Block {block}
3861
+ msgid "Unknown Block"
3862
+ msgstr "Tunnistamaton palikka"
3863
+
3864
+ #: components/manage/Multilingual/ManageTranslations
3865
+ # defaultMessage: Unlink translation for
3866
+ msgid "Unlink translation for"
3867
+ msgstr "Poista käännöksen linkitys"
3868
+
3869
+ #: components/manage/Toolbar/Toolbar
3870
+ # defaultMessage: Unlock
3871
+ msgid "Unlock"
3872
+ msgstr "Avaa"
3873
+
3874
+ #: components/manage/Controlpanels/UndoControlpanel
3875
+ # defaultMessage: Unsorted
3876
+ msgid "Unsorted"
3877
+ msgstr "Lajittelu poistettu"
3878
+
3879
+ #: components/manage/Controlpanels/AddonsControlpanel
3880
+ # defaultMessage: Update
3881
+ msgid "Update"
3882
+ msgstr "Päivitä"
3883
+
3884
+ #: components/manage/Controlpanels/AddonsControlpanel
3885
+ # defaultMessage: Update installed addons
3886
+ msgid "Update installed addons"
3887
+ msgstr "Päivitä asennettuja laajennoksia"
3888
+
3889
+ #: components/manage/Controlpanels/AddonsControlpanel
3890
+ # defaultMessage: Update installed addons:
3891
+ msgid "Update installed addons:"
3892
+ msgstr "Päivitä asennetut lisäosat:"
3893
+
3894
+ #: components/manage/Controlpanels/AddonsControlpanel
3895
+ # defaultMessage: Updates available
3896
+ msgid "Updates available"
3897
+ msgstr "Päivityksiä saatavilla"
3898
+
3899
+ #: components/manage/Controlpanels/UpgradeControlPanel
3900
+ # defaultMessage: Upgrade
3901
+ msgid "Upgrade"
3902
+ msgstr "Päivitä"
3903
+
3904
+ #: components/manage/Controlpanels/UpgradeControlPanel
3905
+ # defaultMessage: Upgrade Plone Site
3906
+ msgid "Upgrade Plone Site"
3907
+ msgstr "Päivitä Plone-sivusto"
3908
+
3909
+ #: components/manage/Controlpanels/UpgradeControlPanel
3910
+ # defaultMessage: Upgrade Report
3911
+ msgid "Upgrade Report"
3912
+ msgstr "Päivitysraportti"
3913
+
3914
+ #: components/manage/Controlpanels/UpgradeControlPanel
3915
+ # defaultMessage: Upgrade Steps
3916
+ msgid "Upgrade Steps"
3917
+ msgstr "Päivityksen vaiheet"
3918
+
3919
+ #: components/manage/Contents/Contents
3920
+ # defaultMessage: Upload
3921
+ msgid "Upload"
3922
+ msgstr "Siirrä palvelimelle"
3923
+
3924
+ #: components/manage/Blocks/LeadImage/Edit
3925
+ # defaultMessage: Upload a lead image in the 'Lead Image' content field.
3926
+ msgid "Upload a lead image in the 'Lead Image' content field."
3927
+ msgstr "Tallenna nostokuva sisällön 'Nostokuva'-kentään"
3928
+
3929
+ #: components/manage/Blocks/HeroImageLeft/Edit
3930
+ # defaultMessage: Upload a new image
3931
+ msgid "Upload a new image"
3932
+ msgstr "Siirrä palvelimelle uusi kuva"
3933
+
3934
+ #: components/manage/Contents/ContentsUploadModal
3935
+ # defaultMessage: Upload files
3936
+ msgid "Upload files"
3937
+ msgstr "Lähetä palvelimelle tiedostoja"
3938
+
3939
+ #: components/manage/Contents/ContentsUploadModal
3940
+ # defaultMessage: Uploading files
3941
+ msgid "Uploading files"
3942
+ msgstr "Lähetetään tiedostoja"
3943
+
3944
+ #: components/manage/Blocks/HeroImageLeft/Edit
3945
+ #: components/manage/Blocks/Image/Edit
3946
+ # defaultMessage: Uploading image
3947
+ msgid "Uploading image"
3948
+ msgstr "Kuvaa ladataan"
3949
+
3950
+ #: components/manage/Controlpanels/Rules/AddRule
3951
+ #: components/manage/Controlpanels/Rules/EditRule
3952
+ # defaultMessage: Use the form below to define the new content rule
3953
+ msgid "Use the form below to define the new content rule"
3954
+ msgstr "Käytä alla olevaa lomaketta uuden sisältösäännön määrittelyyn"
3955
+
3956
+ #: components/manage/Controlpanels/Rules/Rules
3957
+ # defaultMessage: Use the form below to define, change or remove content rules. Rules will automatically perform actions on content when certain triggers take place. After defining rules, you may want to go to a folder to assign them, using the 'rules' item in the actions menu.
3958
+ msgid "Use the form below to define, change or remove content rules. Rules will automatically perform actions on content when certain triggers take place. After defining rules, you may want to go to a folder to assign them, using the 'rules' item in the actions menu."
3959
+ msgstr "Käytä allaolevaa lomaketta sisältösääntöjen määrittelyyn, muuttamiseen ja poistoon. Säännöt suorittavat automaattisesti toimintoja tiettyjen ehtojen perusteella. Kun sääntö on luotu ja määriteelty, voit mennä kansioon tai sivuun kohdistamaan ne käyttämällä Säännöt-kohtaa valikossa."
3960
+
3961
+ #: components/manage/Widgets/SchemaWidget
3962
+ #: components/manage/Widgets/SelectWidget
3963
+ #: components/manage/Widgets/WysiwygWidget
3964
+ # defaultMessage: Used for programmatic access to the fieldset.
3965
+ msgid "Used for programmatic access to the fieldset."
3966
+ msgstr "Tiedon koneellisessa luvussa käytettävä tekninen tunniste."
3967
+
3968
+ #: components/manage/Sharing/Sharing
3969
+ # defaultMessage: User
3970
+ msgid "User"
3971
+ msgstr "Käyttäjä"
3972
+
3973
+ #: components/manage/Controlpanels/Controlpanels
3974
+ #: helpers/MessageLabels/MessageLabels
3975
+ # defaultMessage: User Group Membership
3976
+ msgid "User Group Membership"
3977
+ msgstr "Käyttäjän ryhmäjäsenyys"
3978
+
3979
+ #: helpers/MessageLabels/MessageLabels
3980
+ # defaultMessage: User Group Settings
3981
+ msgid "User Group Settings"
3982
+ msgstr "Käyttäjän ryhmän asetukset"
3983
+
3984
+ #: helpers/MessageLabels/MessageLabels
3985
+ # defaultMessage: User created
3986
+ msgid "User created"
3987
+ msgstr "Käyttäjä luotu"
3988
+
3989
+ #: components/manage/Controlpanels/Users/UsersControlpanel
3990
+ # defaultMessage: User name
3991
+ msgid "User name"
3992
+ msgstr "Käyttäjän nimi"
3993
+
3994
+ #: helpers/MessageLabels/MessageLabels
3995
+ # defaultMessage: User roles updated
3996
+ msgid "User roles updated"
3997
+ msgstr "Käyttäjän roolit päivitetty"
3998
+
3999
+ #: helpers/MessageLabels/MessageLabels
4000
+ # defaultMessage: Username
4001
+ msgid "Username"
4002
+ msgstr "Käyttäjätunnus"
4003
+
4004
+ #: components/manage/Controlpanels/Controlpanels
4005
+ #: components/manage/Controlpanels/Users/UsersControlpanel
4006
+ #: helpers/MessageLabels/MessageLabels
4007
+ # defaultMessage: Users
4008
+ msgid "Users"
4009
+ msgstr "Käyttäjät"
4010
+
4011
+ #: components/manage/Controlpanels/Controlpanels
4012
+ # defaultMessage: Users and Groups
4013
+ msgid "Users and Groups"
4014
+ msgstr "Käyttäjät ja ryhmät"
4015
+
4016
+ #: components/manage/Aliases/Aliases
4017
+ # defaultMessage: Using this form, you can manage alternative urls for an item. This is an easy way to make an item available under two different URLs.
4018
+ msgid "Using this form, you can manage alternative urls for an item. This is an easy way to make an item available under two different URLs."
4019
+ msgstr "Tämän lomakkeen avulla voit hallita vaihtoehtoisia URL-osoitteita kohteelle. Tämä on helppo tapa saada kohde näkyviin useassa osoitteessa."
4020
+
4021
+ #: helpers/Extensions/withBlockSchemaEnhancer
4022
+ # defaultMessage: Variation
4023
+ msgid "Variation"
4024
+ msgstr "Variaatio"
4025
+
4026
+ #: components/manage/Controlpanels/Controlpanels
4027
+ #: components/manage/Controlpanels/UpgradeControlPanel
4028
+ # defaultMessage: Version Overview
4029
+ msgid "Version Overview"
4030
+ msgstr "Versiot"
4031
+
4032
+ #: components/manage/Blocks/Video/schema
4033
+ #: components/manage/Blocks/Video/VideoSidebar
4034
+ # defaultMessage: Video
4035
+ msgid "Video"
4036
+ msgstr "Video"
4037
+
4038
+ #: components/manage/Blocks/Video/schema
4039
+ # defaultMessage: Video URL
4040
+ msgid "Video URL"
4041
+ msgstr "Videon URL"
4042
+
4043
+ #: components/manage/Contents/ContentsItem
4044
+ # defaultMessage: View
4045
+ msgid "View"
4046
+ msgstr "Näytä"
4047
+
4048
+ #: components/manage/History/History
4049
+ # defaultMessage: View changes
4050
+ msgid "View changes"
4051
+ msgstr "Näytä muutokset"
4052
+
4053
+ #: components/manage/History/History
4054
+ # defaultMessage: View this revision
4055
+ msgid "View this revision"
4056
+ msgstr "Näytä tämä versio"
4057
+
4058
+ #: components/manage/Toolbar/More
4059
+ # defaultMessage: View working copy
4060
+ msgid "View working copy"
4061
+ msgstr ""
4062
+
4063
+ #: components/manage/Display/Display
4064
+ # defaultMessage: View
4065
+ msgid "Viewmode"
4066
+ msgstr "Näkymä"
4067
+
4068
+ #: components/manage/Widgets/VocabularyTermsWidget
4069
+ # defaultMessage: Vocabulary term
4070
+ msgid "Vocabulary term"
4071
+ msgstr "Sanastotermi"
4072
+
4073
+ #: components/manage/Widgets/VocabularyTermsWidget
4074
+ # defaultMessage: Title
4075
+ msgid "Vocabulary term title"
4076
+ msgstr "Sanastotermin otsikko"
4077
+
4078
+ #: components/manage/Widgets/VocabularyTermsWidget
4079
+ # defaultMessage: Vocabulary terms
4080
+ msgid "Vocabulary terms"
4081
+ msgstr "Sanastotermit"
4082
+
4083
+ #: components/manage/Controlpanels/VersionOverview
4084
+ # defaultMessage: You are running in 'debug mode'. This mode is intended for sites that are under development. This allows many configuration changes to be immediately visible, but will make your site run more slowly. To turn off debug mode, stop the server, set 'debug-mode=off' in your buildout.cfg, re-run bin/buildout and then restart the server process.
4085
+ msgid "Warning Regarding debug mode"
4086
+ msgstr "Varoitus debug-tilaa koskien"
4087
+
4088
+ #: components/theme/ConnectionRefused/ConnectionRefused
4089
+ # defaultMessage: We apologize for the inconvenience, but the backend of the site you are accessing is not available right now. Please, try again later.
4090
+ msgid "We apologize for the inconvenience, but the backend of the site you are accessing is not available right now. Please, try again later."
4091
+ msgstr "Olemme pahoillamme, mutta taustajärjestelmä ei vastaa. Ole hyvä ja kokeile myöhemmin uudelleen."
4092
+
4093
+ #: components/theme/NotFound/NotFound
4094
+ # defaultMessage: We apologize for the inconvenience, but the page you were trying to access is not at this address. You can use the links below to help you find what you are looking for.
4095
+ msgid "We apologize for the inconvenience, but the page you were trying to access is not at this address. You can use the links below to help you find what you are looking for."
4096
+ msgstr "Olemme pahoillamme, mutta tästä osoitteesta ei löytynyt mitään sisältöä."
4097
+
4098
+ #: components/theme/Forbidden/Forbidden
4099
+ # defaultMessage: We apologize for the inconvenience, but you don't have permissions on this resource.
4100
+ msgid "We apologize for the inconvenience, but you don't have permissions on this resource."
4101
+ msgstr "Olemma pahoillamme, mutta emme löytäneet oikeutta päästä tälle sivulle."
4102
+
4103
+ #: components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField
4104
+ # defaultMessage: The
4105
+ msgid "Weeek day of month"
4106
+ msgstr "Viikonpäivä"
4107
+
4108
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
4109
+ # defaultMessage: Weekday
4110
+ msgid "Weekday"
4111
+ msgstr "Viikonpäivä"
4112
+
4113
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
4114
+ # defaultMessage: Weekly
4115
+ msgid "Weekly"
4116
+ msgstr "Viikottain"
4117
+
4118
+ #: components/manage/Controlpanels/UndoControlpanel
4119
+ #: components/manage/History/History
4120
+ # defaultMessage: What
4121
+ msgid "What"
4122
+ msgstr "Mitä"
4123
+
4124
+ #: components/manage/Controlpanels/UndoControlpanel
4125
+ #: components/manage/History/History
4126
+ # defaultMessage: When
4127
+ msgid "When"
4128
+ msgstr "Milloin"
4129
+
4130
+ #: components/manage/Contents/ContentsPropertiesModal
4131
+ # defaultMessage: When this date is reached, the content will nolonger be visible in listings and searches.
4132
+ msgid "When this date is reached, the content will nolonger be visible in listings and searches."
4133
+ msgstr "Kun tähän valittu erääntymisaika koittaa, tämä sisältö poistuu navigoinnista, sisältölistauksista ja hakutuloksissa."
4134
+
4135
+ #: components/manage/Controlpanels/Rules/AddRule
4136
+ #: components/manage/Controlpanels/Rules/EditRule
4137
+ # defaultMessage: Whether or not execution of further rules should stop after this rule is executed
4138
+ msgid "Whether or not execution of further rules should stop after this rule is executed"
4139
+ msgstr "Pitäisikö sääntöjen suorittaminen pysäyttää tämän säännön suorittamisen jälkeen"
4140
+
4141
+ #: components/manage/Controlpanels/Rules/AddRule
4142
+ #: components/manage/Controlpanels/Rules/EditRule
4143
+ # defaultMessage: Whether or not other rules should be triggered by the actions launched by this rule. Activate this only if you are sure this won't create infinite loops
4144
+ msgid "Whether or not other rules should be triggered by the actions launched by this rule. Activate this only if you are sure this won't create infinite loops"
4145
+ msgstr "Pitäisikö muiden sääntöjen käynnistyä tämän säännön toimintojen perusteella. Aktivoi ainoastaan, jos olet varma ettei tämä luo loppumattomia silmukoita"
4146
+
4147
+ #: components/manage/Controlpanels/Rules/AddRule
4148
+ #: components/manage/Controlpanels/Rules/EditRule
4149
+ # defaultMessage: Whether or not the rule is currently enabled
4150
+ msgid "Whether or not the rule is currently enabled"
4151
+ msgstr "Onko sääntö voimassa vai ei"
4152
+
4153
+ #: components/manage/Controlpanels/UndoControlpanel
4154
+ #: components/manage/History/History
4155
+ # defaultMessage: Who
4156
+ msgid "Who"
4157
+ msgstr "Kuka"
4158
+
4159
+ #: components/manage/Sidebar/AlignBlock
4160
+ #: components/manage/Widgets/AlignWidget
4161
+ # defaultMessage: Wide
4162
+ msgid "Wide"
4163
+ msgstr "Leveä"
4164
+
4165
+ #: components/manage/Contents/ContentsWorkflowModal
4166
+ # defaultMessage: Updating workflow states...
4167
+ msgid "Workflow Change Loading Message"
4168
+ msgstr "Työnkulkuja päivitetään"
4169
+
4170
+ #: components/manage/Workflow/Workflow
4171
+ # defaultMessage: Workflow updated.
4172
+ msgid "Workflow updated."
4173
+ msgstr "Sisällön tila on päivitetty."
4174
+
4175
+ #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
4176
+ # defaultMessage: Yearly
4177
+ msgid "Yearly"
4178
+ msgstr "Vuosittain"
4179
+
4180
+ #: components/manage/Contents/ContentsItem
4181
+ #: components/manage/Contents/ContentsPropertiesModal
4182
+ #: components/manage/Controlpanels/ContentTypes
4183
+ # defaultMessage: Yes
4184
+ msgid "Yes"
4185
+ msgstr "Kyllä"
4186
+
4187
+ #: components/theme/Unauthorized/Unauthorized
4188
+ # defaultMessage: You are trying to access a protected resource, please {login} first.
4189
+ msgid "You are trying to access a protected resource, please {login} first."
4190
+ msgstr "Ole hyvä ja {login} nähdäksesi tämän sivun."
4191
+
4192
+ #: components/theme/OutdatedBrowser/OutdatedBrowser
4193
+ # defaultMessage: You are using an outdated browser
4194
+ msgid "You are using an outdated browser"
4195
+ msgstr "Käytät vanhentunutta selainta"
4196
+
4197
+ #: components/theme/Comments/Comments
4198
+ # defaultMessage: You can add a comment by filling out the form below. Plain text formatting.
4199
+ msgid "You can add a comment by filling out the form below. Plain text formatting."
4200
+ msgstr "Kommentoi sisältöä täyttämällä oheinen lomake."
4201
+
4202
+ #: components/manage/Sharing/Sharing
4203
+ # defaultMessage: You can control who can view and edit your item using the list below.
4204
+ msgid "You can control who can view and edit your item using the list below."
4205
+ msgstr "Tällä sivulla voit hallita, kuka voi nähdä tai muokata sisältöä."
4206
+
4207
+ #: components/manage/Diff/Diff
4208
+ # defaultMessage: You can view the difference of the revisions below.
4209
+ msgid "You can view the difference of the revisions below."
4210
+ msgstr "Tällä sivulla voit selata sisältöön tehtyjä muutoksia."
4211
+
4212
+ #: components/manage/History/History
4213
+ # defaultMessage: You can view the history of your item below.
4214
+ msgid "You can view the history of your item below."
4215
+ msgstr "Tällä sivulla näet sisällön muutoshistorian."
4216
+
4217
+ #: components/manage/Contents/Contents
4218
+ # defaultMessage: You can't paste this content here
4219
+ msgid "You can't paste this content here"
4220
+ msgstr "Liitettävä sisältö ei sopinut tänne"
4221
+
4222
+ #: components/theme/Logout/Logout
4223
+ # defaultMessage: You have been logged out from the site.
4224
+ msgid "You have been logged out from the site."
4225
+ msgstr "Olet kirjautunut ulos sivustolta."
4226
+
4227
+ #: components/manage/Controlpanels/Relations/Relations
4228
+ # defaultMessage: You have not the required permission for this control panel.
4229
+ msgid "You have not the required permission for this control panel."
4230
+ msgstr ""
4231
+
4232
+ #: components/theme/PasswordReset/RequestPasswordReset
4233
+ # defaultMessage: Your email is required for reset your password.
4234
+ msgid "Your email is required for reset your password."
4235
+ msgstr "Salasanavaihto ei ole mahdollista ilman toimivaa sähköpostiosoitetta."
4236
+
4237
+ #: components/theme/PasswordReset/PasswordReset
4238
+ # defaultMessage: Your password has been set successfully. You may now {link} with your new password.
4239
+ msgid "Your password has been set successfully. You may now {link} with your new password."
4240
+ msgstr "Salasanasi on nyt vaihdettu. Voit nyt {link} uudella salasanalla."
4241
+
4242
+ #: components/manage/Preferences/PersonalPreferences
4243
+ # defaultMessage: Your preferred language
4244
+ msgid "Your preferred language"
4245
+ msgstr "Käyttämäsi kieli"
4246
+
4247
+ #: components/manage/Controlpanels/UpgradeControlPanel
4248
+ # defaultMessage: Your site is up to date.
4249
+ msgid "Your site is up to date."
4250
+ msgstr "Sivustosi on ajan tasalla."
4251
+
4252
+ #: components/theme/PasswordReset/RequestPasswordReset
4253
+ # defaultMessage: Your username is required for reset your password.
4254
+ msgid "Your usernaame is required for reset your password."
4255
+ msgstr "Käyttäjätunnuksesi tarvitaan salasanan palautusta varten."
4256
+
4257
+ #: helpers/MessageLabels/MessageLabels
4258
+ # defaultMessage: Enter an email address. This is necessary in case the password is lost. We respect your privacy, and will not give the address away to any third parties or expose it anywhere.
4259
+ msgid "addUserFormEmailDescription"
4260
+ msgstr "Syötä sähköpostiosoitteesi. Tämä tarvitaan mahdollista salasanan palauttamista varten. Kunnioitamme yksityisyyttäsi emmekä jaa osoitetta kolmansille osapuolille tai paljasta sitä missään."
4261
+
4262
+ #: helpers/MessageLabels/MessageLabels
4263
+ # defaultMessage: Enter full name, e.g. John Smith.
4264
+ msgid "addUserFormFullnameDescription"
4265
+ msgstr "Syökä koko nimi, esim. Matti Meikäläinen."
4266
+
4267
+ #: helpers/MessageLabels/MessageLabels
4268
+ # defaultMessage: Enter your new password. Minimum 8 characters.
4269
+ msgid "addUserFormPasswordDescription"
4270
+ msgstr "Lisää salasana. Minimissään 8 merkkiä."
4271
+
4272
+ #: helpers/MessageLabels/MessageLabels
4273
+ # defaultMessage: Enter a user name, usually something like "jsmith". No spaces or special characters. Usernames and passwords are case sensitive, make sure the caps lock key is not enabled. This is the name used to log in.
4274
+ msgid "addUserFormUsernameDescription"
4275
+ msgstr "Lisää käyttäjätunnus, esim. mameikal. Älä käytä erikoismerkkejä."
4276
+
4277
+ #: components/manage/Blocks/Search/schema
4278
+ # defaultMessage: Available views
4279
+ msgid "availableViews"
4280
+ msgstr "Saatavilla olevat näkymät"
4281
+
4282
+ #: components/theme/Login/Login
4283
+ #: components/theme/PasswordReset/RequestPasswordReset
4284
+ # defaultMessage: Forgot your password?
4285
+ msgid "box_forgot_password_option"
4286
+ msgstr "Unohditko salasanasi?"
4287
+
4288
+ #: config/Blocks
4289
+ # defaultMessage: Checkbox
4290
+ msgid "checkboxFacet"
4291
+ msgstr "Valintaruutu"
4292
+
4293
+ #: components/manage/Blocks/Grid/templates
4294
+ # defaultMessage: column
4295
+ msgid "column"
4296
+ msgstr ""
4297
+
4298
+ #: components/manage/Blocks/Grid/templates
4299
+ # defaultMessage: columns
4300
+ msgid "columns"
4301
+ msgstr ""
4302
+
4303
+ #: config/Blocks
4304
+ # defaultMessage: Common
4305
+ msgid "common"
4306
+ msgstr "yleiset"
4307
+
4308
+ #: components/manage/Multilingual/CompareLanguages
4309
+ # defaultMessage: Compare to language
4310
+ msgid "compare_to"
4311
+ msgstr "Vertaa"
4312
+
4313
+ #: config/Blocks
4314
+ # defaultMessage: Date Range
4315
+ msgid "daterangeFacet"
4316
+ msgstr "Päivämäärä"
4317
+
4318
+ #: components/manage/Blocks/Block/EditBlockWrapper
4319
+ # defaultMessage: delete
4320
+ msgid "delete"
4321
+ msgstr "poista"
4322
+
4323
+ #: components/theme/OutdatedBrowser/OutdatedBrowser
4324
+ # defaultMessage: You are using {browsername} {browserversion} which is deprecated by its vendor. That means that it does not get security updates and it is not ready for current modern web features, which deteriorates the user experience. Please upgrade to a modern browser.
4325
+ msgid "deprecated_browser_notice_message"
4326
+ msgstr ""
4327
+
4328
+ #: config/Blocks
4329
+ # defaultMessage: Description
4330
+ msgid "description"
4331
+ msgstr "kuvaus"
4332
+
4333
+ #: components/theme/PasswordReset/RequestPasswordReset
4334
+ # defaultMessage: For security reasons, we store your password encrypted, and cannot mail it to you. If you would like to reset your password, fill out the form below and we will send you an email at the address you gave when you registered to start the process of resetting your password.
4335
+ msgid "description_lost_password"
4336
+ msgstr "Salasanat tallennetaan salattuina, eikä unohtuneen salasanan palauttaminen ole mahdollista. Voit kuitenkin vaihtaa salasanasi uuteen täyttämällä alla olevan lomakkeen. Lähetämme käyttäjätietojesi mukaiseen sähkpostiosoitteesen ohjeet salasanan vaihtamiseksi."
4337
+
4338
+ #: components/theme/PasswordReset/RequestPasswordReset
4339
+ # defaultMessage: Your password reset request has been mailed. It should arrive in your mailbox shortly. When you receive the message, visit the address it contains to reset your password.
4340
+ msgid "description_sent_password"
4341
+ msgstr "Lähetimme sinulle sähköpostilla ohjeet salasanan vaihtamiseksi. Sen pitäisi tulla sähköpostiisi pian. Kun saat sähköpostin, ole hyvä ja kopioi sen sisältämä osoite selaimesi osoiteriville. Osoite avaa lomakkeen salasanan vaihtamiseksi."
4342
+
4343
+ #: components/manage/Contents/ContentsItem
4344
+ # defaultMessage: Draft
4345
+ msgid "draft"
4346
+ msgstr "luonnos"
4347
+
4348
+ #: helpers/MessageLabels/MessageLabels
4349
+ # defaultMessage: Input must be valid email (something@domain.com)
4350
+ msgid "email"
4351
+ msgstr "sähköposti"
4352
+
4353
+ #: components/theme/EventDetails/EventDetails
4354
+ # defaultMessage: All dates
4355
+ msgid "event_alldates"
4356
+ msgstr "Päivät"
4357
+
4358
+ #: components/theme/EventDetails/EventDetails
4359
+ # defaultMessage: Attendees
4360
+ msgid "event_attendees"
4361
+ msgstr "Osallistujat"
4362
+
4363
+ #: components/theme/EventDetails/EventDetails
4364
+ # defaultMessage: Contact Name
4365
+ msgid "event_contactname"
4366
+ msgstr "Yhteyshenkilö"
4367
+
4368
+ #: components/theme/EventDetails/EventDetails
4369
+ # defaultMessage: Contact Phone
4370
+ msgid "event_contactphone"
4371
+ msgstr "Puhelinnumero"
4372
+
4373
+ #: components/theme/EventDetails/EventDetails
4374
+ # defaultMessage: Website
4375
+ msgid "event_website"
4376
+ msgstr "Lisätietoja"
4377
+
4378
+ #: components/theme/EventDetails/EventDetails
4379
+ # defaultMessage: What
4380
+ msgid "event_what"
4381
+ msgstr "Mitä"
4382
+
4383
+ #: components/theme/EventDetails/EventDetails
4384
+ # defaultMessage: When
4385
+ msgid "event_when"
4386
+ msgstr "Milloin"
4387
+
4388
+ #: components/theme/EventDetails/EventDetails
4389
+ # defaultMessage: Where
4390
+ msgid "event_where"
4391
+ msgstr "Missä"
4392
+
4393
+ #: helpers/MessageLabels/MessageLabels
4394
+ # defaultMessage: This website does not accept files larger than {limit}
4395
+ msgid "fileTooLarge"
4396
+ msgstr ""
4397
+
4398
+ #: helpers/MessageLabels/MessageLabels
4399
+ # defaultMessage: flush intIds and rebuild relations
4400
+ msgid "flush intIds and rebuild relations"
4401
+ msgstr ""
4402
+
4403
+ #: components/manage/Blocks/Teaser/schema
4404
+ # defaultMessage: Head title
4405
+ msgid "head_title"
4406
+ msgstr ""
4407
+
4408
+ #: components/theme/PasswordReset/RequestPasswordReset
4409
+ # defaultMessage: Password reset confirmation sent
4410
+ msgid "heading_sent_password"
4411
+ msgstr "Sähköposti salasanan vaihtamiseksi lähetetty"
4412
+
4413
+ #: config/Blocks
4414
+ # defaultMessage: Hero
4415
+ msgid "hero"
4416
+ msgstr "nosto"
4417
+
4418
+ #: config/Blocks
4419
+ # defaultMessage: HTML
4420
+ msgid "html"
4421
+ msgstr "HTML"
4422
+
4423
+ #: config/Blocks
4424
+ # defaultMessage: Image
4425
+ msgid "image"
4426
+ msgstr "kuva"
4427
+
4428
+ #: helpers/MessageLabels/MessageLabels
4429
+ # defaultMessage: Input must be integer
4430
+ msgid "integer"
4431
+ msgstr "numero"
4432
+
4433
+ #: components/manage/Contents/ContentsItem
4434
+ # defaultMessage: Intranet
4435
+ msgid "intranet"
4436
+ msgstr "inranet"
4437
+
4438
+ #: components/theme/PasswordReset/RequestPasswordReset
4439
+ # defaultMessage: My email is
4440
+ msgid "label_my_email_is"
4441
+ msgstr "Sähköpostiosoitteeni"
4442
+
4443
+ #: components/theme/PasswordReset/RequestPasswordReset
4444
+ # defaultMessage: My user name is
4445
+ msgid "label_my_username_is"
4446
+ msgstr "Käyttäjätunnukseni"
4447
+
4448
+ #: config/Blocks
4449
+ # defaultMessage: Lead Image Field
4450
+ msgid "leadimage"
4451
+ msgstr "nostokuva"
4452
+
4453
+ #: config/Blocks
4454
+ # defaultMessage: Listing
4455
+ msgid "listing"
4456
+ msgstr "luettelo"
4457
+
4458
+ #: components/manage/Blocks/Listing/ListingBody
4459
+ #: components/manage/Contents/Contents
4460
+ # defaultMessage: Loading
4461
+ msgid "loading"
4462
+ msgstr "ladataan"
4463
+
4464
+ #: components/theme/Unauthorized/Unauthorized
4465
+ # defaultMessage: log in
4466
+ msgid "log in"
4467
+ msgstr "kirjaudu"
4468
+
4469
+ #: config/Blocks
4470
+ # defaultMessage: Maps
4471
+ msgid "maps"
4472
+ msgstr "kartta"
4473
+
4474
+ #: components/manage/Widgets/SchemaWidget
4475
+ # defaultMessage: Maximum Length
4476
+ msgid "maxLength"
4477
+ msgstr "Maksimipituus"
4478
+
4479
+ #: components/manage/Widgets/SchemaWidget
4480
+ # defaultMessage: End of the range (including the value itself)
4481
+ msgid "maximum"
4482
+ msgstr "maksimi"
4483
+
4484
+ #: config/Blocks
4485
+ # defaultMessage: Media
4486
+ msgid "media"
4487
+ msgstr "media"
4488
+
4489
+ #: components/manage/Widgets/SchemaWidget
4490
+ # defaultMessage: Minimum Length
4491
+ msgid "minLength"
4492
+ msgstr "Minimipituus"
4493
+
4494
+ #: components/manage/Widgets/SchemaWidget
4495
+ # defaultMessage: Start of the range
4496
+ msgid "minimum"
4497
+ msgstr "minimi"
4498
+
4499
+ #: config/Blocks
4500
+ # defaultMessage: Most used
4501
+ msgid "mostUsed"
4502
+ msgstr "käytetyimmät"
4503
+
4504
+ #: components/manage/Controlpanels/Relations/RelationsListing
4505
+ # defaultMessage: Found {sources} sources and {targets} targets. Narrow down to {max}!
4506
+ msgid "narrowDownRelations"
4507
+ msgstr ""
4508
+
4509
+ #: components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry
4510
+ #: components/manage/Blocks/Search/components/ToggleFacetFilterListEntry
4511
+ #: components/theme/Widgets/BooleanWidget
4512
+ # defaultMessage: No
4513
+ msgid "no"
4514
+ msgstr "Ei"
4515
+
4516
+ #: components/manage/Contents/ContentsItem
4517
+ # defaultMessage: No workflow state
4518
+ msgid "no workflow state"
4519
+ msgstr "ei julkaisutilaa"
4520
+
4521
+ #: helpers/MessageLabels/MessageLabels
4522
+ # defaultMessage: Input must be number
4523
+ msgid "number"
4524
+ msgstr "numero"
4525
+
4526
+ #: components/manage/Widgets/RecurrenceWidget/ByMonthDayField
4527
+ #: components/manage/Widgets/RecurrenceWidget/ByYearField
4528
+ # defaultMessage: of the month
4529
+ msgid "of the month"
4530
+ msgstr "kuukaudessa"
4531
+
4532
+ #: error
4533
+ # defaultMessage: or try a different page.
4534
+ msgid "or try a different page."
4535
+ msgstr "kokeile jotain muuta sivua."
4536
+
4537
+ #: components/manage/Widgets/RecurrenceWidget/Occurences
4538
+ # defaultMessage: others
4539
+ msgid "others"
4540
+ msgstr "muut"
4541
+
4542
+ #: components/manage/Contents/ContentsItem
4543
+ # defaultMessage: Pending
4544
+ msgid "pending"
4545
+ msgstr "odottaa"
4546
+
4547
+ #: components/manage/Contents/ContentsItem
4548
+ # defaultMessage: Private
4549
+ msgid "private"
4550
+ msgstr "yksityinen"
4551
+
4552
+ #: components/manage/Contents/ContentsItem
4553
+ # defaultMessage: Published
4554
+ msgid "published"
4555
+ msgstr "julkaistu"
4556
+
4557
+ #: components/manage/Widgets/QueryWidget
4558
+ # defaultMessage: Select…
4559
+ msgid "querystring-widget-select"
4560
+ msgstr "Valitse..."
4561
+
4562
+ #: helpers/MessageLabels/MessageLabels
4563
+ # defaultMessage: rebuild relations
4564
+ msgid "rebuild relations"
4565
+ msgstr ""
4566
+
4567
+ #: components/theme/Search/Search
4568
+ # defaultMessage: results
4569
+ msgid "results found"
4570
+ msgstr "hakutulosta"
4571
+
4572
+ #: error
4573
+ # defaultMessage: return to the site root
4574
+ msgid "return to the site root"
4575
+ msgstr "Palaa sivuston juureen"
4576
+
4577
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4578
+ # defaultMessage: and
4579
+ msgid "rrule_and"
4580
+ msgstr "ja"
4581
+
4582
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4583
+ # defaultMessage: (~approximate)
4584
+ msgid "rrule_approximate"
4585
+ msgstr "noin"
4586
+
4587
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4588
+ # defaultMessage: at
4589
+ msgid "rrule_at"
4590
+ msgstr ""
4591
+
4592
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4593
+ # defaultMessage: [month] [day], [year]
4594
+ msgid "rrule_dateFormat"
4595
+ msgstr ""
4596
+
4597
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4598
+ # defaultMessage: day
4599
+ msgid "rrule_day"
4600
+ msgstr "päivä"
4601
+
4602
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4603
+ # defaultMessage: days
4604
+ msgid "rrule_days"
4605
+ msgstr "päiviä"
4606
+
4607
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4608
+ # defaultMessage: every
4609
+ msgid "rrule_every"
4610
+ msgstr "joka"
4611
+
4612
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4613
+ # defaultMessage: for
4614
+ msgid "rrule_for"
4615
+ msgstr ""
4616
+
4617
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4618
+ # defaultMessage: hour
4619
+ msgid "rrule_hour"
4620
+ msgstr "tunti"
4621
+
4622
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4623
+ # defaultMessage: hours
4624
+ msgid "rrule_hours"
4625
+ msgstr "tunteja"
4626
+
4627
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4628
+ # defaultMessage: in
4629
+ msgid "rrule_in"
4630
+ msgstr ""
4631
+
4632
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4633
+ # defaultMessage: last
4634
+ msgid "rrule_last"
4635
+ msgstr ""
4636
+
4637
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4638
+ # defaultMessage: minutes
4639
+ msgid "rrule_minutes"
4640
+ msgstr "minuutteja"
4641
+
4642
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4643
+ # defaultMessage: month
4644
+ msgid "rrule_month"
4645
+ msgstr "kuukausi"
4646
+
4647
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4648
+ # defaultMessage: months
4649
+ msgid "rrule_months"
4650
+ msgstr "kuukausia"
4651
+
4652
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4653
+ # defaultMessage: nd
4654
+ msgid "rrule_nd"
4655
+ msgstr ""
4656
+
4657
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4658
+ # defaultMessage: on
4659
+ msgid "rrule_on"
4660
+ msgstr ""
4661
+
4662
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4663
+ # defaultMessage: on the
4664
+ msgid "rrule_on the"
4665
+ msgstr ""
4666
+
4667
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4668
+ # defaultMessage: or
4669
+ msgid "rrule_or"
4670
+ msgstr ""
4671
+
4672
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4673
+ # defaultMessage: rd
4674
+ msgid "rrule_rd"
4675
+ msgstr ""
4676
+
4677
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4678
+ # defaultMessage: st
4679
+ msgid "rrule_st"
4680
+ msgstr ""
4681
+
4682
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4683
+ # defaultMessage: th
4684
+ msgid "rrule_th"
4685
+ msgstr ""
4686
+
4687
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4688
+ # defaultMessage: the
4689
+ msgid "rrule_the"
4690
+ msgstr ""
4691
+
4692
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4693
+ # defaultMessage: time
4694
+ msgid "rrule_time"
4695
+ msgstr ""
4696
+
4697
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4698
+ # defaultMessage: times
4699
+ msgid "rrule_times"
4700
+ msgstr ""
4701
+
4702
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4703
+ # defaultMessage: until
4704
+ msgid "rrule_until"
4705
+ msgstr ""
4706
+
4707
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4708
+ # defaultMessage: week
4709
+ msgid "rrule_week"
4710
+ msgstr ""
4711
+
4712
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4713
+ # defaultMessage: weekday
4714
+ msgid "rrule_weekday"
4715
+ msgstr ""
4716
+
4717
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4718
+ # defaultMessage: weekdays
4719
+ msgid "rrule_weekdays"
4720
+ msgstr ""
4721
+
4722
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4723
+ # defaultMessage: weeks
4724
+ msgid "rrule_weeks"
4725
+ msgstr ""
4726
+
4727
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4728
+ # defaultMessage: year
4729
+ msgid "rrule_year"
4730
+ msgstr ""
4731
+
4732
+ #: components/manage/Widgets/RecurrenceWidget/Utils
4733
+ # defaultMessage: years
4734
+ msgid "rrule_years"
4735
+ msgstr ""
4736
+
4737
+ #: config/Blocks
4738
+ # defaultMessage: Select
4739
+ msgid "selectFacet"
4740
+ msgstr "Valitse"
4741
+
4742
+ #: components/manage/Blocks/Search/components/ViewSwitcher
4743
+ # defaultMessage: Select view
4744
+ msgid "selectView"
4745
+ msgstr "Valitse näkymä"
4746
+
4747
+ #: components/theme/SkipLinks/SkipLinks
4748
+ # defaultMessage: Skip to footer
4749
+ msgid "skiplink-footer"
4750
+ msgstr "Siirry alatunnisteeseen"
4751
+
4752
+ #: components/theme/SkipLinks/SkipLinks
4753
+ # defaultMessage: Skip to main content
4754
+ msgid "skiplink-main-content"
4755
+ msgstr "Siirry sisältöön"
4756
+
4757
+ #: components/theme/SkipLinks/SkipLinks
4758
+ # defaultMessage: Skip to navigation
4759
+ msgid "skiplink-navigation"
4760
+ msgstr "Siirry navigointiin"
4761
+
4762
+ #: components/manage/Contents/Contents
4763
+ # defaultMessage: sort
4764
+ msgid "sort"
4765
+ msgstr "järjestys"
4766
+
4767
+ #: helpers/MessageLabels/MessageLabels
4768
+ # defaultMessage: sources path
4769
+ msgid "sources path"
4770
+ msgstr ""
4771
+
4772
+ #: config/Blocks
4773
+ # defaultMessage: Table
4774
+ msgid "table"
4775
+ msgstr "taulukko"
4776
+
4777
+ #: helpers/MessageLabels/MessageLabels
4778
+ # defaultMessage: target path
4779
+ msgid "target path"
4780
+ msgstr ""
4781
+
4782
+ #: config/Blocks
4783
+ # defaultMessage: Text
4784
+ msgid "text"
4785
+ msgstr "teksti"
4786
+
4787
+ #: config/Blocks
4788
+ # defaultMessage: Title
4789
+ msgid "title"
4790
+ msgstr "nimike"
4791
+
4792
+ #: config/Blocks
4793
+ # defaultMessage: Table of Contents
4794
+ msgid "toc"
4795
+ msgstr "sisällys"
4796
+
4797
+ #: config/Blocks
4798
+ # defaultMessage: Toggle
4799
+ msgid "toggleFacet"
4800
+ msgstr ""
4801
+
4802
+ #: components/manage/Controlpanels/AddonsControlpanel
4803
+ # defaultMessage: Update from version {origin} to {destination}
4804
+ msgid "upgradeVersions"
4805
+ msgstr ""
4806
+
4807
+ #: helpers/MessageLabels/MessageLabels
4808
+ # defaultMessage: Input must be valid url (www.something.com or http(s)://www.something.com)
4809
+ msgid "url"
4810
+ msgstr "URL"
4811
+
4812
+ #: components/manage/Toolbar/PersonalTools
4813
+ # defaultMessage: user avatar
4814
+ msgid "user avatar"
4815
+ msgstr "käyttäjäkuva"
4816
+
4817
+ #: config/Blocks
4818
+ # defaultMessage: Video
4819
+ msgid "video"
4820
+ msgstr "video"
4821
+
4822
+ #: components/manage/Blocks/Search/schema
4823
+ # defaultMessage: Views
4824
+ msgid "views"
4825
+ msgstr "Näkymät"
4826
+
4827
+ #: components/theme/EventDetails/EventDetails
4828
+ # defaultMessage: Visit external website
4829
+ msgid "visit_external_website"
4830
+ msgstr "Tapahtuman linkki tai nettisivu"
4831
+
4832
+ #: components/manage/Toolbar/More
4833
+ # defaultMessage: You are not authorized to perform this operation.
4834
+ msgid "workingCopyErrorUnauthorized"
4835
+ msgstr "Sinulla ei ole oikeutta tehdä tätä"
4836
+
4837
+ #: components/manage/Toolbar/More
4838
+ # defaultMessage: An error occurred while performing this operation.
4839
+ msgid "workingCopyGenericError"
4840
+ msgstr "Virhe"
4841
+
4842
+ #: components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry
4843
+ #: components/manage/Blocks/Search/components/ToggleFacetFilterListEntry
4844
+ #: components/theme/Widgets/BooleanWidget
4845
+ # defaultMessage: Yes
4846
+ msgid "yes"
4847
+ msgstr "Kyllä"
4848
+
4849
+ #: components/manage/Contents/ContentsUploadModal
4850
+ # defaultMessage: {count, plural, one {Upload {count} file} other {Upload {count} files}}
4851
+ msgid "{count, plural, one {Upload {count} file} other {Upload {count} files}}"
4852
+ msgstr ""
4853
+
4854
+ #: components/manage/Contents/Contents
4855
+ # defaultMessage: {count} selected
4856
+ msgid "{count} selected"
4857
+ msgstr "{count} valittu"
4858
+
4859
+ #: components/manage/Controlpanels/ContentType
4860
+ # defaultMessage: {id} Content Type
4861
+ msgid "{id} Content Type"
4862
+ msgstr ""
4863
+
4864
+ #: components/manage/Controlpanels/ContentTypeSchema
4865
+ # defaultMessage: {id} Schema
4866
+ msgid "{id} Schema"
4867
+ msgstr ""
4868
+
4869
+ #: components/manage/Actions/Actions
4870
+ # defaultMessage: {title} copied.
4871
+ msgid "{title} copied."
4872
+ msgstr "{title} on kopioitu."
4873
+
4874
+ #: components/manage/Actions/Actions
4875
+ # defaultMessage: {title} cut.
4876
+ msgid "{title} cut."
4877
+ msgstr "{title} on leikattu."
4878
+
4879
+ #: components/manage/Actions/Actions
4880
+ # defaultMessage: {title} has been deleted.
4881
+ msgid "{title} has been deleted."
4882
+ msgstr "{title} on poistettu."