Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ We're looking to the community to help with translation. Feel free to fork, edit
- Russian (ru) - Latest: 2.11.13
- Spanish (es) - Latest: 2.11.13
- Turkish (tr) - Latest: 2.11.13
- Swedish (sv) - Latest: 2.11.15 (Not 100% yet)
772 changes: 772 additions & 0 deletions languages/sv/cp.php

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions languages/sv/fields.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Field Language Lines
|--------------------------------------------------------------------------
|
| The following lines are used for commonly-named fields throughout all
| of Statamic's fieldsets. For specific fieldset translations, find
| the file located in the `fieldsets` subdirectory.
|
*/

'options' => 'Options',
'options_instruct' => 'For each option, enter the value on the left and the label on the right.',

];
33 changes: 33 additions & 0 deletions languages/sv/fieldsets/assets.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?php

return [

'image_manipulation_route' => 'Image assets route',
'image_manipulation_route_instruct' => 'The URL where your resizable image assets will be served. If serving cached images directly, this should be the URL of the cached path.',

'image_manipulation_secure' => 'Secure image assets',
'image_manipulation_secure_instruct' => 'Should image resizing be secured? This will require that you generate keys using your tags.',

'auto_crop' => 'Automatic image crop',
'auto_crop_instruct' => 'Should images be automatically cropped? Their focal points will be used, if specified.',

'image_manipulation_driver' => 'Image Manipulation Driver',
'image_manipulation_driver_instruct' => "In some cases ImageMagick can be faster, but isn't available on all servers.",

'image_manipulation_cached' => 'Serve cached images directly',
'image_manipulation_cached_instruct' => 'Should images be generated before they are requested? <a href="https://docs.statamic.com/reference/tags/glide#serving-cached-images" target="_blank">Read more</a>.',

'image_manipulation_cached_path' => 'Cached images path',
'image_manipulation_cached_path_instruct' => 'When serving cached images directly, this is where they will be stored. This must be a publicly accessible location.',

'image_manipulation_presets' => 'Image Manipulation Presets',
'image_manipulation_presets_instruct' => 'Specify any <a href="http://glide.thephpleague.com/1.0/config/defaults-and-presets/#presets" target="_blank">Glide presets</a> (as YAML) that you want to be referenced within templates. These will be automatically generated when assets are uploaded.',

'thumbnail_max_width' => 'Max image width for thumbnails',
'thumbnail_max_width_instruct' => 'Images wider than this will not have thumbnails generated.',

'thumbnail_max_height' => 'Max image height for thumbnails',
'thumbnail_max_height_instruct' => 'Images taller than this will not have thumbnails generated.',


];
44 changes: 44 additions & 0 deletions languages/sv/fieldsets/caching.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

return [

'stache' => 'The "Stache"',
'stache_instruct' => 'Our affectionate name for Statamic\'s internal cache.',

'stache_always_update' => 'Update the Stache on every request?',
'stache_always_update_instruct' => 'Updating on every request will allow changes directly to files be detected, but it comes with a performance hit.
If you\'re using the control panel to manage content, you can disable this as the Stache will get updated when you publish.',

'static_caching' => 'Static Page Caching',
'static_caching_instruct' => 'Static Page Caching allows your web pages to be saved as flat HTML files for incredible speed benefits.',

'static_caching_enabled' => 'Enable',

'static_caching_length' => 'Default Cache length',
'static_caching_length_instruct' => 'How long should each page be cached, in minutes. This only applies when using the "cache" type.',

'static_caching_type' => 'Caching Type',
'static_caching_type_instruct' => 'Saving to file will generate html files at `static`, and you will need to set up rewrite rules on your server.
<a href="https://docs.statamic.com/caching#static-page" target="_blank">Read more</a>.
Otherwise, the standard cache will be used.',

'static_caching_file_path' => 'Static Files Path',
'static_caching_file_path_instruct' => 'The location where files will be written when using file-based caching.',

'static_caching_ignore_query_strings' => 'Ignore query strings',
'static_caching_ignore_query_strings_instruct' => 'When enabled, a page will be treated as the same URL regardless of any query string parameters.',

'static_caching_exclude' => 'Excluded URLs',
'static_caching_exclude_instruct' => 'A list of URLs that should be excluded from caching.',

'static_caching_invalidation' => 'Invalidation Rules',
'static_caching_invalidation_instruct' => 'An array of invalidation rules.',

'cache_tags' => 'Cache Tags',
'cache_tags_instruct' => 'The {{ cache }} template tags allow you to cache sections of your templates.',

'cache_tags_enabled' => 'Enabled',
'cache_tags_enabled_instruct' => 'Whether the tags actually function. Disabling this setting applies to all tag instances.',


];
16 changes: 16 additions & 0 deletions languages/sv/fieldsets/cp.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

return [

'start_page' => 'Startsida',
'start_page_instruct' => 'The default page you see when logging in.',

'date_format' => 'Datumformat',
'date_format_instruct' => 'Set the display format of your entry date columns.',

'pagination_size' => 'Pagination Size',
'pagination_size_instruct' => 'The number of items to show on each paginated page.',

'widgets' => 'Kontrollpanelens widgets',

];
11 changes: 11 additions & 0 deletions languages/sv/fieldsets/debug.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

return [

'debug' => 'Enable debug mode',
'debug_instruct' => 'Debug mode will show detailed errors on screen. It\'s recommended to disable this in production',

'debug_bar' => 'Debug bar',
'debug_bar_instruct' => 'Enable this to show the debug bar at the bottom of every page. Only visible in debug mode.',

];
27 changes: 27 additions & 0 deletions languages/sv/fieldsets/email.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

return [

'section_general' => 'General Settings',

'driver' => 'Driver',
'driver_instruct' => 'The service that will be used to send emails.',

'from_name' => 'Sender Name',
'from_email' => 'Sender Email Address',

'section_smtp' => 'SMTP Settings',
'host' => 'Host',
'port' => 'Port',
'encryption' => 'Encryption',
'username' => 'Username',
'password' => 'Password',

'section_mandrill' => 'Mandrill Settings',
'mandrill_secret' => 'Secret',

'section_mailgun' => 'Mailgun Settings',
'mailgun_secret' => 'Secret',
'mailgun_domain' => 'Domain',

];
5 changes: 5 additions & 0 deletions languages/sv/fieldsets/routes.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

return [

];
20 changes: 20 additions & 0 deletions languages/sv/fieldsets/search.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

return [

'driver' => 'Driver',
'driver_instruct' => 'The service that will be used for searches.',

'algolia_api_key' => 'Algolia Admin API Key',
'algolia_app_id' => 'Algolia Application ID',

'auto_index' => 'Search auto-index',
'auto_index_instruct' => 'Enabling this will automatically update the search index when content is updated.',

'default_index' => 'Default index',
'default_index_instruct' => 'The name of the default search index.',

'searchable' => 'Searchable fields',
'searchable_instruct' => 'The searchable fields for the default index.'

];
40 changes: 40 additions & 0 deletions languages/sv/fieldsets/system.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php

return [

'license_key' => 'License Key',
'license_key_instruct' => 'Enter the key for the corresponding domain from your <a href="https://statamic.com/account/licenses" target="_blank">Statamic Account</a>.',

'locales' => 'Locales',
'locales_instruct' => 'The locales from which your site will be accessed.',

'timezone' => 'Tidszon',
'timezone_instruct' => 'The <a href="http://php.net/manual/en/timezones.php" target="_blank">timezone</a> you want your site to operate under.',

'date_format' => 'Datumformat',
'date_format_instruct' => 'The PHP date format string used when outputting unformatted date variables.',

'default_extension' => 'Default extension',
'default_extension_instruct' => 'The file extension for your content files.',

'filesystems' => 'Filesystems',
'filesystems_instruct' => 'Define how and where your various files will be accessed.',

'app_key' => 'Application Key',
'app_key_instruct' => 'This key is used to secure your application. It should be a strong, 32 character string.',

'redactor' => 'Redactor Settings',
'redactor_instruct' => 'YAML representations of <a href="https://imperavi.com/assets/pdf/redactor-documentation-10.pdf" target="_blank">Redactor settings objects</a>.
Each item will be available to select when creating a Redactor field.',

'protect' => 'System-wide Protection',
'protect_instruct' => 'Entering a protection scheme here will apply it to your entire site\'s front-end.',

'csrf_exclude' => 'CSRF Excluded URLs',
'csrf_exclude_instruct' => 'A list of URLS to exclude from CSRF protection',

'php_max_memory_limit' => 'PHP Max Memory Limit',
'php_max_memory_limit_instruct' => 'The max amount of memory Statamic will try to use when performing memory intensive operations like image manipulation.
Leave blank to use as much memory as possible. You may specify bytes or <a href="http://php.net/manual/en/faq.using.php#faq.using.shorthandbytes" target="_blank">PHP recognized shorthand values</a>.',

];
43 changes: 43 additions & 0 deletions languages/sv/fieldsets/theming.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?php

return [

'default_layout' => 'Default layout',

'default_page_template' => 'Default page template',
'default_page_template_instruct' => 'Template used when rendering a page.',

'default_entry_template' => 'Default entry template',
'default_entry_template_instruct' => 'Template used when rendering an entry.',

'default_taxonomy_template' => 'Default taxonomy template',
'default_taxonomy_template_instruct' => 'Template used when rendering a taxonomy.',

'error_template_folder' => 'Error template folder',
'error_template_folder_instruct' => 'Where error templates can be found (eg. `404.html`). Change to `/` if you want them in your root templates folder.',

'default_fieldset' => 'Default fieldset',
'default_fieldset_instruct' => 'Fieldset used when editing, when other fieldsets either have not been specified or do not exist.',

'default_page_fieldset' => 'Default page fieldset',
'default_page_fieldset_instruct' => 'Fieldset used when editing a page.',

'default_entry_fieldset' => 'Default entry fieldset',
'default_entry_fieldset_instruct' => 'Fieldset used when editing an entry.',

'default_term_fieldset' => 'Default taxonomy term fieldset',
'default_term_fieldset_instruct' => 'Fieldset used when editing a taxonomy term.',

'default_asset_fieldset' => 'Default asset fieldset',
'default_asset_fieldset_instruct' => 'Fieldset used when editing an asset.',

'smartypants' => 'Smartypants',
'smartypants_instruct' => 'Automatically convert typographic elements (like quotes & dashes) when using Markdown.',

'allow_php' => 'Allow PHP in templates',
'allow_php_instruct' => 'PHP code is disabled in templates by default for security.',

'markdown_hard_wrap' => 'Markdown Hard Wrapping',
'markdown_hard_wrap_instruct' => "By default, markdown requires two trailing spaces at the end of a line to indicate a line break. \nEnabling this option will disable that behavior.",

];
15 changes: 15 additions & 0 deletions languages/sv/fieldsets/users.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

return [

'login_type' => 'Login Type',
'login_type_instruct' => 'If set to "Username", users may log in with their username _or_ an email address. Filenames will be the username.
If set to "Email Address", users may only log in with their email, and filenames will use the email.',

'new_user_roles' => 'New User Roles',
'new_user_roles_instruct' => 'Any users registered through the front-end of your site, or created by users who don\'t have role editing permissions, will be assigned these default roles.',

'enable_gravatar' => 'Enable Gravatar',
'enable_gravatar_instruct' => 'Use <a href="http://gravatar.com" target="_blank">Gravatar.com</a> as a source for automatic User avatars.',

];
8 changes: 8 additions & 0 deletions languages/sv/fieldtypes/array.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

return [

'keys' => 'Nycklar',
'keys_instruct' => 'If you want the keys predefined, enter them here. Otherwise, any keys and values will be able to be entered.',

];
20 changes: 20 additions & 0 deletions languages/sv/fieldtypes/assets.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

return [

'container' => 'Container',
'container_instruct' => 'Choose the Asset Container',

'folder' => 'Mapp',
'folder_instruct' => 'Choose a folder to show by default.',

'max_files' => 'Max Filer',
'max_files_instruct' => 'The maximum number of allowed files.',

'restrict' => 'Spärra mot mapp',
'restrict_instruct' => 'Prevent navigation to other folders or containers.',

'mode' => 'Visningsläge',
'mode_instruct' => 'How the selected assets should be displayed.',

];
43 changes: 43 additions & 0 deletions languages/sv/fieldtypes/bard.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?php

return [

'buttons' => 'Toolbar Buttons',
'buttons_instruct' => 'Configure the buttons available in the toolbar',

'sets' => 'Sets',
'sets_instruct' => 'Bard fields can have multiple "sets" of fields.<br> A Bard field without any sets will be treated as a standard text field.',

'container' => 'Asset Container',
'container_instruct' => 'Choose the Asset Container for file uploads.',

'folder' => 'Folder',
'folder_instruct' => 'Choose a folder to show by default.',

'restrict_assets' => 'Restrict to Folder',
'restrict_assets_instruct' => 'Prevent navigation to other asset folders or containers.',

'style' => 'Typography Style',
'style_instruct' => 'Choose your typography style.',

'spellcheck' => 'Spell Check',
'spellcheck_instruct' => 'Enable your browser\'s automatic spellchecker.',

'target_blank' => 'Target Blank',
'target_blank_instruct' => 'Enable `target="_blank"` on links by default.',

'link_noopener' => 'Set noopener',
'link_noopener_instruct' => 'Set `rel="noopener"` on all created links.',

'link_noreferrer' => 'Set noreferer',
'link_noreferrer_instruct' => 'Set `rel="noreferrer"` on all created links.',

'allow_source' => 'Allow Source',
'allow_source_instruct' => 'Allow viewing and editing the HTML source code of your text content',

'semantic_elements' => 'Use Semantic Elements',
'semantic_elements_instruct' => 'Replace unsemantic `<b>` and `<i>` tags with `<strong>` and `<em>` tags.',

'allow_internal_links' => 'Allow Internal Links',
'allow_internal_links_instruct' => 'Allow pages and entries to be suggested as you type in the link toolbar.',
];
8 changes: 8 additions & 0 deletions languages/sv/fieldtypes/checkboxes.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

return [

'options' => 'Val',
'options_instruct' => 'For each option, enter the value on the left and the label on the right.',

];
16 changes: 16 additions & 0 deletions languages/sv/fieldtypes/collection.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

return [

'max_items' => 'Max Items',
'max_items_instruct' => 'The maximum number of entries that may be selected.',
'sort' => 'Sort Order',
'sort_instruct' => 'Sort the entries with fieldname:order. You can add additional rules separated by pipes. Eg: `date:desc|title:asc`',
'label' => 'Label',
'label_instruct' => 'How the values should appear. You may use variables within the string, eg. `{{ title }} ({{ date format="Y" }})`',
'collection' => 'Collection',
'collection_instruct' => 'The collection from which to show entries.',
'mode' => 'UI Mode',
'mode_instruct' => 'How the field should be displayed.',

];
7 changes: 7 additions & 0 deletions languages/sv/fieldtypes/collections.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

return [

'max_items' => 'Max Items',
'max_items_instruct' => 'The maximum number of collections that may be selected.',
];
Loading