From 70f0019905f8c44ed875379a9af65988e536b4f4 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Thu, 1 Jan 2015 10:08:20 +0100 Subject: [PATCH 1/9] Checkboxify yesno-fields, but use CSS to show them as switches in Redbasic --- mod/profiles.php | 13 +++-- mod/settings.php | 20 +++++--- view/css/bootstrap-red.css | 4 ++ view/css/mod_connect.css | 5 +- view/css/mod_group.css | 3 +- view/css/mod_settings.css | 8 +-- view/css/mod_thing.css | 6 +-- view/theme/redbasic/css/style.css | 81 ++++++++++++++++++++++++++++--- view/tpl/field_checkbox.tpl | 3 +- view/tpl/field_intcheckbox.tpl | 3 +- view/tpl/profile_hide_friends.tpl | 5 +- view/tpl/settings.tpl | 2 +- view/tpl/settings_features.tpl | 2 +- 13 files changed, 120 insertions(+), 35 deletions(-) diff --git a/mod/profiles.php b/mod/profiles.php index f2695f332..6bdc7f11a 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -596,13 +596,12 @@ function profiles_content(&$a) { $opt_tpl = get_markup_template("profile_hide_friends.tpl"); - $hide_friends = replace_macros($opt_tpl,array( - '$desc' => t('Hide your contact/friend list from viewers of this profile?'), - '$yes_str' => t('Yes'), - '$no_str' => t('No'), - '$yes_selected' => (($r[0]['hide_friends']) ? " checked=\"checked\" " : ""), - '$no_selected' => (($r[0]['hide_friends'] == 0) ? " checked=\"checked\" " : "") - )); + $hide_friends = replace_macros($opt_tpl,array('$field' => array( + 'hide-friends', + t('Hide your contact/friend list from viewers of this profile?'), + $r[0]['hide_friends'], + '', + ))); $q = q("select * from profdef where true"); if($q) { diff --git a/mod/settings.php b/mod/settings.php index be6f2cfb9..bb1ec8cb8 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -122,10 +122,19 @@ function settings_post(&$a) { if((argc() > 1) && (argv(1) === 'features')) { check_form_security_token_redirectOnErr('/settings/features', 'settings_features'); - foreach($_POST as $k => $v) { - if(strpos($k,'feature_') === 0) { - set_pconfig(local_user(),'feature',substr($k,8),((intval($v)) ? 1 : 0)); - } + + // Build list of features and check which are set + $features = get_features(); + $all_features = array(); + foreach($features as $k => $v) { + foreach($v as $f) + $all_features[] = $f[0]; + } + foreach($all_features as $k) { + if(x($_POST,"feature_$k")) + set_pconfig(local_user(),'feature',$k, 1); + else + set_pconfig(local_user(),'feature',$k, 0); } build_sync_packet(); return; @@ -707,7 +716,6 @@ function settings_content(&$a) { '$title' => t('Additional Features'), '$features' => $arr, '$submit' => t('Submit'), - '$field_yesno' => 'field_yesno.tpl', )); return $o; @@ -938,7 +946,7 @@ function settings_content(&$a) { $timezone = date_default_timezone_get(); - $opt_tpl = get_markup_template("field_yesno.tpl"); + $opt_tpl = get_markup_template("field_checkbox.tpl"); if(get_config('system','publish_all')) { $profile_in_dir = ''; } diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index 12287ba4f..5d9bb6e90 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -79,3 +79,7 @@ nav .navbar-toggle { code { white-space: normal; } + +/* Bootstrap assumes that checkboxes are on the left of labels, while it's usually the opposite in Red */ +.field.checkbox input[type="checkbox"] { margin-left: 0px; } +.field.checkbox label { padding-left: 0px; font-weight: 700} diff --git a/view/css/mod_connect.css b/view/css/mod_connect.css index d1a46ec48..da1265c52 100644 --- a/view/css/mod_connect.css +++ b/view/css/mod_connect.css @@ -6,6 +6,7 @@ margin-top: 25px; } -#sellpage-edit label{ +/* first-of-type needed to style switches */ +#sellpage-edit label:first-of-type { width: 300px; -} \ No newline at end of file +} diff --git a/view/css/mod_group.css b/view/css/mod_group.css index cc5f15843..cd6b7acc7 100644 --- a/view/css/mod_group.css +++ b/view/css/mod_group.css @@ -3,7 +3,8 @@ margin-top: 30px; } -#group-edit-form label { +/* first-of-type needed to style switches */ +#group-edit-form label:first-of-type { float: left; width: 300px; } diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css index b03023e21..7b0c8e7ed 100644 --- a/view/css/mod_settings.css +++ b/view/css/mod_settings.css @@ -28,7 +28,8 @@ ul#settings-privacy-macros { margin-bottom: 10px; } -#settings-permissions-wrapper .field label{ +/* first-of-type needed to be able to style switches */ +#settings-permissions-wrapper .field label:first-of-type { width: 350px; } @@ -41,7 +42,8 @@ ul#settings-privacy-macros { margin-bottom: 45px; } -#settings-notifications label { +/* first-of-type needed to be able to style switches */ +#settings-notifications .field label:first-of-type { margin-left: 20px; width: 330px; } @@ -63,4 +65,4 @@ ul#settings-privacy-macros { #settings-channel-menu-end { clear: both; margin-bottom: 15px; -} \ No newline at end of file +} diff --git a/view/css/mod_thing.css b/view/css/mod_thing.css index 125230b38..9c1eb2b21 100644 --- a/view/css/mod_thing.css +++ b/view/css/mod_thing.css @@ -4,8 +4,8 @@ margin-left: 0; } - -.thing-label, .field label, .thing-verb-label, .thing-profile-label{ +/* first-of-type needed to style switches */ +.thing-label, .field label:first-of-type, .thing-verb-label, .thing-profile-label{ float: left; width: 350px; } @@ -18,4 +18,4 @@ .thing-field-end { clear: both; -} \ No newline at end of file +} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 60760509d..f88febf4d 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -301,14 +301,13 @@ footer { #main-login #id_remember { float: left; padding: 0; - margin-top: 15px; margin-bottom: 0; margin-left: 0; width: 20px; } -#main-login .field.checkbox label { - margin-top: 15px; +/* first-of-type needed to style switches */ +#main-login .field.checkbox label:first-of-type { margin-bottom: 0; float: left; width: 100px; @@ -373,13 +372,15 @@ footer { font-weight: bold; } -#profile-edit-wrapper .field label { +#profile-edit-wrapper .field { margin-top: 20px; +} +/* first-of-type needed to style switches */ +#profile-edit-wrapper .field label:first-of-type { width: 175px; } #profile-edit-wrapper .field input[type="text"] { - margin-top: 20px; width: 220px; } @@ -1242,7 +1243,8 @@ footer { width: 100% } -.field label { +/* first-of-type needed to style switches */ +.field label:first-of-type { float: left; width: 350px; } @@ -1296,6 +1298,8 @@ footer { .hidden { display: none!important; } .field.radio .field_help { margin-left: 0px; } +.field.checkbox .field_help { display: inline; margin-left: 10px; } + /** * OAuth @@ -2350,3 +2354,68 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { .jothidden .bootstrap-tagsinput:hover, .jothidden .bootstrap-tagsinput:focus { border: 1px solid #cccccc; } + +/* Hide the placeholder label which is used for styling switches */ +/* Many places give a width to all labels, so need to specifically set these to 0 width */ +/* This should probably be moved to core */ +.field.checkbox label:nth-of-type(2) { + width: 0px; + margin: 0px; + float: none; +} + +/* Turn checkboxes into switches */ +/* Doesn't work with IE<9. */ +.field.checkbox input { + position: absolute; + margin-left: -9999px; + visibility: hidden; +} +.field.checkbox input + label:nth-of-type(2) { + display: block; + position: relative; + cursor: pointer; + outline: none; + user-select: none; + + padding: 2px; + width: 60px; + height: 24px; + background-color: #dddddd; + border-radius: 60px; + transition: background 0.4s; + + float:left; +} + +.field.checkbox input + label:before, +.field.checkbox input + label:after { + display: block; + position: absolute; + content: ""; +} +.field.checkbox input + label:before { + top: 2px; + left: 2px; + bottom: 2px; + right: 2px; + background-color: #fff; + border-radius: 30px; + transition: background 0.4s; +} +.field.checkbox input + label:after { + top: 4px; + left: 4px; + bottom: 4px; + width: 30px; + background-color: #dddddd; + border-radius: 30px; + transition: margin 0.4s, background 0.4s; +} +.field.checkbox input:checked + label { + background-color: #8ce196; +} +.field.checkbox input:checked + label:after { + margin-left: 22px; + background-color: #8ce196; +} diff --git a/view/tpl/field_checkbox.tpl b/view/tpl/field_checkbox.tpl index 51d56f69c..7e4f00a2d 100755 --- a/view/tpl/field_checkbox.tpl +++ b/view/tpl/field_checkbox.tpl @@ -1,5 +1,4 @@
- - {{$field.3}} + {{$field.3}}
diff --git a/view/tpl/field_intcheckbox.tpl b/view/tpl/field_intcheckbox.tpl index d9a8d7289..41ee46822 100755 --- a/view/tpl/field_intcheckbox.tpl +++ b/view/tpl/field_intcheckbox.tpl @@ -1,5 +1,4 @@
- - {{$field.4}} + {{$field.4}}
diff --git a/view/tpl/profile_hide_friends.tpl b/view/tpl/profile_hide_friends.tpl index 1d748cd4e..4ed6782bb 100644 --- a/view/tpl/profile_hide_friends.tpl +++ b/view/tpl/profile_hide_friends.tpl @@ -1,3 +1,6 @@ +{{include file="field_checkbox.tpl"}} + +{{*

{{$desc}}

@@ -14,4 +17,4 @@
- +*}} diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 47d85d8e4..9e53d4f98 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -62,7 +62,7 @@ {{$suggestme}} -{{include file="field_yesno.tpl" field=$blocktags}} +{{include file="field_checkbox.tpl" field=$blocktags}} {{include file="field_input.tpl" field=$expire}} diff --git a/view/tpl/settings_features.tpl b/view/tpl/settings_features.tpl index 3291162fa..3ede4c76d 100755 --- a/view/tpl/settings_features.tpl +++ b/view/tpl/settings_features.tpl @@ -9,7 +9,7 @@

{{$f.0}}

{{foreach $f.1 as $fcat}} - {{include file="{{$field_yesno}}" field=$fcat}} + {{include file="field_checkbox.tpl" field=$fcat}} {{/foreach}} {{/foreach}} From ef6680f7adfeacb0e7614c509e8861f08ff066e8 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Thu, 1 Jan 2015 11:33:00 +0100 Subject: [PATCH 2/9] Possibly make switches work on IE8 (untested) --- view/css/mod_connect.css | 1 + view/css/mod_group.css | 1 + view/css/mod_settings.css | 2 ++ view/css/mod_thing.css | 1 + view/theme/redbasic/css/style.css | 5 +++++ view/tpl/field_acheckbox.tpl | 2 +- view/tpl/field_checkbox.tpl | 4 ++-- view/tpl/field_colorinput.tpl | 2 +- view/tpl/field_combobox.tpl | 2 +- view/tpl/field_custom.tpl | 2 +- view/tpl/field_input.tpl | 2 +- view/tpl/field_intcheckbox.tpl | 4 ++-- view/tpl/field_password.tpl | 2 +- view/tpl/field_radio.tpl | 2 +- view/tpl/field_richtext.tpl | 2 +- view/tpl/field_select.tpl | 2 +- view/tpl/field_select_disabled.tpl | 2 +- view/tpl/field_select_raw.tpl | 2 +- view/tpl/field_textarea.tpl | 2 +- view/tpl/field_themeselect.tpl | 2 +- view/tpl/field_yesno.tpl | 2 +- 21 files changed, 28 insertions(+), 18 deletions(-) diff --git a/view/css/mod_connect.css b/view/css/mod_connect.css index da1265c52..218b1d2cb 100644 --- a/view/css/mod_connect.css +++ b/view/css/mod_connect.css @@ -7,6 +7,7 @@ } /* first-of-type needed to style switches */ +#sellpage-edit label.mainlabel, #sellpage-edit label:first-of-type { width: 300px; } diff --git a/view/css/mod_group.css b/view/css/mod_group.css index cd6b7acc7..30a954d2a 100644 --- a/view/css/mod_group.css +++ b/view/css/mod_group.css @@ -4,6 +4,7 @@ } /* first-of-type needed to style switches */ +#group-edit-form label.mainlabel, #group-edit-form label:first-of-type { float: left; width: 300px; diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css index 7b0c8e7ed..b066e6059 100644 --- a/view/css/mod_settings.css +++ b/view/css/mod_settings.css @@ -29,6 +29,7 @@ ul#settings-privacy-macros { } /* first-of-type needed to be able to style switches */ +#settings-permissions-wrapper .field label.mainlabel, #settings-permissions-wrapper .field label:first-of-type { width: 350px; } @@ -43,6 +44,7 @@ ul#settings-privacy-macros { } /* first-of-type needed to be able to style switches */ +#settings-notifications .field label.mainlabel, #settings-notifications .field label:first-of-type { margin-left: 20px; width: 330px; diff --git a/view/css/mod_thing.css b/view/css/mod_thing.css index 9c1eb2b21..ddb2faa87 100644 --- a/view/css/mod_thing.css +++ b/view/css/mod_thing.css @@ -5,6 +5,7 @@ } /* first-of-type needed to style switches */ +.field label.mainlabel, .thing-label, .field label:first-of-type, .thing-verb-label, .thing-profile-label{ float: left; width: 350px; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f88febf4d..61acc8ec7 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -307,6 +307,7 @@ footer { } /* first-of-type needed to style switches */ +#main-login .field.checkbox label.mainlabel, #main-login .field.checkbox label:first-of-type { margin-bottom: 0; float: left; @@ -376,6 +377,7 @@ footer { margin-top: 20px; } /* first-of-type needed to style switches */ +#profile-edit-wrapper .field label.mainlabel, #profile-edit-wrapper .field label:first-of-type { width: 175px; } @@ -1244,6 +1246,7 @@ footer { } /* first-of-type needed to style switches */ +.field label.mainlabel, .field label:first-of-type { float: left; width: 350px; @@ -2358,6 +2361,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { /* Hide the placeholder label which is used for styling switches */ /* Many places give a width to all labels, so need to specifically set these to 0 width */ /* This should probably be moved to core */ +.field.checkbox label.switchlabel, .field.checkbox label:nth-of-type(2) { width: 0px; margin: 0px; @@ -2371,6 +2375,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { margin-left: -9999px; visibility: hidden; } +.field.checkbox input + label.switchlabel, .field.checkbox input + label:nth-of-type(2) { display: block; position: relative; diff --git a/view/tpl/field_acheckbox.tpl b/view/tpl/field_acheckbox.tpl index 89de170b7..816af2a65 100755 --- a/view/tpl/field_acheckbox.tpl +++ b/view/tpl/field_acheckbox.tpl @@ -1,6 +1,6 @@ - + diff --git a/view/tpl/field_checkbox.tpl b/view/tpl/field_checkbox.tpl index 7e4f00a2d..5c7f58ad1 100755 --- a/view/tpl/field_checkbox.tpl +++ b/view/tpl/field_checkbox.tpl @@ -1,4 +1,4 @@
- - {{$field.3}} + + {{$field.3}}
diff --git a/view/tpl/field_colorinput.tpl b/view/tpl/field_colorinput.tpl index a68781698..a1e912186 100644 --- a/view/tpl/field_colorinput.tpl +++ b/view/tpl/field_colorinput.tpl @@ -1,5 +1,5 @@
- + {{if $field.4}} {{$field.4}} {{/if}} {{$field.3}}
diff --git a/view/tpl/field_combobox.tpl b/view/tpl/field_combobox.tpl index 1f9218954..337c60673 100755 --- a/view/tpl/field_combobox.tpl +++ b/view/tpl/field_combobox.tpl @@ -1,5 +1,5 @@
- + {{* html5 don't work on Chrome, Safari and IE9 see https://github.com/thgreasi/datalist-polyfill diff --git a/view/tpl/field_custom.tpl b/view/tpl/field_custom.tpl index a6b49f6da..754f5b2f4 100755 --- a/view/tpl/field_custom.tpl +++ b/view/tpl/field_custom.tpl @@ -1,5 +1,5 @@
- + {{$field.2}} {{$field.3}}
diff --git a/view/tpl/field_input.tpl b/view/tpl/field_input.tpl index a584f95e7..be6e3f047 100755 --- a/view/tpl/field_input.tpl +++ b/view/tpl/field_input.tpl @@ -1,5 +1,5 @@
- + {{if $field.4}} {{$field.4}} {{/if}} {{$field.3}}
diff --git a/view/tpl/field_intcheckbox.tpl b/view/tpl/field_intcheckbox.tpl index 41ee46822..1d0bd9175 100755 --- a/view/tpl/field_intcheckbox.tpl +++ b/view/tpl/field_intcheckbox.tpl @@ -1,4 +1,4 @@
- - {{$field.4}} + + {{$field.4}}
diff --git a/view/tpl/field_password.tpl b/view/tpl/field_password.tpl index 23058f8a6..38ecf3d07 100755 --- a/view/tpl/field_password.tpl +++ b/view/tpl/field_password.tpl @@ -1,5 +1,5 @@
- + {{$field.3}}
diff --git a/view/tpl/field_radio.tpl b/view/tpl/field_radio.tpl index 147b6b834..a92324cad 100755 --- a/view/tpl/field_radio.tpl +++ b/view/tpl/field_radio.tpl @@ -1,5 +1,5 @@
- + {{$field.3}}
diff --git a/view/tpl/field_richtext.tpl b/view/tpl/field_richtext.tpl index c8639cf10..378e02a62 100755 --- a/view/tpl/field_richtext.tpl +++ b/view/tpl/field_richtext.tpl @@ -1,5 +1,5 @@
- + {{$field.3}}
diff --git a/view/tpl/field_select.tpl b/view/tpl/field_select.tpl index 9aca26e7b..95d1855d6 100755 --- a/view/tpl/field_select.tpl +++ b/view/tpl/field_select.tpl @@ -1,5 +1,5 @@
- + diff --git a/view/tpl/field_select_disabled.tpl b/view/tpl/field_select_disabled.tpl index f0090cf98..e241be895 100644 --- a/view/tpl/field_select_disabled.tpl +++ b/view/tpl/field_select_disabled.tpl @@ -1,5 +1,5 @@
- + diff --git a/view/tpl/field_select_raw.tpl b/view/tpl/field_select_raw.tpl index 861be3201..74d575bd0 100755 --- a/view/tpl/field_select_raw.tpl +++ b/view/tpl/field_select_raw.tpl @@ -1,5 +1,5 @@
- + diff --git a/view/tpl/field_textarea.tpl b/view/tpl/field_textarea.tpl index b454045c0..dad89a145 100755 --- a/view/tpl/field_textarea.tpl +++ b/view/tpl/field_textarea.tpl @@ -1,5 +1,5 @@
- + {{$field.3}}
diff --git a/view/tpl/field_themeselect.tpl b/view/tpl/field_themeselect.tpl index a0e454bf5..120727478 100755 --- a/view/tpl/field_themeselect.tpl +++ b/view/tpl/field_themeselect.tpl @@ -1,6 +1,6 @@
- + diff --git a/view/tpl/field_yesno.tpl b/view/tpl/field_yesno.tpl index e36e775c7..f5a909833 100755 --- a/view/tpl/field_yesno.tpl +++ b/view/tpl/field_yesno.tpl @@ -1,5 +1,5 @@
- +
From 9557908875af76d167797a36e980798349fc63b5 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Thu, 1 Jan 2015 12:32:15 +0100 Subject: [PATCH 3/9] Warn about unsaved settings using jquery.areyousure --- library/jquery.AreYouSure/.gitignore | 166 +++++ library/jquery.AreYouSure/Gruntfile.js | 26 + library/jquery.AreYouSure/README.md | 297 +++++++++ .../are-you-sure.jquery.json | 39 ++ .../ays-beforeunload-shim.js | 31 + library/jquery.AreYouSure/bower.json | 30 + .../demo/are-you-sure-demo.html | 576 ++++++++++++++++++ .../jquery.AreYouSure/jquery.are-you-sure.js | 192 ++++++ library/jquery.AreYouSure/package.json | 45 ++ .../spec/javascripts/fixtures/input-text.html | 4 + .../javascripts/jquery.are-you-sure_spec.js | 28 + view/js/mod_admin.js | 3 + view/js/mod_profiles.js | 3 + view/js/mod_settings.js | 1 + view/php/theme_init.php | 1 + 15 files changed, 1442 insertions(+) create mode 100644 library/jquery.AreYouSure/.gitignore create mode 100644 library/jquery.AreYouSure/Gruntfile.js create mode 100644 library/jquery.AreYouSure/README.md create mode 100644 library/jquery.AreYouSure/are-you-sure.jquery.json create mode 100644 library/jquery.AreYouSure/ays-beforeunload-shim.js create mode 100644 library/jquery.AreYouSure/bower.json create mode 100644 library/jquery.AreYouSure/demo/are-you-sure-demo.html create mode 100644 library/jquery.AreYouSure/jquery.are-you-sure.js create mode 100644 library/jquery.AreYouSure/package.json create mode 100644 library/jquery.AreYouSure/spec/javascripts/fixtures/input-text.html create mode 100644 library/jquery.AreYouSure/spec/javascripts/jquery.are-you-sure_spec.js create mode 100644 view/js/mod_admin.js create mode 100644 view/js/mod_profiles.js diff --git a/library/jquery.AreYouSure/.gitignore b/library/jquery.AreYouSure/.gitignore new file mode 100644 index 000000000..345f0dbeb --- /dev/null +++ b/library/jquery.AreYouSure/.gitignore @@ -0,0 +1,166 @@ +################# +## Eclipse +################# + +*.pydevproject +.project +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.classpath +.settings/ +.loadpath + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# CDT-specific +.cproject + +# PDT-specific +.buildpath + + +################# +## Visual Studio +################# + +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results +[Dd]ebug/ +[Rr]elease/ +*_i.c +*_p.c +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.vspscc +.builds +*.dotCover + +## TODO: If you have NuGet Package Restore enabled, uncomment this +#packages/ + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf + +# Visual Studio profiler +*.psess +*.vsp + +# ReSharper is a .NET coding add-in +_ReSharper* + +# Installshield output folder +[Ee]xpress + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish + +# Others +[Bb]in +[Oo]bj +sql +TestResults +*.Cache +ClientBin +stylecop.* +~$* +*.dbmdl +Generated_Code #added for RIA/Silverlight projects + +# Backup & report files from converting an old project file to a newer +# Visual Studio version. Backup files are not needed, because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML + + + +############ +## Windows +############ + +# Windows image file caches +Thumbs.db + +# Folder config file +Desktop.ini + + +############# +## Python +############# + +*.py[co] + +# Packages +*.egg +*.egg-info +dist +build +eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox + +#Translations +*.mo + +#Mr Developer +.mr.developer.cfg + +# Mac crap +.DS_Store + +bower_components/ +node_modules/ diff --git a/library/jquery.AreYouSure/Gruntfile.js b/library/jquery.AreYouSure/Gruntfile.js new file mode 100644 index 000000000..efca34c0a --- /dev/null +++ b/library/jquery.AreYouSure/Gruntfile.js @@ -0,0 +1,26 @@ +module.exports = function(grunt) { + grunt.config.init({ + karma: { + options: { + browsers: [ 'Chrome', 'Firefox', 'Safari', 'IE' ], + frameworks: [ 'jasmine' ], + reportSlowerThan: 500, + singleRun: true + }, + unit: { + files: [ + { pattern: 'bower_components/jquery/dist/jquery.min.js' }, + { pattern: 'bower_components/jasmine-jquery/lib/jasmine-jquery.js' }, + { pattern: 'jquery.are-you-sure.js' }, + { pattern: 'spec/javascripts/*.js' }, + { pattern: 'spec/javascripts/fixtures/**/*.html', included: false } + ] + } + } + }); + + grunt.registerTask('test', 'Run tests.', [ 'karma' ]); + grunt.registerTask('default', [ 'test' ]); + + grunt.loadNpmTasks('grunt-karma'); +}; diff --git a/library/jquery.AreYouSure/README.md b/library/jquery.AreYouSure/README.md new file mode 100644 index 000000000..6a538648a --- /dev/null +++ b/library/jquery.AreYouSure/README.md @@ -0,0 +1,297 @@ +Are You Sure? - A light "dirty forms" JQuery Plugin +====== +**Version:** 1.9 + +*Are-you-sure* (```jquery.are-you-sure.js```) is simple light-weight "dirty +form" JQuery Plugin for modern browsers. It helps prevent users from losing +unsaved HTML Form changes by promoting the user to save/submit. + +It's simple to use. Just add the following line to your page's ready +function: + +```javascript +$('form').areYouSure(); +``` + +*Are-you-sure* is a minimal plugin for modern browsers. There are plenty of +"dirty forms" implementations out there, however they all seemed very +heavyweight and over-engineered...! Most were written some time back and +contain many 'hacks' to support legacy browsers, and/or rely on other fat +dependencies such as FaceBox or jQueryUI. *Are-you-sure* solves this by +doing this simple task in the simplest possible way. + +*Are-you-sure* is as simple as it gets: + + * 100% JS with zero dependencies and no external CSS. + * Leverages `onBeforeUnload` to detect all page/browser exit events. + * Works on forms of any size. + * Correct state management - if a user edits then restores a value, the form + is not considered dirty. + * Easy to understand - less than a "terminal screen" of code! + * Graceful degradation on legacy browsers (i.e. if you're running an old + browser... remember to save :-) + +###Basic Usage + +```javascript + +$(function() { + + // Enable on all forms + $('form').areYouSure(); + + // Enable on selected forms + $('form.dirty-check').areYouSure(); + + // With a custom message + $('form').areYouSure( {'message':'Your profile details are not saved!'} ); + +} +``` +To ignore selected fields from the dirtyness check: + +```html +
+ + Field 1: (checked)
+ Field 2: (ignored):
+ Field 3: (ignored):
+ + + +
+``` + +###Advanced Usage + +```javascript + +$(function() { + + /* + * Make Are-You-Sure "silent" by disabling the warning message + * (tracking/monitoring only mode). This option is useful when you wish to + * use the dirty/save events and/or use the dirtyness tracking in your own + * beforeunload handler. + */ + $('form').areYouSure( {'silent':true} ); + + /* + * Dirtyness Change Events + * Are-You-Sure fires off "dirty" and "clean" events when the form's state + * changes. You can bind() or on(), these events to implement your own form + * state logic. A good example is enabling/disabling a Save button. + * + * "this" refers to the form that fired the event. + */ + $('form').on('dirty.areYouSure', function() { + // Enable save button only as the form is dirty. + $(this).find('input[type="submit"]').removeAttr('disabled'); + }); + $('form').on('clean.areYouSure', function() { + // Form is clean so nothing to save - disable the save button. + $(this).find('input[type="submit"]').attr('disabled', 'disabled'); + }); + + /* + * It's easy to test if a form is dirty in your own code - just check + * to see if it has a "dirty" CSS class. + */ + if ($('#my-form').hasClass('dirty')) { + // Do something + } + + /* + * If you're dynamically adding new fields/inputs, and would like to track + * their state, trigger Are-You-Sure to rescan the form like this: + */ + $('#my-form').trigger('rescan.areYouSure'); + + /* + * If you'd like to reset/reinitialize the form's state as clean and + * start tracking again from this new point onwards, trigger the + * reinitalize as follows. This is handy if say you've managing your + * own form save/submit via asyc AJAX. + */ + $('#my-form').trigger('reinitialize.areYouSure'); + + /* + * In some situations it may be desirable to look for other form + * changes such as adding/removing fields. This is useful for forms that + * can change their field count, such as address/phone contact forms. + * Form example, you might remove a phone number from a contact form + * but update nothing else. This should mark the form as dirty. + */ + $('form').areYouSure( {'addRemoveFieldsMarksDirty':true} ); + + /* + * Sometimes you may have advanced forms that change their state via + * custom JavaScript or 3rd-party component JavaScript. Are-You-Sure may + * not automatically detect these state changes. Examples include: + * - Updating a hidden input field via background JS. + * - Using a [rich WYSIWYG edit control](https://github.com/codedance/jquery.AreYouSure/issues/17). + * One solution is to manually trigger a form check as follows: + */ + $('#my-form').trigger('checkform.areYouSure'); + + /* + * As an alternative to using events, you can pass in a custom change + * function. + */ + $('#my-adv-form').areYouSure({ + change: function() { + // Enable save button only if the form is dirty. i.e. something to save. + if ($(this).hasClass('dirty')) { + $(this).find('input[type="submit"]').removeAttr('disabled'); + } else { + $(this).find('input[type="submit"]').attr('disabled', 'disabled'); + } + } + }); + + /* + * Mixing in your own logic into the warning. + */ + $('#my-form').areYouSure( {'silent':true} ); + $(window).on('beforeunload', function() { + isSunday = (0 == (new Date()).getDay()); + if ($('#my-form').hasClass('dirty') && isSunday) { + return "Because it's Sunday, I'll be nice and let you know you forgot to save!"; + } + } + +} +``` +The [demo page](http://www.papercut.com/products/free_software/are-you-sure/demo/are-you-sure-demo.html) +shows the advanced usage options in more detail. + + +###Install +Are-You-Sure is a light-weight jQuery plugin - it's a single standalone +JavaScript file. You can download the +[jquery.are-you-sure.js](https://raw.github.com/codedance/jquery.AreYouSure/master/jquery.are-you-sure.js) +file and include it in your page. Because it's so simple it seems a shame +to add an extra browser round trip. It's recommended that you consider +concatenating it with other common JS lib files, and/or even cut-n-pasting +the code (and license header) into one of your existing JS files. + +For experimental Mobile Safari support, also include ```ays-beforeunload-shim.js``` +(see Known Issues below). + +*Are-you-sure* may also be installed with [Bower](http://twitter.github.com/bower/): + +```bash +$ bower install jquery.are-you-sure +``` + +If you're using, or like, *Are-you-sure* make sure you **star/watch** this project +so you can stay up-to-date with updates. + +###Demo +This [demo page](http://www.papercut.com/products/free_software/are-you-sure/demo/are-you-sure-demo.html) +hosts a number of example forms. + +###Supported Browsers +*Are-you-sure* has been tested on and fully supports the following browsers: + +* IE 9 through 11 +* Google Chrome (versions since 2012) +* Firefox (versions since 2012) +* Safari (versions since 2012) + +Experimental support is available on iOS and Opera via the *beforeunload* shim (see below). + +###Known Issues & Limitations + +####Mobile Safari and Opera +The ```windows.beforeunload``` event is not supported on iOS (iPhone, iPad, and iPod). An +experimental shim offering partial *beforeunload* emulation is provided to help plug this gap. +It works by scanning the page for anchor links and augments the default behaviour to first +check with *Are-you-sure* before navigating away. To use, simply include +```ays-beforeunload-shim.js``` in your page. + +####Firefox +The custom message option may not work on Firefox ([Firefox bug 588292](https://bugzilla.mozilla.org/show_bug.cgi?id=588292)). + +###Development +The aim is to keep *Are-you-sure* simple and light. If you think you have +a good idea which is aligned with this objective, please voice your thoughts +in the issues list. + +####Pull Requests +If possible, please submit your pull request against the most recent ```dev-*``` branch rather than master. This will make it easier to merge your code into the next planned release. + +####Running tests +```bash +$ npm install +$ npm test +``` + +###Release History + +**2014-08-13** (1.9) - This is a minor bugfix release: + +* Addressed issue [#45](https://github.com/codedance/jquery.AreYouSure/issues/55) seen with empty select fields. +* Thanks [valgen](https://github.com/valgen) and [tus124](https://github.com/tus124) for the contribution. + +**2014-06-22** (1.8) - This is a minor bugfix release: + +* Fixed NPE that may occur when using a 'multiple' option field. +* Minor timing tweak to help mitigate bypass issue raised in [#45](https://github.com/codedance/jquery.AreYouSure/issues/45) +* Thanks [apassant](https://github.com/apassant) and [amatenkov](https://github.com/amatenkov) for the contribution. + +**2014-05-28** (1.7) + +* Fixed multiple warning dialogs that may appear on IE and recent versions of Chrome +* Experimental support for iOS Mobile Safari (via a *beforeunload* shim) +* Various minor fixes (e.g. support input fields with no type=) +* Minor performance improvements on pages with multiple forms +* Improved documentation and examples +* Thanks to [lfjeff](https://github.com/lfjeff) and [aqlong](https://github.com/aqlong) for the contribution and ideas! + +**2014-02-07** (1.6) + +* Add field count tracking (```addRemoveFieldsMarksDirty```) (contrib *jonegerton*) +* Added event to manually trigger a form check/recheck (contrib *jonegerton*) +* Thanks to [jonegerton](https://github.com/jonegerton) for the contribution! + +**2013-11-15** (1.5) + +* Added support for HTML5 input field types. (contrib *albinsunnanbo*) +* New option to reinitialize/reset the dirty state. This is handy if you're managing your own async submit/save using AJAX. (contrib *albinsunnanbo*) +* Thanks to [albinsunnanbo](https://github.com/albinsunnanbo) for the contribution! + +**2013-10-2** (1.4) + +* Added dirty and clean "events" +* Added an option to disable the message (dirty tracking only) +* Added an option to rescan a form to look/detect any new fields + +**2013-07-24** - Minor fix - don't fail if form elements have no "name" attribute. + +**2013-05-14** - Added support for form reset buttons (contributed by codev). + +**2013-05-01** - Added support for hidden and disabled form fields. + +**2013-02-03** - Add demo page. + +**2013-01-28** - Add ```change``` event support and a demo page. + +**2012-10-26** - Use dashes in class names rather than camel case. + +**2012-10-24** - Initial public release. + + +###Prerequisites +jQuery version 1.4.2 or higher. 2.0+ or 1.10+ recommended. + + +###License +The same as JQuery... + + jQuery Plugin: Are-You-Sure (Dirty Form Detection) + https://github.com/codedance/jquery.AreYouSure/ + + Copyright (c) 2012-2014, Chris Dance - PaperCut Software http://www.papercut.com/ + Dual licensed under the MIT or GPL Version 2 licenses. + http://jquery.org/license diff --git a/library/jquery.AreYouSure/are-you-sure.jquery.json b/library/jquery.AreYouSure/are-you-sure.jquery.json new file mode 100644 index 000000000..9c699b72b --- /dev/null +++ b/library/jquery.AreYouSure/are-you-sure.jquery.json @@ -0,0 +1,39 @@ +{ + "name": "are-you-sure", + "title": "Are You Sure? - a dirty forms check plugin", + "description": "Are-you-sure is simple light-weight dirty forms JQuery Plugin for modern browsers. It helps prevent users from loosing unsaved form changes by prompting the user to save/submit. It's dependency free and designed for modern browsers... just the features you need and nothing more! See the project page and demo for usage and examples.", + "keywords": [ + "form", + "dirty", + "field", + "change", + "save", + "save-check", + "save-warning" + ], + "version": "1.9.0", + "author": { + "name": "Chris Dance (codedance) at PaperCut Software", + "url": "https://github.com/codedance" + }, + "maintainers": [ + { + "name": "Chris Dance", + "email": "chris.dance@papercut.com", + "url": "http://www.papercut.com/" + } + ], + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/codedance/jquery.AreYouSure/blob/master/README.md" + } + ], + "bugs": "https://github.com/codedance/jquery.AreYouSure/issues", + "homepage": "https://github.com/codedance/jquery.AreYouSure", + "docs": "https://github.com/codedance/jquery.AreYouSure", + "demo": "http://www.papercut.com/products/free_software/are-you-sure/demo/are-you-sure-demo.html", + "dependencies": { + "jquery": ">=1.4.2" + } +} diff --git a/library/jquery.AreYouSure/ays-beforeunload-shim.js b/library/jquery.AreYouSure/ays-beforeunload-shim.js new file mode 100644 index 000000000..cb864cdeb --- /dev/null +++ b/library/jquery.AreYouSure/ays-beforeunload-shim.js @@ -0,0 +1,31 @@ +/*! + * An experimental shim to partially emulate onBeforeUnload on iOS. + * Part of https://github.com/codedance/jquery.AreYouSure/ + * + * Copyright (c) 2012-2014, Chris Dance and PaperCut Software http://www.papercut.com/ + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Author: chris.dance@papercut.com + * Date: 19th May 2014 + */ +$(function() { + if (!navigator.userAgent.toLowerCase().match(/iphone|ipad|ipod|opera/)) { + return; + } + $('a').bind('click', function(evt) { + var href = $(evt.target).closest('a').attr('href'); + if (href !== undefined && !(href.match(/^#/) || href.trim() == '')) { + var response = $(window).triggerHandler('beforeunload', response); + if (response && response != "") { + var msg = response + "\n\n" + + "Press OK to leave this page or Cancel to stay."; + if (!confirm(msg)) { + return false; + } + } + window.location.href = href; + return false; + } + }); +}); diff --git a/library/jquery.AreYouSure/bower.json b/library/jquery.AreYouSure/bower.json new file mode 100644 index 000000000..8591dc0d0 --- /dev/null +++ b/library/jquery.AreYouSure/bower.json @@ -0,0 +1,30 @@ +{ + "name": "jquery.are-you-sure", + "version": "1.9.0", + "homepage": "https://github.com/codedance/jquery.AreYouSure", + "authors": [ + "CodeDance " + ], + "description": "A light-weight jQuery 'dirty forms' Plugin - it monitors html forms and alerts users to unsaved changes if they attempt to close the browser or navigate away from the page. (Are you sure?)", + "main": "jquery.are-you-sure.js", + "keywords": [ + "form", + "dirty", + "field", + "change", + "save-check", + "are-you-sure", + "save-warning" + ], + "license": "MIT/GPLv2", + "ignore": [ + "**/.*", + "demo" + ], + "dependencies": { + "jquery": ">=1.4.2" + }, + "devDependencies": { + "jasmine-jquery": "~2.0.3" + } +} diff --git a/library/jquery.AreYouSure/demo/are-you-sure-demo.html b/library/jquery.AreYouSure/demo/are-you-sure-demo.html new file mode 100644 index 000000000..3f0327b2e --- /dev/null +++ b/library/jquery.AreYouSure/demo/are-you-sure-demo.html @@ -0,0 +1,576 @@ + + + + Demo: Are You Sure? - a dirty forms jQuery Plugin + + + + + + + + + + + + +

jQuery Plugin Demo: Are You Sure?

+

+ This page hosts a demo of the jQuery Are-You-Sure plugin (jquery.are-you-sure.js). +

+

+ Are-you-sure is simple light-weight "dirty forms" JQuery Plugin for modern browsers. It helps prevent users from loosing unsaved form changes. +

+

+ Features: +

    +
  • Light weight - only the features you need!
  • +
  • Dependency free.
  • +
  • Correct state management - if a user edits then restores a value, the form is not considered dirty.
  • +
  • Easy to understand - less than a "terminal screen" of code!
  • +
  • ... and more.
  • +
+

+ +

Example 1: It's simple!

+

+ This example shows how easy it is to add a dirty check to your form(s) with one line + of code. (View the page's source) +

+ +
+

Enter Your Coffee Order

+
+ + +
+
+
+ 1 Shot - Standard
+ 2 Shots - Morning wakeup!
+ 3 Shots - Overdrive!
+
+
+ +
+
+ + +
+ +
+ Remember my order
+ + +
+
+

... or visit Google or close the window without saving!

+
+
+ +

Example 2: Ignore the unimportant!

+

+ This example highlights how to disregard a field from the dirty check. In this form + the first field is dynamically populated and hence a change on this field should not + mark the form as dirty. +

+
+

Enter Your Coffee Order

+
+ + + + +
+
+ + +
+
+
+ 1 Shot - Standard
+ 2 Shots - Morning wakeup!
+ 3 Shots - Overdrive!
+
+
+ +
+
+ + +
+ +
+ Remember my order
+ +
+
+

... or visit Google or close the window without saving!

+
+
+ + +

Example 3: Lets be intelligent!

+

+ This is a more advanced example. The dirty and clean change events are + intercepted so the save button is only enabled if the form is dirty (i.e. something to save). + It also demonstrates how to customize the warning message and change the style of a dirty + form (CSS styling using the .dirty class). +

+
+

Update My Standard Order

+
+ + +
+
+
+ 1 Shot - Standard
+ 2 Shots - Morning wakeup!
+ 3 Shots - Overdrive!
+
+
+ + +
+
+ + +
+ +
+ +
+
+

... or visit Google or close the window without saving!

+
+
+ +

Example 4: Lets be dynamic!

+

+ In this example we'll dymaically add a field and fire off the rescan event. After + the rescan, Are-You-Sure will start looking for changes on the new fields as well. +

+
+

Order Coffee For Pickup Now

+ +
+ + +
+
+
+ +
+
+

... or visit Google or close the window without saving!

+
+
+ +

Example 5: Edge cases

+

+ This example demonstrates tracking of hidden and disabled form elements that are changed by non-input elements. + E.g.: +

+
    +
  • clicking a link or non-input button that changes the value of a hidden form field, or
  • +
  • + clicking a link or non-input button that enables or disables some form fields (which has an effect on whether + or not those fields will be submitted with the form, despite the values not changing). +
  • +
+
+

Update My Standard Order

+
+ + +
+
+ + + + +
+
+ + + +
+
+ +
+
+

... or visit Google or close the window without saving!

+
+
+ +

Example 6: HTML5 inputs!

+

+ This example shows support for HTML5 input types. It's not a coffee order form, + but you need coffee if you're working with HTML5 :-) +

+ +
+

Doing HTML5? You'll need coffee!

+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ + +
+ +
+ + +
+
+

... or visit Google or close the window without saving!

+
+
+

Example 7: Mark current state as not dirty!

+

+ This example shows how you can mark the current state as not dirty. Handy for AJAX forms + we're you're managing your own submits. +

+ +
+

Tell us your default coffee

+
+ + +
+
+ +
+
+ +
+
+

... or visit Google or close the window without saving!

+
+
+ +

+ This jQuery plugin is developed by Chris Dance + at PaperCut Software - Are-You-Sure is used in + PaperCut's printing management software and it has been open sourced with help of + Tom, Jack and Matt from PaperCut's dev team. +

+ + + diff --git a/library/jquery.AreYouSure/jquery.are-you-sure.js b/library/jquery.AreYouSure/jquery.are-you-sure.js new file mode 100644 index 000000000..3c41e2fcc --- /dev/null +++ b/library/jquery.AreYouSure/jquery.are-you-sure.js @@ -0,0 +1,192 @@ +/*! + * jQuery Plugin: Are-You-Sure (Dirty Form Detection) + * https://github.com/codedance/jquery.AreYouSure/ + * + * Copyright (c) 2012-2014, Chris Dance and PaperCut Software http://www.papercut.com/ + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Author: chris.dance@papercut.com + * Version: 1.9.0 + * Date: 13th August 2014 + */ +(function($) { + + $.fn.areYouSure = function(options) { + + var settings = $.extend( + { + 'message' : 'You have unsaved changes!', + 'dirtyClass' : 'dirty', + 'change' : null, + 'silent' : false, + 'addRemoveFieldsMarksDirty' : false, + 'fieldEvents' : 'change keyup propertychange input', + 'fieldSelector': ":input:not(input[type=submit]):not(input[type=button])" + }, options); + + var getValue = function($field) { + if ($field.hasClass('ays-ignore') + || $field.hasClass('aysIgnore') + || $field.attr('data-ays-ignore') + || $field.attr('name') === undefined) { + return null; + } + + if ($field.is(':disabled')) { + return 'ays-disabled'; + } + + var val; + var type = $field.attr('type'); + if ($field.is('select')) { + type = 'select'; + } + + switch (type) { + case 'checkbox': + case 'radio': + val = $field.is(':checked'); + break; + case 'select': + val = ''; + $field.find('option').each(function(o) { + var $option = $(this); + if ($option.is(':selected')) { + val += $option.val(); + } + }); + break; + default: + val = $field.val(); + } + + return val; + }; + + var storeOrigValue = function($field) { + $field.data('ays-orig', getValue($field)); + }; + + var checkForm = function(evt) { + + var isFieldDirty = function($field) { + var origValue = $field.data('ays-orig'); + if (undefined === origValue) { + return false; + } + return (getValue($field) != origValue); + }; + + var $form = ($(this).is('form')) + ? $(this) + : $(this).parents('form'); + + // Test on the target first as it's the most likely to be dirty + if (isFieldDirty($(evt.target))) { + setDirtyStatus($form, true); + return; + } + + $fields = $form.find(settings.fieldSelector); + + if (settings.addRemoveFieldsMarksDirty) { + // Check if field count has changed + var origCount = $form.data("ays-orig-field-count"); + if (origCount != $fields.length) { + setDirtyStatus($form, true); + return; + } + } + + // Brute force - check each field + var isDirty = false; + $fields.each(function() { + $field = $(this); + if (isFieldDirty($field)) { + isDirty = true; + return false; // break + } + }); + + setDirtyStatus($form, isDirty); + }; + + var initForm = function($form) { + var fields = $form.find(settings.fieldSelector); + $(fields).each(function() { storeOrigValue($(this)); }); + $(fields).unbind(settings.fieldEvents, checkForm); + $(fields).bind(settings.fieldEvents, checkForm); + $form.data("ays-orig-field-count", $(fields).length); + setDirtyStatus($form, false); + }; + + var setDirtyStatus = function($form, isDirty) { + var changed = isDirty != $form.hasClass(settings.dirtyClass); + $form.toggleClass(settings.dirtyClass, isDirty); + + // Fire change event if required + if (changed) { + if (settings.change) settings.change.call($form, $form); + + if (isDirty) $form.trigger('dirty.areYouSure', [$form]); + if (!isDirty) $form.trigger('clean.areYouSure', [$form]); + $form.trigger('change.areYouSure', [$form]); + } + }; + + var rescan = function() { + var $form = $(this); + var fields = $form.find(settings.fieldSelector); + $(fields).each(function() { + var $field = $(this); + if (!$field.data('ays-orig')) { + storeOrigValue($field); + $field.bind(settings.fieldEvents, checkForm); + } + }); + // Check for changes while we're here + $form.trigger('checkform.areYouSure'); + }; + + var reinitialize = function() { + initForm($(this)); + } + + if (!settings.silent && !window.aysUnloadSet) { + window.aysUnloadSet = true; + $(window).bind('beforeunload', function() { + $dirtyForms = $("form").filter('.' + settings.dirtyClass); + if ($dirtyForms.length == 0) { + return; + } + // Prevent multiple prompts - seen on Chrome and IE + if (navigator.userAgent.toLowerCase().match(/msie|chrome/)) { + if (window.aysHasPrompted) { + return; + } + window.aysHasPrompted = true; + window.setTimeout(function() {window.aysHasPrompted = false;}, 900); + } + return settings.message; + }); + } + + return this.each(function(elem) { + if (!$(this).is('form')) { + return; + } + var $form = $(this); + + $form.submit(function() { + $form.removeClass(settings.dirtyClass); + }); + $form.bind('reset', function() { setDirtyStatus($form, false); }); + // Add a custom events + $form.bind('rescan.areYouSure', rescan); + $form.bind('reinitialize.areYouSure', reinitialize); + $form.bind('checkform.areYouSure', checkForm); + initForm($form); + }); + }; +})(jQuery); diff --git a/library/jquery.AreYouSure/package.json b/library/jquery.AreYouSure/package.json new file mode 100644 index 000000000..0b4c38dde --- /dev/null +++ b/library/jquery.AreYouSure/package.json @@ -0,0 +1,45 @@ +{ + "name": "jquery.AreYouSure", + "description": "A light-weight jQuery \"dirty forms\" Plugin - it monitors HTML forms and alerts users to unsaved changes if they attempt to close the browser or navigate away from the page. (Are you sure?)", + "homepage": "https://github.com/codedance/jquery.AreYouSure", + "author": "Chris Dance (https://github.com/codedance)", + "contributors": [ + "Tom Clift (https://github.com/tclift)", + "Jon Egerton (http://www.jonegerton.com/)", + "Scadoodles (https://github.com/Scadoodles)", + "Albin Sunnanbo (https://github.com/albinsunnanbo)", + "Marc Sutton (http://www.codev.co.uk)" + ], + "version": "1.9.0", + "license": "MIT/GPLv2", + "keywords": [ "dirty", "form", "onbeforeunload", "save", "check" ], + "main": "jquery.are-you-sure.js", + "engines": { + "node": ">=0.8.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/codedance/jquery.AreYouSure" + }, + "bugs": { + "url": "https://github.com/codedance/jquery.AreYouSure/issues" + }, + "dependencies": { + "jquery": ">=1.4.2" + }, + "devDependencies": { + "bower": "^1.3.1", + "grunt": "^0.4.5", + "grunt-cli": "^0.1.13", + "grunt-karma": "^0.8.3", + "karma-chrome-launcher": "^0.1.4", + "karma-jasmine": "^0.2.2", + "karma-ie-launcher": "^0.1.5", + "karma-firefox-launcher": "^0.1.3", + "karma-safari-launcher": "^0.1.1" + }, + "scripts": { + "postinstall": "node_modules/.bin/bower install", + "test": "node_modules/.bin/grunt test" + } +} diff --git a/library/jquery.AreYouSure/spec/javascripts/fixtures/input-text.html b/library/jquery.AreYouSure/spec/javascripts/fixtures/input-text.html new file mode 100644 index 000000000..1b2850759 --- /dev/null +++ b/library/jquery.AreYouSure/spec/javascripts/fixtures/input-text.html @@ -0,0 +1,4 @@ +
+ + +
diff --git a/library/jquery.AreYouSure/spec/javascripts/jquery.are-you-sure_spec.js b/library/jquery.AreYouSure/spec/javascripts/jquery.are-you-sure_spec.js new file mode 100644 index 000000000..5e02f7cb0 --- /dev/null +++ b/library/jquery.AreYouSure/spec/javascripts/jquery.are-you-sure_spec.js @@ -0,0 +1,28 @@ +'use strict'; + +// Karma adds 'base/' to the default path +jasmine.getFixtures().fixturesPath = 'base/spec/javascripts/fixtures'; + +describe("A form's", function() { + var $form = undefined; + + describe('text input', function() { + var $textInput = undefined; + + beforeEach(function() { + loadFixtures('input-text.html'); + $form = $('form'); + $textInput = $('input[type=text]'); + $form.areYouSure(); + }); + + it('should cause dirtyness after its value changes', function(done) { + expect($form.hasClass('dirty')).toBe(false); + $textInput.val('new').change(); + setTimeout(function() { + expect($form.hasClass('dirty')).toBe(true); + done(); + }, 0); + }); + }); +}); diff --git a/view/js/mod_admin.js b/view/js/mod_admin.js new file mode 100644 index 000000000..aad2ca902 --- /dev/null +++ b/view/js/mod_admin.js @@ -0,0 +1,3 @@ +$(document).ready(function() { + $('form').areYouSure(); // Warn user about unsaved settings +}); diff --git a/view/js/mod_profiles.js b/view/js/mod_profiles.js new file mode 100644 index 000000000..aad2ca902 --- /dev/null +++ b/view/js/mod_profiles.js @@ -0,0 +1,3 @@ +$(document).ready(function() { + $('form').areYouSure(); // Warn user about unsaved settings +}); diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js index 87c8c3a2b..ff859936a 100644 --- a/view/js/mod_settings.js +++ b/view/js/mod_settings.js @@ -2,6 +2,7 @@ var ispublic = aStr['everybody'] ; $(document).ready(function() { + $('form').areYouSure(); // Warn user about unsaved settings $("a#settings-default-perms-menu").colorbox({ 'inline' : true, diff --git a/view/php/theme_init.php b/view/php/theme_init.php index f28f9aa8d..33b7e87dc 100644 --- a/view/php/theme_init.php +++ b/view/php/theme_init.php @@ -44,6 +44,7 @@ head_add_js('docready.js'); head_add_js('library/colorbox/jquery.colorbox-min.js'); head_add_js('library/bootstrap-tagsinput/bootstrap-tagsinput.js'); +head_add_js('library/jquery.AreYouSure/jquery.are-you-sure.js'); /** * Those who require this feature will know what to do with it. * Those who don't, won't. From ef94747e5eb4d8b2e3566835280c31b848fc28e6 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Thu, 1 Jan 2015 14:36:17 +0100 Subject: [PATCH 4/9] Add field template for grouped selects --- view/tpl/field_select_grouped.tpl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 view/tpl/field_select_grouped.tpl diff --git a/view/tpl/field_select_grouped.tpl b/view/tpl/field_select_grouped.tpl new file mode 100644 index 000000000..c7fb4f322 --- /dev/null +++ b/view/tpl/field_select_grouped.tpl @@ -0,0 +1,12 @@ +
+ + + {{$field.3}} +
From 686b6ee1182c09969e2817b53825a78975c75bf5 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Thu, 1 Jan 2015 14:44:50 +0100 Subject: [PATCH 5/9] Use grouped select field for timezone selection --- include/datetime.php | 47 +++++++---------------------------- mod/settings.php | 4 +-- mod/setup.php | 2 +- view/tpl/install_settings.tpl | 2 +- view/tpl/settings.tpl | 2 +- 5 files changed, 13 insertions(+), 44 deletions(-) diff --git a/include/datetime.php b/include/datetime.php index 59dad2045..346d03bd4 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -14,25 +14,17 @@ function timezone_cmp($a, $b) { return ( t($a) < t($b)) ? -1 : 1; } -// emit a timezone selector grouped (primarily) by continent - -function select_timezone($current = 'America/Los_Angeles') { - +// Return timezones grouped (primarily) by continent +function get_timezones( ){ $timezone_identifiers = DateTimeZone::listIdentifiers(); - - $o =''; - return $o; -} -// return a select using 'field_select_raw' template, with timezones -// groupped (primarily) by continent -// arguments follow convetion as other field_* template array: -// 'name', 'label', $value, 'help' - -function field_timezone($name='timezone', $label='', $current = 'America/Los_Angeles', $help){ - $options = select_timezone($current); - $options = str_replace('','', $options); - - $tpl = get_markup_template('field_select_raw.tpl'); - return replace_macros($tpl, array( - '$field' => array($name, $label, $current, $help, $options), - )); - + if(!x($continents,$ex[0])) $continents[$ex[0]] = array(); + $continents[$continent][$value] = $city; + } + return $continents; } // General purpose date parse/convert function. diff --git a/mod/settings.php b/mod/settings.php index be6f2cfb9..bce04e436 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -1010,12 +1010,10 @@ function settings_content(&$a) { '$uid' => local_user(), '$form_security_token' => get_form_security_token("settings"), '$nickname_block' => $prof_addr, - - '$h_basic' => t('Basic Settings'), '$username' => array('username', t('Full Name:'), $username,''), '$email' => array('email', t('Email Address:'), $email, ''), - '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''), + '$timezone' => array('timezone_select' , t('Your Timezone:'), $timezone, '', get_timezones()), '$defloc' => array('defloc', t('Default Post Location:'), $defloc, t('Geographical location to display on your posts')), '$allowloc' => array('allow_location', t('Use Browser Location:'), ((get_pconfig(local_user(),'system','use_browser_location')) ? 1 : ''), ''), diff --git a/mod/setup.php b/mod/setup.php index 044def15a..6f2c7c074 100755 --- a/mod/setup.php +++ b/mod/setup.php @@ -349,7 +349,7 @@ function setup_content(&$a) { '$siteurl' => array('siteurl', t('Website URL'), z_root(), t('Please use SSL (https) URL if available.')), - '$timezone' => field_timezone('timezone', t('Please select a default timezone for your website'), $timezone, ''), + '$timezone' => array('timezone', t('Please select a default timezone for your website'), $timezone, '', get_timezones()), '$baseurl' => $a->get_baseurl(), diff --git a/view/tpl/install_settings.tpl b/view/tpl/install_settings.tpl index f4fd82fdb..62dcbb8b3 100755 --- a/view/tpl/install_settings.tpl +++ b/view/tpl/install_settings.tpl @@ -20,7 +20,7 @@ {{include file="field_input.tpl" field=$adminmail}} {{include file="field_input.tpl" field=$siteurl}} -{{$timezone}} +{{include file="field_select_grouped.tpl" field=$timezone}} diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 47d85d8e4..83da4f87e 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -9,7 +9,7 @@

{{$h_basic}}

{{include file="field_input.tpl" field=$username}} -{{include file="field_custom.tpl" field=$timezone}} +{{include file="field_select_grouped.tpl" field=$timezone}} {{include file="field_input.tpl" field=$defloc}} {{include file="field_checkbox.tpl" field=$allowloc}} From 85e76773a04995884e798a89cc285f48377bcb62 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Thu, 1 Jan 2015 15:54:16 +0100 Subject: [PATCH 6/9] Use grouped select field for role selection --- include/permissions.php | 38 +++++++++--------------------------- mod/new_channel.php | 7 ++----- mod/settings.php | 4 +--- view/js/mod_new_channel.js | 2 +- view/js/mod_settings.js | 4 ++-- view/tpl/new_channel.tpl | 5 +---- view/tpl/select_timezone.tpl | 11 +++++++++++ view/tpl/settings.tpl | 5 +---- 8 files changed, 28 insertions(+), 48 deletions(-) create mode 100644 view/tpl/select_timezone.tpl diff --git a/include/permissions.php b/include/permissions.php index 9e60223fb..ccbde1a7c 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -800,38 +800,18 @@ function get_role_perms($role) { } /** - * @brief Creates a HTML select field with all available roles. + * @brief Returns a list or roles, grouped by type * * @param string $current The current role - * @return string Returns the complete HTML code for this privacy-role-select field. + * @return string Returns an array of roles, grouped by type */ -function role_selector($current) { - - if(! $current) - $current = 'custom'; - +function get_roles() { $roles = array( - 'social' => array( t('Social Networking'), - array('social' => t('Mostly Public'), 'social_restricted' => t('Restricted'), 'social_private' => t('Private'))), - 'forum' => array( t('Community Forum'), - array('forum' => t('Mostly Public'), 'forum_restricted' => t('Restricted'), 'forum_private' => t('Private'))), - 'feed' => array( t('Feed Republish'), - array('feed' => t('Mostly Public'), 'feed_restricted' => t('Restricted'))), - 'special' => array( t('Special Purpose'), - array('soapbox' => t('Celebrity/Soapbox'), 'repository' => t('Group Repository'))), - 'other' => array( t('Other'), - array('custom' => t('Custom/Expert Mode')))); + t('Social Networking') => array('social' => t('Mostly Public'), 'social_restricted' => t('Restricted'), 'social_private' => t('Private')), + t('Community Forum') => array('forum' => t('Mostly Public'), 'forum_restricted' => t('Restricted'), 'forum_private' => t('Private')), + t('Feed Republish') => array('feed' => t('Mostly Public'), 'feed_restricted' => t('Restricted')), + t('Special Purpose') => array('soapbox' => t('Celebrity/Soapbox'), 'repository' => t('Group Repository')), + t('Other') => array('custom' => t('Custom/Expert Mode'))); - $o = ''; - - return $o; + return $roles; } diff --git a/mod/new_channel.php b/mod/new_channel.php index 185fc7c28..047048f0a 100644 --- a/mod/new_channel.php +++ b/mod/new_channel.php @@ -115,11 +115,8 @@ function new_channel_content(&$a) { '$nick_desc' => t('Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others.'), '$label_import' => t('Or import an existing channel from another location'), '$name' => $name, - '$label_role' => t('Channel Type'), - '$questionmark' => t('?'), - '$what_is_role' => t('What is this?'), - '$help_role' => t('Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you'), - '$role_select' => role_selector(($privacy_role) ? $privacy_role : 'social'), + '$help_role' => t('Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you'), + '$role' => array('permissions_role' , t('Channel Type'), ($privacy_role) ? $privacy_role : 'social', ''.t('Read more about roles').'',get_roles()), '$nickname' => $nickname, '$submit' => t('Create') )); diff --git a/mod/settings.php b/mod/settings.php index bce04e436..6f5c4287b 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -1042,9 +1042,7 @@ function settings_content(&$a) { '$aclselect' => populate_acl($perm_defaults,false), '$suggestme' => $suggestme, '$group_select' => $group_select, - '$role_lbl' => t('Channel permissions category:'), - - '$role_select' => role_selector($permissions_role), + '$role' => array('permissions_role' , t('Channel permissions category:'), $permissions_role, '', get_roles()), '$profile_in_dir' => $profile_in_dir, '$hide_friends' => $hide_friends, diff --git a/view/js/mod_new_channel.js b/view/js/mod_new_channel.js index 492267ff9..c4d5408f2 100644 --- a/view/js/mod_new_channel.js +++ b/view/js/mod_new_channel.js @@ -1,5 +1,5 @@ $(document).ready(function() { -// $("#privacy-role-select").sSelect(); +// $("#id_permissions_role").sSelect(); $("#newchannel-name").blur(function() { $("#name-spinner").spin('small'); var zreg_name = $("#newchannel-name").val(); diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js index 87c8c3a2b..90e17afc4 100644 --- a/view/js/mod_settings.js +++ b/view/js/mod_settings.js @@ -8,8 +8,8 @@ $(document).ready(function() { 'transition' : 'elastic' }); - $("#privacy-role-select").change(function() { - var role = $("#privacy-role-select").val(); + $("#id_permissions_role").change(function() { + var role = $("#id_permissions_role").val(); if(role == 'custom') $('#advanced-perm').show(); else diff --git a/view/tpl/new_channel.tpl b/view/tpl/new_channel.tpl index 241846eb4..ff2011181 100755 --- a/view/tpl/new_channel.tpl +++ b/view/tpl/new_channel.tpl @@ -5,10 +5,7 @@
{{$desc}}
{{$help_role}}
- - - {{$role_select}} - + {{include file="field_select_grouped.tpl" field=$role}}
diff --git a/view/tpl/select_timezone.tpl b/view/tpl/select_timezone.tpl new file mode 100644 index 000000000..2820a54f4 --- /dev/null +++ b/view/tpl/select_timezone.tpl @@ -0,0 +1,11 @@ +{{* TODO: Make id configurabel *}} + + diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 83da4f87e..53f08e24f 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -22,10 +22,7 @@

{{$h_prv}}

-
- -{{$role_select}} -
+{{include file="field_select_grouped.tpl" field=$role}}
{{include file="field_checkbox.tpl" field=$hide_presence}} From 1c2dc97a4a6e740d97ee29c8b7c4d0e37832ff4c Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Thu, 1 Jan 2015 18:19:17 +0100 Subject: [PATCH 7/9] Double click on day in calendar creats new event starting that day --- view/tpl/event_head.tpl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl index bcb1e07f6..03ea833f9 100755 --- a/view/tpl/event_head.tpl +++ b/view/tpl/event_head.tpl @@ -24,6 +24,11 @@ eventClick: function(calEvent, jsEvent, view) { showEvent(calEvent.id); }, + loading: function(isLoading, view) { + if(!isLoading) { + $('td.fc-day').dblclick(function() { window.location.href='https://caterva.eu/events/new?start='+$(this).data('date'); }); + } + }, eventRender: function(event, element, view) { //console.log(view.name); From 81c17cffdc89e712252b315cf5e34a0292bc0979 Mon Sep 17 00:00:00 2001 From: Erik Lundin Date: Fri, 2 Jan 2015 00:55:22 +0100 Subject: [PATCH 8/9] Swedish translation Original translation provided by RedSwede, redswede@redmatrix.nl. Proof-read and complemented by Erik Lundin. --- assets/home.html | 79 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 78 insertions(+), 1 deletion(-) diff --git a/assets/home.html b/assets/home.html index cad2045d0..16baab838 100644 --- a/assets/home.html +++ b/assets/home.html @@ -139,7 +139,8 @@ $(document).ready(function() { var known = { en: true, // ENGLISH fr: true, // FRENCH - nl: true // NETHERLANDS + nl: true, // NETHERLANDS + sv: true // SWEDISH // ADD YOUR LANGUAGE HERE. }; // Figure out the language, default to English because that's @@ -196,6 +197,55 @@ $(document).ready(function() { "Code Source Ouvert", "Gratuit", null); + else if (lang == "sv") // SWEDISH TRANSLATIONS + terms = new Array("Sekretess skalad för Internet", + "Socialt nätverkande", + "Single Sign-On", + "Fotoalbum", + "Decentraliserat", + "Molnlagring", + "Ditt eget innehåll", + "Blogg", + "End-to-end-kryptering", + "Chattrum", + "Delbara tilläggsprogram", + "Kontrollera behörighet mellan webbplatser", + "Ångra privata meddelanden", + "Skapa webbsidor", + "Innehållshantering", + "Tidsbegränsade meddelanden", + "Spel och verktyg", + "Inte styrt av företag", + "Forum", + "Gilla + Ogilla", + "Dela allt som är digitalt", + "Kommunikation", + "Identitsmedvetet innehåll", + "Pseudonymer", + "Multipla identiteter", + "Reklamfritt", + "Rich Text-inlägg/-kommentarer", + "Händelsekalender", + "Bokmärken", + "Gemensam taggning", + "Speglad katalog", + "Nomadisk identitet", + "Avknoppade kanaler", + "Anpassad kryptering", + "Multipla profiler", + "Sekretessgrupper", + "Fildelning", + "MIT-licens", + "Självständighet", + "Samhörighetsfiltrering", + "Vänförslag", + "Fjärrinloggning", + "Teman", + "Tillägg", + "Externt API", + "Tredjepartsappar", + "Öppen källkod", + null); // Find all
s with a class of "wrapper" and lang attribute equal // to `lang` and make them visibile. @@ -315,6 +365,33 @@ De RedMatrix is ideaal voor groepen mensen van welke omvang dan ook, van kleine
+ + + + From ffec1444e9e667d7aa7690162f7c99ef64622103 Mon Sep 17 00:00:00 2001 From: Erik Lundin Date: Fri, 2 Jan 2015 00:56:28 +0100 Subject: [PATCH 9/9] Update Swedish strings from Transifex --- view/sv/messages.po | 8708 ++++++++++++++++++++++--------------------- view/sv/strings.php | 1942 +++++----- 2 files changed, 5347 insertions(+), 5303 deletions(-) diff --git a/view/sv/messages.po b/view/sv/messages.po index 945ac691e..3cafa9809 100644 --- a/view/sv/messages.po +++ b/view/sv/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-28 00:04-0800\n" -"PO-Revision-Date: 2014-11-29 10:37+0000\n" +"POT-Creation-Date: 2014-12-26 00:04-0800\n" +"PO-Revision-Date: 2014-12-29 22:54+0000\n" "Last-Translator: Erik Lundin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/red-matrix/language/sv/)\n" "MIME-Version: 1.0\n" @@ -25,565 +25,293 @@ msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan inte hitta DNS-information för databasserver '%s'" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 +#: ../../mod/photos.php:91 ../../mod/photos.php:654 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 ../../mod/photos.php:91 -#: ../../mod/photos.php:654 +#: ../../mod/profile_photo.php:423 msgid "Profile Photos" msgstr "Profilfoton" -#: ../../include/conversation.php:120 ../../include/text.php:1747 -#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:45 -msgid "photo" -msgstr "foto" +#: ../../include/items.php:382 ../../mod/group.php:68 +#: ../../mod/subthread.php:49 ../../mod/profperm.php:23 ../../mod/like.php:246 +#: ../../index.php:389 +msgid "Permission denied" +msgstr "Behörighet saknas" -#: ../../include/conversation.php:123 ../../include/text.php:1750 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "händelse" +#: ../../include/items.php:969 ../../include/items.php:1014 +msgid "(Unknown)" +msgstr "(Okänt)" -#: ../../include/conversation.php:126 ../../mod/like.php:89 -msgid "channel" -msgstr "kanal" +#: ../../include/items.php:1171 +msgid "Visible to anybody on the internet." +msgstr "Kan ses av vem som helst på Internet." -#: ../../include/conversation.php:148 ../../include/text.php:1753 -#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:53 -msgid "status" -msgstr "status" +#: ../../include/items.php:1173 +msgid "Visible to you only." +msgstr "Kan bara ses av dig." -#: ../../include/conversation.php:150 ../../include/text.php:1755 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "kommentar" +#: ../../include/items.php:1175 +msgid "Visible to anybody in this network." +msgstr "Kan ses av alla på det här nätverket." -#: ../../include/conversation.php:164 ../../include/diaspora.php:1957 -#: ../../mod/like.php:336 +#: ../../include/items.php:1177 +msgid "Visible to anybody authenticated." +msgstr "Kan ses av alla inloggade." + +#: ../../include/items.php:1179 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gillar %2$ss %3$s" +msgid "Visible to anybody on %s." +msgstr "Kan ses av alla på %s." -#: ../../include/conversation.php:167 ../../mod/like.php:338 +#: ../../include/items.php:1181 +msgid "Visible to all connections." +msgstr "Kan ses av alla kontakter." + +#: ../../include/items.php:1183 +msgid "Visible to approved connections." +msgstr "Kan ses av godkända kontakter." + +#: ../../include/items.php:1185 +msgid "Visible to specific connections." +msgstr "Kan ses av valda kontakter." + +#: ../../include/items.php:3952 ../../mod/display.php:32 +#: ../../mod/thing.php:76 ../../mod/filestorage.php:26 ../../mod/admin.php:168 +#: ../../mod/admin.php:896 ../../mod/admin.php:1099 ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Posten hittades inte." + +#: ../../include/items.php:4019 ../../include/photos.php:15 +#: ../../include/attach.php:116 ../../include/attach.php:163 +#: ../../include/attach.php:226 ../../include/attach.php:240 +#: ../../include/attach.php:280 ../../include/attach.php:294 +#: ../../include/attach.php:318 ../../include/attach.php:511 +#: ../../include/attach.php:585 ../../include/chat.php:116 +#: ../../mod/mood.php:112 ../../mod/register.php:72 ../../mod/mitem.php:106 +#: ../../mod/achievements.php:30 ../../mod/settings.php:542 +#: ../../mod/group.php:9 ../../mod/poke.php:128 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/setup.php:207 ../../mod/authtest.php:13 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 +#: ../../mod/block.php:72 ../../mod/delegate.php:6 ../../mod/sources.php:66 +#: ../../mod/events.php:195 ../../mod/channel.php:90 ../../mod/channel.php:201 +#: ../../mod/channel.php:244 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/regmod.php:17 ../../mod/editpost.php:13 ../../mod/common.php:35 +#: ../../mod/connections.php:169 ../../mod/connedit.php:266 +#: ../../mod/mail.php:111 ../../mod/photos.php:68 ../../mod/webpages.php:67 +#: ../../mod/bookmarks.php:46 ../../mod/blocks.php:67 ../../mod/blocks.php:75 +#: ../../mod/editblock.php:65 ../../mod/pdledit.php:21 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:118 ../../mod/profile_photo.php:263 +#: ../../mod/profile_photo.php:276 ../../mod/like.php:154 +#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 +#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/locs.php:71 ../../mod/item.php:191 +#: ../../mod/item.php:199 ../../mod/item.php:972 ../../mod/suggest.php:26 +#: ../../mod/layouts.php:67 ../../mod/layouts.php:74 ../../mod/layouts.php:85 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:550 +#: ../../mod/manage.php:6 ../../mod/menu.php:61 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/network.php:12 +#: ../../mod/notifications.php:66 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 +#: ../../mod/message.php:16 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/page.php:28 ../../mod/page.php:78 +#: ../../mod/appman.php:66 ../../mod/service_limits.php:7 ../../index.php:190 +#: ../../index.php:390 +msgid "Permission denied." +msgstr "Behörighet saknas." + +#: ../../include/items.php:4410 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Kretsen hittades inte." + +#: ../../include/items.php:4425 +msgid "Collection is empty." +msgstr "Kretsen är tom." + +#: ../../include/items.php:4432 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gillar inte %2$ss %3$s" +msgid "Collection: %s" +msgstr "Krets: %s" -#: ../../include/conversation.php:204 +#: ../../include/items.php:4443 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s har nu kontakt med %2$s" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s puffade %2$s" - -#: ../../include/conversation.php:243 ../../include/text.php:905 -msgid "poked" -msgstr "puffade" - -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s är %2$s" - -#: ../../include/conversation.php:633 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "Välj" - -#: ../../include/conversation.php:634 ../../include/RedDAV/RedBrowser.php:251 -#: ../../include/apps.php:250 ../../include/ItemObject.php:120 -#: ../../mod/settings.php:626 ../../mod/connedit.php:476 -#: ../../mod/thing.php:234 ../../mod/group.php:176 ../../mod/admin.php:730 -#: ../../mod/admin.php:861 ../../mod/photos.php:1070 -msgid "Delete" -msgstr "Ta bort" - -#: ../../include/conversation.php:641 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "Privat meddelande" - -#: ../../include/conversation.php:648 ../../include/ItemObject.php:194 -msgid "Message signature validated" -msgstr "Meddelandesignatur bekräftad" - -#: ../../include/conversation.php:649 ../../include/ItemObject.php:195 -msgid "Message signature incorrect" -msgstr "Meddelandesignatur felaktig" - -#: ../../include/conversation.php:670 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Visa %ss profil på %s" - -#: ../../include/conversation.php:685 -msgid "Categories:" -msgstr "Kategorier:" - -#: ../../include/conversation.php:686 -msgid "Filed under:" -msgstr "Postat under:" - -#: ../../include/conversation.php:694 ../../include/ItemObject.php:266 -#, php-format -msgid " from %s" -msgstr "från %s" - -#: ../../include/conversation.php:697 ../../include/ItemObject.php:269 -#, php-format -msgid "last edited: %s" -msgstr "senast redigerat: %s" - -#: ../../include/conversation.php:698 ../../include/ItemObject.php:270 -#, php-format -msgid "Expires: %s" -msgstr "Upphör: %s" - -#: ../../include/conversation.php:713 -msgid "View in context" -msgstr "Visa sammanhang" - -#: ../../include/conversation.php:715 ../../include/conversation.php:1137 -#: ../../include/ItemObject.php:317 ../../mod/editblock.php:152 -#: ../../mod/editlayout.php:148 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:183 ../../mod/mail.php:238 ../../mod/mail.php:353 -#: ../../mod/photos.php:978 -msgid "Please wait" -msgstr "Vänta" - -#: ../../include/conversation.php:831 -msgid "remove" -msgstr "ta bort" - -#: ../../include/conversation.php:835 ../../include/nav.php:257 -msgid "Loading..." -msgstr "Laddar..." - -#: ../../include/conversation.php:836 -msgid "Delete Selected Items" -msgstr "Ta bort valda poster" - -#: ../../include/conversation.php:926 -msgid "View Source" -msgstr "Visa källa" - -#: ../../include/conversation.php:927 -msgid "Follow Thread" -msgstr "Följ tråd" - -#: ../../include/conversation.php:928 -msgid "View Status" -msgstr "Visa status" - -#: ../../include/conversation.php:929 ../../include/nav.php:99 -#: ../../mod/connedit.php:429 ../../mod/connedit.php:544 -msgid "View Profile" -msgstr "Visa profil" - -#: ../../include/conversation.php:930 -msgid "View Photos" -msgstr "Visa foton" - -#: ../../include/conversation.php:931 -msgid "Matrix Activity" -msgstr "Matrisaktivitet" - -#: ../../include/conversation.php:932 ../../include/identity.php:840 -#: ../../include/widgets.php:135 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 ../../mod/directory.php:235 -msgid "Connect" -msgstr "Ta kontakt" - -#: ../../include/conversation.php:933 -msgid "Edit Contact" -msgstr "Redigera kontakt" - -#: ../../include/conversation.php:934 -msgid "Send PM" -msgstr "Skicka meddelande" - -#: ../../include/conversation.php:935 ../../include/apps.php:143 -msgid "Poke" -msgstr "Puffa" - -#: ../../include/conversation.php:987 ../../include/RedDAV/RedBrowser.php:163 -#: ../../include/apps.php:331 ../../include/apps.php:382 -#: ../../mod/connedit.php:512 ../../mod/photos.php:713 -#: ../../mod/photos.php:1132 -msgid "Unknown" -msgstr "Okända" - -#: ../../include/conversation.php:1008 -#, php-format -msgid "%s likes this." -msgstr "%s gillar det här." - -#: ../../include/conversation.php:1008 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gillar inte det här." - -#: ../../include/conversation.php:1012 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d person gillar det här." -msgstr[1] "%2$d personer gillar det här." - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d person gillar inte det här." -msgstr[1] "%2$d personer gillar inte det här." - -#: ../../include/conversation.php:1020 -msgid "and" -msgstr "och" - -#: ../../include/conversation.php:1023 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", och %d annan person" -msgstr[1] ", och %d andra personer" - -#: ../../include/conversation.php:1024 -#, php-format -msgid "%s like this." -msgstr "%s gillar det här." - -#: ../../include/conversation.php:1024 -#, php-format -msgid "%s don't like this." -msgstr "%s gillar inte det här." - -#: ../../include/conversation.php:1081 -msgid "Visible to everybody" -msgstr "Kan ses av alla" - -#: ../../include/conversation.php:1082 ../../mod/mail.php:171 -#: ../../mod/mail.php:286 -msgid "Please enter a link URL:" -msgstr "Ange en länkadress:" - -#: ../../include/conversation.php:1083 -msgid "Please enter a video link/URL:" -msgstr "Ange en videolänkadress:" - -#: ../../include/conversation.php:1084 -msgid "Please enter an audio link/URL:" -msgstr "Ange en ljudlänkadress" - -#: ../../include/conversation.php:1085 -msgid "Tag term:" -msgstr "Tagguttryck" - -#: ../../include/conversation.php:1086 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Spara i mapp:" - -#: ../../include/conversation.php:1087 -msgid "Where are you right now?" -msgstr "Var är du just nu?" - -#: ../../include/conversation.php:1088 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:287 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Upphör YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1098 ../../include/page_widgets.php:40 -#: ../../include/ItemObject.php:630 ../../mod/webpages.php:166 -#: ../../mod/editblock.php:173 ../../mod/editlayout.php:168 -#: ../../mod/editpost.php:140 ../../mod/editwebpage.php:205 -#: ../../mod/photos.php:998 -msgid "Preview" -msgstr "Förhandsgranska" - -#: ../../include/conversation.php:1112 ../../mod/editblock.php:198 -#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 -#: ../../mod/layouts.php:168 ../../mod/photos.php:977 -msgid "Share" -msgstr "Dela" - -#: ../../include/conversation.php:1114 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Titel på sidlänk" - -#: ../../include/conversation.php:1117 -msgid "Post as" -msgstr "Posta som" - -#: ../../include/conversation.php:1118 ../../mod/editblock.php:144 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:235 ../../mod/mail.php:349 -msgid "Upload photo" -msgstr "Ladda upp foto" - -#: ../../include/conversation.php:1119 -msgid "upload photo" -msgstr "ladda upp foto" - -#: ../../include/conversation.php:1120 ../../mod/editblock.php:145 -#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:236 ../../mod/mail.php:350 -msgid "Attach file" -msgstr "Bifoga fil" - -#: ../../include/conversation.php:1121 -msgid "attach file" -msgstr "bifoga fil" - -#: ../../include/conversation.php:1122 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:142 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:237 ../../mod/mail.php:351 -msgid "Insert web link" -msgstr "Infoga webblänk" - -#: ../../include/conversation.php:1123 -msgid "web link" -msgstr "webblänk" - -#: ../../include/conversation.php:1124 -msgid "Insert video link" -msgstr "Infoga videolänk" - -#: ../../include/conversation.php:1125 -msgid "video link" -msgstr "videolänk" - -#: ../../include/conversation.php:1126 -msgid "Insert audio link" -msgstr "Infoga ljudlänk" - -#: ../../include/conversation.php:1127 -msgid "audio link" -msgstr "ljudlänk" - -#: ../../include/conversation.php:1128 ../../mod/editblock.php:150 -#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:181 -msgid "Set your location" -msgstr "Ange din plats" - -#: ../../include/conversation.php:1129 -msgid "set location" -msgstr "ange plats" - -#: ../../include/conversation.php:1130 ../../mod/editblock.php:151 -#: ../../mod/editlayout.php:147 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:182 -msgid "Clear browser location" -msgstr "Rensa webbläsarplats" - -#: ../../include/conversation.php:1131 -msgid "clear location" -msgstr "rensa plats" - -#: ../../include/conversation.php:1133 ../../mod/editblock.php:164 -#: ../../mod/editlayout.php:159 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:198 -msgid "Set title" -msgstr "Ange titel" - -#: ../../include/conversation.php:1136 ../../mod/events.php:574 -#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 -#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:200 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparerad lista)" - -#: ../../include/conversation.php:1138 ../../mod/editblock.php:153 -#: ../../mod/editlayout.php:149 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" -msgstr "Behörighetsinställningar" - -#: ../../include/conversation.php:1139 -msgid "permissions" -msgstr "behörighet" - -#: ../../include/conversation.php:1146 ../../mod/editblock.php:161 -#: ../../mod/editlayout.php:156 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:193 -msgid "Public post" -msgstr "Offentligt inlägg" - -#: ../../include/conversation.php:1148 ../../mod/editblock.php:168 -#: ../../mod/editlayout.php:163 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:201 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exempel: bob@example.com, mary@example.com" - -#: ../../include/conversation.php:1161 ../../mod/editblock.php:178 -#: ../../mod/editlayout.php:173 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:242 ../../mod/mail.php:356 -msgid "Set expiration date" -msgstr "Ange utgångsdatum" - -#: ../../include/conversation.php:1163 ../../include/ItemObject.php:633 -#: ../../mod/editpost.php:148 ../../mod/mail.php:244 ../../mod/mail.php:358 -msgid "Encrypt text" -msgstr "Kryptera text" - -#: ../../include/conversation.php:1165 ../../mod/events.php:580 -#: ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1166 ../../mod/settings.php:564 -#: ../../mod/settings.php:590 ../../mod/events.php:579 -#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Avbryt" - -#: ../../include/conversation.php:1410 -msgid "Discover" -msgstr "Upptäck" - -#: ../../include/conversation.php:1413 -msgid "Imported public streams" -msgstr "Importerade offentliga strömmar" - -#: ../../include/conversation.php:1418 -msgid "Commented Order" -msgstr "Kommentarsordning" - -#: ../../include/conversation.php:1421 -msgid "Sort by Comment Date" -msgstr "Ordna efter kommentarsdatum" - -#: ../../include/conversation.php:1425 -msgid "Posted Order" -msgstr "Inläggsordning" - -#: ../../include/conversation.php:1428 -msgid "Sort by Post Date" -msgstr "Ordna efter när inlägget skrevs" - -#: ../../include/conversation.php:1433 ../../include/widgets.php:89 -msgid "Personal" -msgstr "Personligt" - -#: ../../include/conversation.php:1436 -msgid "Posts that mention or involve you" -msgstr "Inlägg som nämner eller berör dig" - -#: ../../include/conversation.php:1442 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:80 -msgid "New" -msgstr "Nytt" - -#: ../../include/conversation.php:1445 -msgid "Activity Stream - by date" -msgstr "Aktivitetsström - efter datum" - -#: ../../include/conversation.php:1451 -msgid "Starred" -msgstr "Märkt" - -#: ../../include/conversation.php:1454 -msgid "Favourite Posts" -msgstr "Favoritinlägg" - -#: ../../include/conversation.php:1461 -msgid "Spam" -msgstr "Skräp" - -#: ../../include/conversation.php:1464 -msgid "Posts flagged as SPAM" -msgstr "Inlägg markerade som SKRÄP" - -#: ../../include/conversation.php:1504 ../../mod/admin.php:865 -msgid "Channel" -msgstr "Kanal" - -#: ../../include/conversation.php:1507 -msgid "Status Messages and Posts" -msgstr "Statusmeddelanden och inlägg" - -#: ../../include/conversation.php:1516 -msgid "About" -msgstr "Om" - -#: ../../include/conversation.php:1519 -msgid "Profile Details" -msgstr "Profildetaljer" - -#: ../../include/conversation.php:1525 ../../include/nav.php:105 -#: ../../include/apps.php:137 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foton" - -#: ../../include/conversation.php:1528 ../../include/photos.php:341 -msgid "Photo Albums" -msgstr "Fotoalbum" - -#: ../../include/conversation.php:1534 ../../include/RedDAV/RedBrowser.php:241 -#: ../../include/nav.php:106 ../../include/apps.php:133 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Filer" - -#: ../../include/conversation.php:1537 -msgid "Files and Storage" -msgstr "Filer och lagring" - -#: ../../include/conversation.php:1547 ../../include/conversation.php:1550 -msgid "Chatrooms" -msgstr "Chattrum" - -#: ../../include/conversation.php:1560 ../../include/nav.php:117 -#: ../../include/apps.php:127 -msgid "Bookmarks" -msgstr "Bokmärken" - -#: ../../include/conversation.php:1563 -msgid "Saved Bookmarks" -msgstr "Sparade bokmärken" - -#: ../../include/conversation.php:1571 ../../include/nav.php:121 -#: ../../include/apps.php:134 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webbsidor" - -#: ../../include/conversation.php:1574 -msgid "Manage Webpages" -msgstr "Hantera webbsidor" - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanalen är blockerad på den här servern." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Kanalplats saknas." - -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." -msgstr "Svar från den andra kanalen var ofullständigt." - -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen har tagits bort och finns inte längre." - -#: ../../include/follow.php:135 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protokoll inaktiverat." - -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "Kanalsökning misslyckades." - -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "hittade inte lokalt konto." - -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." -msgstr "Du kan inte kontakta dig själv." +msgid "Connection: %s" +msgstr "Kontakt: %s" + +#: ../../include/items.php:4446 +msgid "Connection not found." +msgstr "Kontakten hittades inte." + +#: ../../include/menu.php:42 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:261 +#: ../../include/ItemObject.php:100 ../../include/apps.php:254 +#: ../../mod/settings.php:627 ../../mod/editpost.php:112 +#: ../../mod/connections.php:381 ../../mod/connections.php:394 +#: ../../mod/connections.php:413 ../../mod/webpages.php:162 +#: ../../mod/blocks.php:132 ../../mod/editblock.php:143 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 +#: ../../mod/thing.php:233 ../../mod/layouts.php:167 ../../mod/menu.php:78 +msgid "Edit" +msgstr "Redigera" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Ingen mottagare angiven." + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[inget ämne]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kunde inte avgöra vem som är avsändare." + +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Den sparade posten kunde inte verifieras." + +#: ../../include/network.php:590 +msgid "view full size" +msgstr "visa full storlek" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan se mina normala strömmar och inlägg" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan se min standardkanalprofil" + +#: ../../include/permissions.php:28 +msgid "Can view my photo albums" +msgstr "Kan se mina fotoalbum" + +#: ../../include/permissions.php:29 +msgid "Can view my connections" +msgstr "Kan se mina kontakter" + +#: ../../include/permissions.php:30 +msgid "Can view my file storage" +msgstr "Kan se mitt filutrymme" + +#: ../../include/permissions.php:31 +msgid "Can view my webpages" +msgstr "Kan se mina webbsidor" + +#: ../../include/permissions.php:34 +msgid "Can send me their channel stream and posts" +msgstr "Kan skicka sina kanalströmmar och inlägg till mig" + +#: ../../include/permissions.php:35 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan posta inlägg på min kanalsida (\"vägg\")" + +#: ../../include/permissions.php:36 +msgid "Can comment on or like my posts" +msgstr "Kan kommentera eller gilla mina inlägg" + +#: ../../include/permissions.php:37 +msgid "Can send me private mail messages" +msgstr "Kan skicka privata meddelanden till mig" + +#: ../../include/permissions.php:38 +msgid "Can post photos to my photo albums" +msgstr "Kan lägga till foton i mitt fotoalbum" + +#: ../../include/permissions.php:39 +msgid "Can like/dislike stuff" +msgstr "Kan gilla/ogilla saker" + +#: ../../include/permissions.php:39 +msgid "Profiles and things other than posts/comments" +msgstr "Profiler och annat än inlägg/kommentarer" + +#: ../../include/permissions.php:41 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan vidarebefordra till alla mina kanalkontakter genom @omnämnanden" + +#: ../../include/permissions.php:41 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avancerat - användbart för att skapa kanaler för gruppforum" + +#: ../../include/permissions.php:42 +msgid "Can chat with me (when available)" +msgstr "Kan chatta med mig (när tillgänglig)" + +#: ../../include/permissions.php:43 +msgid "Can write to my file storage" +msgstr "Har skrivrättigheter i mitt filutrymme" + +#: ../../include/permissions.php:44 +msgid "Can edit my webpages" +msgstr "Kan redigera mina webbsidor" + +#: ../../include/permissions.php:46 +msgid "Can source my public posts in derived channels" +msgstr "Kan använda mina offentliga inlägg i kanaler nedströms" + +#: ../../include/permissions.php:46 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Ganska avancerat - väldigt användbart i öppna gemenskaper" + +#: ../../include/permissions.php:48 +msgid "Can administer my channel resources" +msgstr "Kan administrera mina kanalresurser" + +#: ../../include/permissions.php:48 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Extremt avancerat. Låt detta vara om du inte vet vad du gör" + +#: ../../include/permissions.php:814 +msgid "Social Networking" +msgstr "Socialt nätverkande" + +#: ../../include/permissions.php:815 ../../include/permissions.php:817 +#: ../../include/permissions.php:819 +msgid "Mostly Public" +msgstr "Mestadels offentligt" + +#: ../../include/permissions.php:815 ../../include/permissions.php:817 +#: ../../include/permissions.php:819 +msgid "Restricted" +msgstr "Begränsat" + +#: ../../include/permissions.php:815 ../../include/permissions.php:817 +msgid "Private" +msgstr "Privat" + +#: ../../include/permissions.php:816 +msgid "Community Forum" +msgstr "Gemenskapsforum" + +#: ../../include/permissions.php:818 +msgid "Feed Republish" +msgstr "Vidarepublicering av flöde" + +#: ../../include/permissions.php:820 +msgid "Special Purpose" +msgstr "Särskilt syfte" + +#: ../../include/permissions.php:821 +msgid "Celebrity/Soapbox" +msgstr "Kändis/talarstol" + +#: ../../include/permissions.php:821 +msgid "Group Repository" +msgstr "Gruppförråd" + +#: ../../include/permissions.php:822 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "Annat" + +#: ../../include/permissions.php:823 +msgid "Custom/Expert Mode" +msgstr "Anpassat/expertläge" #: ../../include/notify.php:23 msgid "created a new post" @@ -594,28 +322,74 @@ msgstr "skapade ett nytt inlägg" msgid "commented on %s's post" msgstr "kommenterade %ss inlägg" +#: ../../include/taxonomy.php:210 ../../include/taxonomy.php:229 +msgid "Tags" +msgstr "Taggar" + +#: ../../include/taxonomy.php:250 ../../include/contact_widgets.php:92 +#: ../../include/widgets.php:35 +msgid "Categories" +msgstr "Kategorier" + +#: ../../include/taxonomy.php:269 +msgid "Keywords" +msgstr "Nyckelord" + +#: ../../include/taxonomy.php:294 +msgid "have" +msgstr "har" + +#: ../../include/taxonomy.php:294 +msgid "has" +msgstr "har" + +#: ../../include/taxonomy.php:295 +msgid "want" +msgstr "vill ha" + +#: ../../include/taxonomy.php:295 +msgid "wants" +msgstr "vill ha" + +#: ../../include/taxonomy.php:296 ../../include/ItemObject.php:221 +msgid "like" +msgstr "gilla" + +#: ../../include/taxonomy.php:296 +msgid "likes" +msgstr "gillar" + +#: ../../include/taxonomy.php:297 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "ogilla" + +#: ../../include/taxonomy.php:297 +msgid "dislikes" +msgstr "ogillar" + +#: ../../include/taxonomy.php:380 ../../include/identity.php:1148 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1027 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "gillar detta" +msgstr[1] "gillar detta" + #: ../../include/page_widgets.php:6 msgid "New Page" msgstr "Ny sida" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/menu.php:42 ../../include/RedDAV/RedBrowser.php:250 -#: ../../include/apps.php:249 ../../include/ItemObject.php:100 -#: ../../mod/blocks.php:132 ../../mod/settings.php:625 -#: ../../mod/connections.php:381 ../../mod/connections.php:394 -#: ../../mod/connections.php:413 ../../mod/thing.php:233 -#: ../../mod/webpages.php:162 ../../mod/editblock.php:143 -#: ../../mod/editlayout.php:139 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 -#: ../../mod/menu.php:78 -msgid "Edit" -msgstr "Redigera" - -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:165 +#: ../../mod/blocks.php:135 ../../mod/layouts.php:171 msgid "View" msgstr "Visa" +#: ../../include/page_widgets.php:40 ../../include/conversation.php:1102 +#: ../../include/ItemObject.php:638 ../../mod/photos.php:998 +#: ../../mod/webpages.php:166 +msgid "Preview" +msgstr "Förhandsgranska" + #: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 msgid "Actions" msgstr "Åtgärder" @@ -636,80 +410,6 @@ msgstr "Skapad" msgid "Edited" msgstr "Ändrad" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d inbjudan tillgänglig" -msgstr[1] "%d inbjudningar tillgängliga" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 -msgid "Advanced" -msgstr "Avancerat" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Hitta kanaler" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Ange namn eller intresse" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Ta kontakt/följ" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exempel: Robert Morgenstein, Fiske" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:278 ../../mod/directory.php:283 -msgid "Find" -msgstr "Sök" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "Kanalförslag" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Slumpvald profil" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Bjud in vänner" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Avancerat exempel: name=fred and country=iceland" - -#: ../../include/contact_widgets.php:57 ../../include/features.php:73 -#: ../../include/widgets.php:303 -msgid "Saved Folders" -msgstr "Sparade mappar" - -#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:306 -msgid "Everything" -msgstr "Allt" - -#: ../../include/contact_widgets.php:92 ../../include/taxonomy.php:230 -#: ../../include/widgets.php:29 -msgid "Categories" -msgstr "Kategorier" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemensam kontakt" -msgstr[1] "%d gemensamma kontakter" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "visa fler" - #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "Inbäddat innehåll" @@ -718,21 +418,42 @@ msgstr "Inbäddat innehåll" msgid "Embedding disabled" msgstr "Inbäddning inaktiverat" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Ingen mottagare angiven." +#: ../../include/auth.php:130 +msgid "Logged out." +msgstr "Utloggad." -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[inget ämne]" +#: ../../include/auth.php:271 +msgid "Failed authentication" +msgstr "Inloggning misslyckades" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kunde inte avgöra vem som är avsändare." +#: ../../include/auth.php:285 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Inloggning misslyckades." -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Den sparade posten kunde inte verifieras." +#: ../../include/photos.php:105 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild överskrider webbplatsens storleksbegränsning på %lu byte" + +#: ../../include/photos.php:112 +msgid "Image file is empty." +msgstr "Bildfil är tom." + +#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 +msgid "Unable to process image" +msgstr "Kunde inte bearbeta bild" + +#: ../../include/photos.php:213 +msgid "Photo storage failed." +msgstr "Fotolagring misslyckades." + +#: ../../include/photos.php:341 ../../include/conversation.php:1533 +msgid "Photo Albums" +msgstr "Fotoalbum" + +#: ../../include/photos.php:345 +msgid "Upload New Photos" +msgstr "Ladda upp nya foton" #: ../../include/activities.php:39 msgid " and " @@ -742,172 +463,288 @@ msgstr " och " msgid "public profile" msgstr "offentlig profil" -#: ../../include/activities.php:52 +#: ../../include/activities.php:56 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "%1$s ändrade %2$s till "%3$s"" -#: ../../include/activities.php:53 +#: ../../include/activities.php:57 #, php-format msgid "Visit %1$s's %2$s" msgstr "Besök %1$ss %2$s" -#: ../../include/activities.php:56 +#: ../../include/activities.php:60 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s har en uppdaterad %2$s (har ändrat %3$s)." -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Kan ses av förinställda mottagare" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Visa" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Visa inte" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:596 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:137 -#: ../../mod/photos.php:588 ../../mod/photos.php:950 -msgid "Permissions" -msgstr "Behörighet" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:312 -#: ../../mod/photos.php:1149 -msgid "Close" -msgstr "Stäng" - -#: ../../include/bb2diaspora.php:384 +#: ../../include/bb2diaspora.php:366 msgid "Attachments:" msgstr "Bilagor:" -#: ../../include/bb2diaspora.php:463 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:445 ../../include/event.php:11 msgid "l F d, Y \\@ g:i A" msgstr "l j F Y \\k\\l. H.i" -#: ../../include/bb2diaspora.php:465 +#: ../../include/bb2diaspora.php:447 msgid "Redmatrix event notification:" msgstr "Händelsenotifiering från Redmatrix:" -#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 +#: ../../include/bb2diaspora.php:451 ../../include/event.php:20 msgid "Starts:" msgstr "Börjar:" -#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 +#: ../../include/bb2diaspora.php:459 ../../include/event.php:30 msgid "Finishes:" msgstr "Slutar:" -#: ../../include/bb2diaspora.php:485 ../../include/identity.php:891 -#: ../../include/event.php:40 ../../mod/events.php:590 -#: ../../mod/directory.php:170 +#: ../../include/bb2diaspora.php:467 ../../include/event.php:40 +#: ../../include/identity.php:891 ../../mod/events.php:590 +#: ../../mod/directory.php:199 msgid "Location:" msgstr "Plats:" -#: ../../include/attach.php:116 ../../include/attach.php:163 -#: ../../include/attach.php:226 ../../include/attach.php:240 -#: ../../include/attach.php:280 ../../include/attach.php:294 -#: ../../include/attach.php:318 ../../include/attach.php:511 -#: ../../include/attach.php:585 ../../include/photos.php:15 -#: ../../include/items.php:4019 ../../include/chat.php:116 -#: ../../mod/mood.php:112 ../../mod/mitem.php:106 -#: ../../mod/achievements.php:30 ../../mod/register.php:72 -#: ../../mod/sources.php:66 ../../mod/poke.php:128 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/authtest.php:13 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/setup.php:207 -#: ../../mod/settings.php:540 ../../mod/events.php:195 -#: ../../mod/channel.php:89 ../../mod/channel.php:198 -#: ../../mod/channel.php:241 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/regmod.php:17 ../../mod/common.php:35 ../../mod/like.php:154 -#: ../../mod/connections.php:169 ../../mod/connedit.php:266 -#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 -#: ../../mod/webpages.php:67 ../../mod/bookmarks.php:46 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:550 -#: ../../mod/editblock.php:65 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/item.php:191 ../../mod/item.php:199 ../../mod/item.php:971 -#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 -#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 -#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/locs.php:71 -#: ../../mod/mail.php:111 ../../mod/invite.php:13 ../../mod/invite.php:104 -#: ../../mod/manage.php:6 ../../mod/layouts.php:67 ../../mod/layouts.php:74 -#: ../../mod/layouts.php:85 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 -#: ../../mod/network.php:12 ../../mod/menu.php:61 ../../mod/message.php:16 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/notifications.php:66 ../../mod/page.php:28 ../../mod/page.php:78 -#: ../../mod/photos.php:68 ../../mod/appman.php:66 -#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." -msgstr "Behörighet saknas." +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Allmänna funktioner" -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "Posten hittades inte." +#: ../../include/features.php:25 +msgid "Content Expiration" +msgstr "Tidsbegränsat innehåll" -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "Ingen källfil." +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Ta bort inlägg/kommentarer och/eller privata meddelanden efter en tid" -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "Kan inte hitta fil att ersätta" +#: ../../include/features.php:26 +msgid "Multiple Profiles" +msgstr "Flera profiler" -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "Kan inte hitta fil att revidera/uppdatera" +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" +msgstr "Möjlighet att skapa flera profiler" -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Filen överskrider storleksbegränsningen %d" +#: ../../include/features.php:27 +msgid "Advanced Profiles" +msgstr "Avancerade profiler" -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor." +#: ../../include/features.php:27 +msgid "Additional profile sections and selections" +msgstr "Fler profilinställningar" -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd." +#: ../../include/features.php:28 +msgid "Profile Import/Export" +msgstr "Profilimport/-export" -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad." +#: ../../include/features.php:28 +msgid "Save and load profile details across sites/channels" +msgstr "Spara och ladda profiluppgifter mellan webbplatser/kanaler" -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "Sökväg inte tillgänglig." +#: ../../include/features.php:29 +msgid "Web Pages" +msgstr "Webbsidor" -#: ../../include/attach.php:590 -msgid "Empty pathname" -msgstr "Tom sökväg" +#: ../../include/features.php:29 +msgid "Provide managed web pages on your channel" +msgstr "Tillhandahåll ordnade webbsidor i din kanal" -#: ../../include/attach.php:606 -msgid "duplicate filename or path" -msgstr "filnamn eller sökväg finns redan" +#: ../../include/features.php:30 +msgid "Private Notes" +msgstr "Privata anteckningar" -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "Sökväg hittas inte." +#: ../../include/features.php:30 +msgid "Enables a tool to store notes and reminders" +msgstr "Aktivera ett verktyg för att spara anteckningar och påminnelser" -#: ../../include/attach.php:681 -msgid "mkdir failed." -msgstr "mkdir misslyckades." +#: ../../include/features.php:34 +msgid "Navigation Channel Select" +msgstr "Kanalväljare i navigation" -#: ../../include/attach.php:685 -msgid "database storage failed." -msgstr "databaslagring misslyckades." +#: ../../include/features.php:34 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Välj kanal direkt från navigationslistens rullgardinsmeny" + +#: ../../include/features.php:38 +msgid "Extended Identity Sharing" +msgstr "Utökad identitetsdelning" + +#: ../../include/features.php:38 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." +msgstr "Dela din identitet med alla webbplatser på Internet. Om inaktiverat är identiteten bara delad med platser i matrisen." + +#: ../../include/features.php:39 +msgid "Expert Mode" +msgstr "Expertläge" + +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Aktivera expertläge för att tillåta avancerade inställningar" + +#: ../../include/features.php:40 +msgid "Premium Channel" +msgstr "Premiumkanal" + +#: ../../include/features.php:40 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Låter dig ange begränsningar och villkor för dem som vill ansluta till din kanal" + +#: ../../include/features.php:45 +msgid "Post Composition Features" +msgstr "Skrivfunktioner" + +#: ../../include/features.php:47 +msgid "Use Markdown" +msgstr "Använd Markdown" + +#: ../../include/features.php:47 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Tillåt att \"Markdown\" används för att formatera inlägg" + +#: ../../include/features.php:49 ../../include/widgets.php:527 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanalkällor" + +#: ../../include/features.php:49 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importera kanalinnehåll från andra kanaler eller flöden automatiskt" + +#: ../../include/features.php:50 +msgid "Even More Encryption" +msgstr "Ytterligare kryptering" + +#: ../../include/features.php:50 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Tillåt änd-till-änd-kryptering av innehåll med en delad hemlig nyckel" + +#: ../../include/features.php:51 +msgid "Flag Adult Photos" +msgstr "Flagga vuxenfoton" + +#: ../../include/features.php:51 +msgid "Provide photo edit option to hide adult photos from default album view" +msgstr "Gör det möjligt att inte visa foton som är olämpliga för barn i albums standardvy" + +#: ../../include/features.php:56 +msgid "Network and Stream Filtering" +msgstr "Nätverk och strömfiltrering" + +#: ../../include/features.php:57 +msgid "Search by Date" +msgstr "Sök på datum" + +#: ../../include/features.php:57 +msgid "Ability to select posts by date ranges" +msgstr "Tillåter urval av inlägg baserat på datum" + +#: ../../include/features.php:58 +msgid "Collections Filter" +msgstr "Kretsfilter" + +#: ../../include/features.php:58 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Aktivera en väljare för att visa nätverksinlägg från enbart valda kretsar" + +#: ../../include/features.php:59 ../../include/widgets.php:272 +msgid "Saved Searches" +msgstr "Sparade sökningar" + +#: ../../include/features.php:59 +msgid "Save search terms for re-use" +msgstr "Spara sökuttryck för återanvändning" + +#: ../../include/features.php:60 +msgid "Network Personal Tab" +msgstr "Personlig nätverksflik" + +#: ../../include/features.php:60 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktivera en flik som visar endast de nätverksinlägg som du har deltagit i" + +#: ../../include/features.php:61 +msgid "Network New Tab" +msgstr "Flik för nytt på nätverket" + +#: ../../include/features.php:61 +msgid "Enable tab to display all new Network activity" +msgstr "Aktivera en flik som visar all ny nätverksaktivitet" + +#: ../../include/features.php:62 +msgid "Affinity Tool" +msgstr "Samhörighetsverktyg" + +#: ../../include/features.php:62 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrera strömaktivitet efter hur nära relationen är" + +#: ../../include/features.php:63 +msgid "Suggest Channels" +msgstr "Föreslå kanaler" + +#: ../../include/features.php:63 +msgid "Show channel suggestions" +msgstr "Visa förslag på kanaler" + +#: ../../include/features.php:68 +msgid "Post/Comment Tools" +msgstr "Inläggs-/kommentarsverktyg" + +#: ../../include/features.php:71 +msgid "Tagging" +msgstr "Taggning" + +#: ../../include/features.php:71 +msgid "Ability to tag existing posts" +msgstr "Möjlighet att tagga befintliga inlägg" + +#: ../../include/features.php:72 +msgid "Post Categories" +msgstr "Inläggskategorier" + +#: ../../include/features.php:72 +msgid "Add categories to your posts" +msgstr "Lägg till kategorier till dina inlägg" + +#: ../../include/features.php:73 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:302 +msgid "Saved Folders" +msgstr "Sparade mappar" + +#: ../../include/features.php:73 +msgid "Ability to file posts under folders" +msgstr "Möjlighet att lägga inlägg i mappar" + +#: ../../include/features.php:74 +msgid "Dislike Posts" +msgstr "Ogilla inlägg" + +#: ../../include/features.php:74 +msgid "Ability to dislike posts/comments" +msgstr "Möjlighet att ogilla inlägg/kommentarer" + +#: ../../include/features.php:75 +msgid "Star Posts" +msgstr "Märk inlägg" + +#: ../../include/features.php:75 +msgid "Ability to mark special posts with a star indicator" +msgstr "Möjlighet att märka speciella inlägg med en stjärna" + +#: ../../include/features.php:76 +msgid "Tag Cloud" +msgstr "Taggmoln" + +#: ../../include/features.php:76 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Tillhandahåll ett personligt taggmoln på din kanalsida" #: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:249 +#: ../../include/RedDAV/RedBrowser.php:260 msgid "parent" msgstr "en nivå upp" @@ -935,6 +772,13 @@ msgstr "Schemainkorg" msgid "Schedule Outbox" msgstr "Schemautkorg" +#: ../../include/RedDAV/RedBrowser.php:163 ../../include/conversation.php:992 +#: ../../include/apps.php:336 ../../include/apps.php:387 +#: ../../mod/connedit.php:513 ../../mod/photos.php:713 +#: ../../mod/photos.php:1132 +msgid "Unknown" +msgstr "Okända" + #: ../../include/RedDAV/RedBrowser.php:223 #, php-format msgid "%1$s used" @@ -945,42 +789,56 @@ msgstr "%1$s använt" msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s använt av %2$s (%3$s%)" -#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:565 -#: ../../mod/settings.php:591 ../../mod/admin.php:866 -msgid "Name" -msgstr "Namn" +#: ../../include/RedDAV/RedBrowser.php:247 ../../include/conversation.php:1539 +#: ../../include/apps.php:135 ../../include/nav.php:106 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Filer" -#: ../../include/RedDAV/RedBrowser.php:246 -msgid "Type" -msgstr "Typ" - -#: ../../include/RedDAV/RedBrowser.php:247 -msgid "Size" -msgstr "Storlek" - -#: ../../include/RedDAV/RedBrowser.php:248 -msgid "Last Modified" -msgstr "Senast ändrad" - -#: ../../include/RedDAV/RedBrowser.php:252 +#: ../../include/RedDAV/RedBrowser.php:249 msgid "Total" msgstr "Totalt" -#: ../../include/RedDAV/RedBrowser.php:305 +#: ../../include/RedDAV/RedBrowser.php:256 ../../mod/settings.php:567 +#: ../../mod/settings.php:593 ../../mod/admin.php:866 +msgid "Name" +msgstr "Namn" + +#: ../../include/RedDAV/RedBrowser.php:257 +msgid "Type" +msgstr "Typ" + +#: ../../include/RedDAV/RedBrowser.php:258 +msgid "Size" +msgstr "Storlek" + +#: ../../include/RedDAV/RedBrowser.php:259 +msgid "Last Modified" +msgstr "Senast ändrad" + +#: ../../include/RedDAV/RedBrowser.php:262 ../../include/conversation.php:639 +#: ../../include/ItemObject.php:120 ../../include/apps.php:255 +#: ../../mod/settings.php:628 ../../mod/group.php:176 +#: ../../mod/connedit.php:476 ../../mod/photos.php:1070 +#: ../../mod/thing.php:234 ../../mod/admin.php:730 ../../mod/admin.php:861 +msgid "Delete" +msgstr "Ta bort" + +#: ../../include/RedDAV/RedBrowser.php:310 msgid "Create new folder" msgstr "Skapa ny mapp" -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:169 -#: ../../mod/menu.php:100 ../../mod/new_channel.php:122 +#: ../../include/RedDAV/RedBrowser.php:311 ../../mod/mitem.php:169 +#: ../../mod/menu.php:100 ../../mod/new_channel.php:124 msgid "Create" msgstr "Skapa" -#: ../../include/RedDAV/RedBrowser.php:307 +#: ../../include/RedDAV/RedBrowser.php:312 msgid "Upload file" msgstr "Ladda upp fil" -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:361 -#: ../../mod/photos.php:738 ../../mod/photos.php:1246 +#: ../../include/RedDAV/RedBrowser.php:313 ../../mod/photos.php:738 +#: ../../mod/photos.php:1246 ../../mod/profile_photo.php:361 msgid "Upload" msgstr "Ladda upp" @@ -989,258 +847,45 @@ msgstr "Ladda upp" msgid "%1$s's bookmarks" msgstr "%1$ss bokmärken" -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1485 -msgid "Logout" -msgstr "Logga ut" +#: ../../include/dir_fns.php:68 +msgid "Directory Options" +msgstr "Katalogalternativ" -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" -msgstr "Avsluta sessionen" +#: ../../include/dir_fns.php:69 +msgid "Alphabetic" +msgstr "Alfabetisk" -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "Hem" +#: ../../include/dir_fns.php:70 +msgid "Reverse Alphabetic" +msgstr "Omvänd alfabetisk" -#: ../../include/nav.php:98 -msgid "Your posts and conversations" -msgstr "Dina inlägg och konversationer" +#: ../../include/dir_fns.php:71 +msgid "Newest to Oldest" +msgstr "Nyast till äldst" -#: ../../include/nav.php:99 -msgid "Your profile page" -msgstr "Din profilsida" +#: ../../include/dir_fns.php:72 +msgid "Oldest to Newest" +msgstr "Äldst till nyast" -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "Redigera profiler" +#: ../../include/dir_fns.php:73 +msgid "Public Forums Only" +msgstr "Endast offentliga forum" -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "Hantera/redigera profiler" +#: ../../include/dir_fns.php:75 +msgid "Sort" +msgstr "Ordning" -#: ../../include/nav.php:103 ../../include/identity.php:864 -msgid "Edit Profile" -msgstr "Redigera profil" +#: ../../include/dir_fns.php:91 +msgid "Enable Safe Search" +msgstr "Aktivera säker sökning" -#: ../../include/nav.php:103 -msgid "Edit your profile" -msgstr "Redigera din profil" +#: ../../include/dir_fns.php:93 +msgid "Disable Safe Search" +msgstr "Avaktivera säker sökning" -#: ../../include/nav.php:105 -msgid "Your photos" -msgstr "Dina foton" - -#: ../../include/nav.php:106 -msgid "Your files" -msgstr "Dina filer" - -#: ../../include/nav.php:111 ../../include/apps.php:144 -msgid "Chat" -msgstr "Chatt" - -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "Dina chattrum" - -#: ../../include/nav.php:117 -msgid "Your bookmarks" -msgstr "Dina bokmärken" - -#: ../../include/nav.php:121 -msgid "Your webpages" -msgstr "Dina webbsidor" - -#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1486 -msgid "Login" -msgstr "Logga in" - -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "Logga in" - -#: ../../include/nav.php:142 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klicka för att logga ut" - -#: ../../include/nav.php:145 -msgid "Remote authentication" -msgstr "Fjärrinloggning" - -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" -msgstr "Klicka för att autentisera mot din hemmahubb" - -#: ../../include/nav.php:159 -msgid "Home Page" -msgstr "Hemsida" - -#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1464 -msgid "Register" -msgstr "Skapa konto" - -#: ../../include/nav.php:163 -msgid "Create an account" -msgstr "Skapa ett konto" - -#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" -msgstr "Hjälp" - -#: ../../include/nav.php:168 -msgid "Help and documentation" -msgstr "Hjälp och dokumentation" - -#: ../../include/nav.php:171 ../../include/widgets.php:86 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Appar" - -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" -msgstr "Applikationer, verktyg, länkar, spel" - -#: ../../include/nav.php:173 ../../include/text.php:826 -#: ../../include/text.php:838 ../../include/apps.php:145 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "Sök" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "Sök innehåll" - -#: ../../include/nav.php:176 ../../include/apps.php:139 -#: ../../mod/directory.php:282 -msgid "Directory" -msgstr "Katalog" - -#: ../../include/nav.php:176 -msgid "Channel Directory" -msgstr "Kanalkatalog" - -#: ../../include/nav.php:190 ../../include/apps.php:131 -msgid "Matrix" -msgstr "Matris" - -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "Din matris" - -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -msgstr "Märk alla matrisnotifieringar som lästa" - -#: ../../include/nav.php:193 ../../include/apps.php:135 -msgid "Channel Home" -msgstr "Kanalhem" - -#: ../../include/nav.php:193 -msgid "Channel home" -msgstr "Kanalhem" - -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "Märk alla kanalnotifieringar som lästa" - -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Kontakter" - -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "Meddelanden" - -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "Notifieringar" - -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "Se alla notifieringar" - -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Märk alla systemnotifieringar som lästa" - -#: ../../include/nav.php:204 ../../include/apps.php:141 -msgid "Mail" -msgstr "Privat meddelande" - -#: ../../include/nav.php:204 -msgid "Private mail" -msgstr "Privat meddelande" - -#: ../../include/nav.php:205 -msgid "See all private messages" -msgstr "Se alla privata meddelanden" - -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "Märk alla privata meddelanden som lästa" - -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "Inkorg" - -#: ../../include/nav.php:208 -msgid "Outbox" -msgstr "Utkorg" - -#: ../../include/nav.php:209 ../../include/widgets.php:572 -msgid "New Message" -msgstr "Nytt meddelande" - -#: ../../include/nav.php:212 ../../include/apps.php:138 -#: ../../mod/events.php:442 -msgid "Events" -msgstr "Händelser" - -#: ../../include/nav.php:212 -msgid "Event Calendar" -msgstr "Kalender" - -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "Se alla händelser" - -#: ../../include/nav.php:214 -msgid "Mark all events seen" -msgstr "Märk alla händelser som lästa" - -#: ../../include/nav.php:216 ../../include/apps.php:130 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanalhanterare" - -#: ../../include/nav.php:216 -msgid "Manage Your Channels" -msgstr "Hantera dina kanaler" - -#: ../../include/nav.php:218 ../../include/widgets.php:548 -#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 -msgid "Settings" -msgstr "Inställningar" - -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" -msgstr "Konto-/kanalinställningar" - -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" -msgstr "Serverinställning och -konfiguration" - -#: ../../include/nav.php:262 -msgid "Please wait..." -msgstr "Vänta..." - -#: ../../include/network.php:590 -msgid "view full size" -msgstr "visa full storlek" +#: ../../include/dir_fns.php:95 +msgid "Safe Mode" +msgstr "Säkert läge" #: ../../include/comanche.php:35 ../../mod/admin.php:353 #: ../../view/theme/apw/php/config.php:185 @@ -1284,7 +929,7 @@ msgid "RSS/Atom" msgstr "RSS/Atom" #: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 -#: ../../mod/admin.php:735 ../../boot.php:1488 +#: ../../mod/admin.php:735 ../../boot.php:1542 msgid "Email" msgstr "E-post" @@ -1312,475 +957,439 @@ msgstr "XMPP/IM" msgid "MySpace" msgstr "MySpace" -#: ../../include/identity.php:31 ../../mod/item.php:1368 -msgid "Unable to obtain identity information from database" -msgstr "Kunde inte hämta från databasen" +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Kan ses av förinställda mottagare" -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Tomt namn" +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Visa" -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "För långt namn" +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Visa inte" -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Ingen kontoidentifierare" +#: ../../include/acl_selectors.php:248 ../../mod/events.php:596 +#: ../../mod/chat.php:209 ../../mod/photos.php:588 ../../mod/photos.php:950 +#: ../../mod/filestorage.php:137 +msgid "Permissions" +msgstr "Behörighet" -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Smeknamn måste anges." +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 +#: ../../mod/photos.php:1149 +msgid "Close" +msgstr "Stäng" -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reserverat smeknamn. Välj ett annat." +#: ../../include/text.php:320 +msgid "prev" +msgstr "föregående" -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Smeknamnet innehåller otillåtna tecken eller är redan upptaget på den här servern." +#: ../../include/text.php:322 +msgid "first" +msgstr "första" -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Kunde inte hämta den skapade identiteten" +#: ../../include/text.php:351 +msgid "last" +msgstr "sista" -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standardprofil" +#: ../../include/text.php:354 +msgid "next" +msgstr "nästa" -#: ../../include/identity.php:387 ../../include/identity.php:388 -#: ../../include/identity.php:395 ../../include/widgets.php:431 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:318 -#: ../../mod/settings.php:322 ../../mod/settings.php:323 -#: ../../mod/settings.php:326 ../../mod/settings.php:337 -#: ../../mod/connedit.php:509 -msgid "Friends" -msgstr "Vänner" +#: ../../include/text.php:366 +msgid "older" +msgstr "äldre" -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Den begärda kanalen är inte tillgänglig" +#: ../../include/text.php:368 +msgid "newer" +msgstr "nyare" -#: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/blocks.php:29 ../../mod/connect.php:13 -#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 -msgid "Requested profile is not available." -msgstr "Begärd profil är inte tillgänglig." +#: ../../include/text.php:756 +msgid "No connections" +msgstr "Inga kontakter" -#: ../../include/identity.php:854 ../../mod/profiles.php:740 -msgid "Change profile photo" -msgstr "Bytprofilfoto" - -#: ../../include/identity.php:860 -msgid "Profiles" -msgstr "Profiler" - -#: ../../include/identity.php:860 -msgid "Manage/edit profiles" -msgstr "Hantera/redigera profiler" - -#: ../../include/identity.php:861 ../../mod/profiles.php:741 -msgid "Create New Profile" -msgstr "Skapa ny profil" - -#: ../../include/identity.php:875 ../../mod/profiles.php:752 -msgid "Profile Image" -msgstr "Profilbild" - -#: ../../include/identity.php:878 -msgid "visible to everybody" -msgstr "synlig för alla" - -#: ../../include/identity.php:879 ../../mod/profiles.php:635 -#: ../../mod/profiles.php:756 -msgid "Edit visibility" -msgstr "Redigera synlighet" - -#: ../../include/identity.php:895 ../../include/identity.php:1132 -msgid "Gender:" -msgstr "Kön:" - -#: ../../include/identity.php:896 ../../include/identity.php:1176 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:897 ../../include/identity.php:1187 -msgid "Homepage:" -msgstr "Hemsida:" - -#: ../../include/identity.php:898 -msgid "Online Now" -msgstr "Online nu" - -#: ../../include/identity.php:976 ../../include/identity.php:1056 -#: ../../mod/ping.php:326 -msgid "g A l F d" -msgstr "l j F \\k\\l G" - -#: ../../include/identity.php:977 ../../include/identity.php:1057 -msgid "F d" -msgstr "j F" - -#: ../../include/identity.php:1022 ../../include/identity.php:1097 -#: ../../mod/ping.php:348 -msgid "[today]" -msgstr "[i dag]" - -#: ../../include/identity.php:1034 -msgid "Birthday Reminders" -msgstr "Födelsedagspåminnelser" - -#: ../../include/identity.php:1035 -msgid "Birthdays this week:" -msgstr "Födelsedagar den här veckan:" - -#: ../../include/identity.php:1090 -msgid "[No description]" -msgstr "[Ingen beskrivning]" - -#: ../../include/identity.php:1108 -msgid "Event Reminders" -msgstr "Händelsepåminnelser" - -#: ../../include/identity.php:1109 -msgid "Events this week:" -msgstr "Händelser den här veckan:" - -#: ../../include/identity.php:1122 ../../include/identity.php:1240 -#: ../../include/apps.php:136 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/identity.php:1130 ../../mod/settings.php:1005 -msgid "Full Name:" -msgstr "Fullständigt namn:" - -#: ../../include/identity.php:1137 -msgid "Like this channel" -msgstr "Gilla den här kanalen" - -#: ../../include/identity.php:1148 ../../include/taxonomy.php:360 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1027 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "gillar detta" -msgstr[1] "gillar detta" - -#: ../../include/identity.php:1161 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/identity.php:1162 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:1169 -msgid "Birthday:" -msgstr "Födelsedag:" - -#: ../../include/identity.php:1173 -msgid "Age:" -msgstr "Ålder:" - -#: ../../include/identity.php:1182 +#: ../../include/text.php:772 #, php-format -msgid "for %1$d %2$s" -msgstr "i %1$d %2$s" +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontakter" -#: ../../include/identity.php:1185 ../../mod/profiles.php:657 -msgid "Sexual Preference:" -msgstr "Sexuell preferens:" +#: ../../include/text.php:785 +msgid "View Connections" +msgstr "Visa kontakter" -#: ../../include/identity.php:1189 ../../mod/profiles.php:659 -msgid "Hometown:" -msgstr "Hemort:" +#: ../../include/text.php:842 ../../include/text.php:854 +#: ../../include/apps.php:147 ../../include/nav.php:173 +#: ../../mod/search.php:30 +msgid "Search" +msgstr "Sök" -#: ../../include/identity.php:1191 -msgid "Tags:" -msgstr "Taggar:" +#: ../../include/text.php:843 ../../include/text.php:855 +#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1339 +#: ../../mod/admin.php:1360 +msgid "Save" +msgstr "Spara" -#: ../../include/identity.php:1193 ../../mod/profiles.php:660 -msgid "Political Views:" -msgstr "Politisk åskådning:" +#: ../../include/text.php:920 +msgid "poke" +msgstr "puffa" -#: ../../include/identity.php:1195 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/text.php:920 ../../include/conversation.php:243 +msgid "poked" +msgstr "puffade" -#: ../../include/identity.php:1197 -msgid "About:" -msgstr "Om:" +#: ../../include/text.php:921 +msgid "ping" +msgstr "pinga" -#: ../../include/identity.php:1199 -msgid "Hobbies/Interests:" -msgstr "Fritidssysselsättning/intressen:" +#: ../../include/text.php:921 +msgid "pinged" +msgstr "pingade" -#: ../../include/identity.php:1201 ../../mod/profiles.php:663 -msgid "Likes:" -msgstr "Gillar:" +#: ../../include/text.php:922 +msgid "prod" +msgstr "stöt till" -#: ../../include/identity.php:1203 ../../mod/profiles.php:664 -msgid "Dislikes:" -msgstr "Ogillar:" +#: ../../include/text.php:922 +msgid "prodded" +msgstr "stötte till" -#: ../../include/identity.php:1206 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation och sociala nätverk:" +#: ../../include/text.php:923 +msgid "slap" +msgstr "daska till" -#: ../../include/identity.php:1208 -msgid "My other channels:" -msgstr "Mina andra kanaler:" +#: ../../include/text.php:923 +msgid "slapped" +msgstr "daskade till" -#: ../../include/identity.php:1210 -msgid "Musical interests:" -msgstr "Musikintressen:" +#: ../../include/text.php:924 +msgid "finger" +msgstr "fingra på" -#: ../../include/identity.php:1212 -msgid "Books, literature:" -msgstr "Böcker, litteratur:" +#: ../../include/text.php:924 +msgid "fingered" +msgstr "fingrade på" -#: ../../include/identity.php:1214 -msgid "Television:" -msgstr "Tv:" +#: ../../include/text.php:925 +msgid "rebuff" +msgstr "stöt tillbaka" -#: ../../include/identity.php:1216 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underhållning:" +#: ../../include/text.php:925 +msgid "rebuffed" +msgstr "stötte tillbaks" -#: ../../include/identity.php:1218 -msgid "Love/Romance:" -msgstr "Kärlek/romantik:" +#: ../../include/text.php:935 +msgid "happy" +msgstr "glad" -#: ../../include/identity.php:1220 -msgid "Work/employment:" -msgstr "Arbete/sysselsättning:" +#: ../../include/text.php:936 +msgid "sad" +msgstr "ledsen" -#: ../../include/identity.php:1222 -msgid "School/education:" -msgstr "Skola/utbildning:" +#: ../../include/text.php:937 +msgid "mellow" +msgstr "lugn" -#: ../../include/identity.php:1242 -msgid "Like this thing" -msgstr "Gilla den här saken" +#: ../../include/text.php:938 +msgid "tired" +msgstr "trött" -#: ../../include/bbcode.php:112 ../../include/bbcode.php:655 -#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 -#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 -#: ../../include/bbcode.php:672 ../../include/bbcode.php:677 -#: ../../include/bbcode.php:680 ../../include/bbcode.php:685 -#: ../../include/bbcode.php:688 ../../include/bbcode.php:691 -#: ../../include/bbcode.php:694 -msgid "Image/photo" -msgstr "Bild/foto" +#: ../../include/text.php:939 +msgid "perky" +msgstr "uppåt" -#: ../../include/bbcode.php:147 ../../include/bbcode.php:705 -msgid "Encrypted content" -msgstr "Krypterat innehåll" +#: ../../include/text.php:940 +msgid "angry" +msgstr "arg" -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "Installera designelement: " +#: ../../include/text.php:941 +msgid "stupified" +msgstr "virrig" -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "QR-kod" +#: ../../include/text.php:942 +msgid "puzzled" +msgstr "förbryllad" -#: ../../include/bbcode.php:220 +#: ../../include/text.php:943 +msgid "interested" +msgstr "intresserad" + +#: ../../include/text.php:944 +msgid "bitter" +msgstr "bitter" + +#: ../../include/text.php:945 +msgid "cheerful" +msgstr "munter" + +#: ../../include/text.php:946 +msgid "alive" +msgstr "pigg" + +#: ../../include/text.php:947 +msgid "annoyed" +msgstr "irriterad" + +#: ../../include/text.php:948 +msgid "anxious" +msgstr "bekymrad" + +#: ../../include/text.php:949 +msgid "cranky" +msgstr "grinig" + +#: ../../include/text.php:950 +msgid "disturbed" +msgstr "besvärad" + +#: ../../include/text.php:951 +msgid "frustrated" +msgstr "frustrerad" + +#: ../../include/text.php:952 +msgid "depressed" +msgstr "deprimerad" + +#: ../../include/text.php:953 +msgid "motivated" +msgstr "motiverad" + +#: ../../include/text.php:954 +msgid "relaxed" +msgstr "avslappnad" + +#: ../../include/text.php:955 +msgid "surprised" +msgstr "förvånad" + +#: ../../include/text.php:1121 +msgid "Monday" +msgstr "måndag" + +#: ../../include/text.php:1121 +msgid "Tuesday" +msgstr "tisdag" + +#: ../../include/text.php:1121 +msgid "Wednesday" +msgstr "onsdag" + +#: ../../include/text.php:1121 +msgid "Thursday" +msgstr "torsdag" + +#: ../../include/text.php:1121 +msgid "Friday" +msgstr "fredag" + +#: ../../include/text.php:1121 +msgid "Saturday" +msgstr "lördag" + +#: ../../include/text.php:1121 +msgid "Sunday" +msgstr "söndag" + +#: ../../include/text.php:1125 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1125 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1125 +msgid "March" +msgstr "mars" + +#: ../../include/text.php:1125 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1125 +msgid "May" +msgstr "maj" + +#: ../../include/text.php:1125 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1125 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1125 +msgid "August" +msgstr "augusti" + +#: ../../include/text.php:1125 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1125 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1125 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1125 +msgid "December" +msgstr "december" + +#: ../../include/text.php:1203 +msgid "unknown.???" +msgstr "okänt.???" + +#: ../../include/text.php:1204 +msgid "bytes" +msgstr "byte" + +#: ../../include/text.php:1240 +msgid "remove category" +msgstr "ta bort kategori" + +#: ../../include/text.php:1309 +msgid "remove from file" +msgstr "ta bort från fil" + +#: ../../include/text.php:1385 ../../include/text.php:1396 +msgid "Click to open/close" +msgstr "Klicka för att öppna/stänga" + +#: ../../include/text.php:1544 ../../mod/events.php:414 +msgid "Link to Source" +msgstr "Länk till källa" + +#: ../../include/text.php:1563 +msgid "Select a page layout: " +msgstr "Välj en sidlayout: " + +#: ../../include/text.php:1566 ../../include/text.php:1626 +msgid "default" +msgstr "standard" + +#: ../../include/text.php:1599 +msgid "Page content type: " +msgstr "Typ av sidinnehåll: " + +#: ../../include/text.php:1638 +msgid "Select an alternate language" +msgstr "Välj ett alternativt språk" + +#: ../../include/text.php:1757 ../../include/conversation.php:120 +#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:45 +msgid "photo" +msgstr "foto" + +#: ../../include/text.php:1760 ../../include/conversation.php:123 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "händelse" + +#: ../../include/text.php:1763 ../../include/conversation.php:148 +#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:53 +msgid "status" +msgstr "status" + +#: ../../include/text.php:1765 ../../include/conversation.php:150 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "kommentar" + +#: ../../include/text.php:1770 +msgid "activity" +msgstr "aktivitet" + +#: ../../include/text.php:2057 +msgid "Design" +msgstr "Design" + +#: ../../include/text.php:2060 +msgid "Blocks" +msgstr "Block" + +#: ../../include/text.php:2061 +msgid "Menus" +msgstr "Menyer" + +#: ../../include/text.php:2062 +msgid "Layouts" +msgstr "Layouter" + +#: ../../include/text.php:2063 +msgid "Pages" +msgstr "Sidor" + +#: ../../include/contact_widgets.php:14 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev följande %2$s %3$s" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d inbjudan tillgänglig" +msgstr[1] "%d inbjudningar tillgängliga" -#: ../../include/bbcode.php:222 -msgid "post" -msgstr "post" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 +msgid "Advanced" +msgstr "Avancerat" -#: ../../include/bbcode.php:623 -msgid "$1 spoiler" -msgstr "$1 spoiler" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Hitta kanaler" -#: ../../include/bbcode.php:643 -msgid "$1 wrote:" -msgstr "$1 skrev:" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Ange namn eller intresse" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Övrigt" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Ta kontakt/följ" -#: ../../include/datetime.php:142 -msgid "YYYY-MM-DD or MM-DD" -msgstr "ÅÅÅÅ-MM-DD eller MM-DD" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exempel: Robert Morgenstein, Fiske" -#: ../../include/datetime.php:259 -msgid "never" -msgstr "aldrig" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 +#: ../../mod/directory.php:317 ../../mod/directory.php:322 +msgid "Find" +msgstr "Sök" -#: ../../include/datetime.php:265 -msgid "less than a second ago" -msgstr "mindre än en sekund sedan" +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +#: ../../mod/directory.php:321 +msgid "Channel Suggestions" +msgstr "Kanalförslag" -#: ../../include/datetime.php:268 -msgid "year" -msgstr "år" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Slumpvald profil" -#: ../../include/datetime.php:268 -msgid "years" -msgstr "år" +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Bjud in vänner" -#: ../../include/datetime.php:269 -msgid "month" -msgstr "månad" +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Avancerat exempel: name=fred and country=iceland" -#: ../../include/datetime.php:269 -msgid "months" -msgstr "månader" +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 +#: ../../include/widgets.php:305 +msgid "Everything" +msgstr "Allt" -#: ../../include/datetime.php:270 -msgid "week" -msgstr "vecka" - -#: ../../include/datetime.php:270 -msgid "weeks" -msgstr "veckor" - -#: ../../include/datetime.php:271 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:271 -msgid "days" -msgstr "dagar" - -#: ../../include/datetime.php:272 -msgid "hour" -msgstr "timme" - -#: ../../include/datetime.php:272 -msgid "hours" -msgstr "timmar" - -#: ../../include/datetime.php:273 -msgid "minute" -msgstr "minut" - -#: ../../include/datetime.php:273 -msgid "minutes" -msgstr "minuter" - -#: ../../include/datetime.php:274 -msgid "second" -msgstr "sekund" - -#: ../../include/datetime.php:274 -msgid "seconds" -msgstr "sekunder" - -#: ../../include/datetime.php:283 +#: ../../include/contact_widgets.php:125 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s sedan" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemensam kontakt" +msgstr[1] "%d gemensamma kontakter" -#: ../../include/datetime.php:491 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss födelsedag" - -#: ../../include/datetime.php:492 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Grattis på födelsedagen %1$s" - -#: ../../include/zot.php:664 -msgid "Invalid data packet" -msgstr "Ogiltigt datapaket" - -#: ../../include/zot.php:680 -msgid "Unable to verify channel signature" -msgstr "Kunde inte bekräfta kanalsignatur" - -#: ../../include/zot.php:1818 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kunde inte bekräfta signatur för servern %s" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Taggar" - -#: ../../include/taxonomy.php:249 -msgid "Keywords" -msgstr "Nyckelord" - -#: ../../include/taxonomy.php:274 -msgid "have" -msgstr "har" - -#: ../../include/taxonomy.php:274 -msgid "has" -msgstr "har" - -#: ../../include/taxonomy.php:275 -msgid "want" -msgstr "vill ha" - -#: ../../include/taxonomy.php:275 -msgid "wants" -msgstr "vill ha" - -#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 -msgid "like" -msgstr "gilla" - -#: ../../include/taxonomy.php:276 -msgid "likes" -msgstr "gillar" - -#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "ogilla" - -#: ../../include/taxonomy.php:277 -msgid "dislikes" -msgstr "ogillar" - -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "Offentlig tidslinje" - -#: ../../include/dir_fns.php:56 -msgid "Directory Options" -msgstr "Katalogalternativ" - -#: ../../include/dir_fns.php:57 -msgid "Alphabetic" -msgstr "Alfabetisk" - -#: ../../include/dir_fns.php:58 -msgid "Reverse Alphabetic" -msgstr "Omvänd alfabetisk" - -#: ../../include/dir_fns.php:59 -msgid "Newest to Oldest" -msgstr "Nyast till äldst" - -#: ../../include/dir_fns.php:60 -msgid "Public Forums Only" -msgstr "Endast offentliga forum" - -#: ../../include/dir_fns.php:72 -msgid "Enable Safe Search" -msgstr "Aktivera säker sökning" - -#: ../../include/dir_fns.php:74 -msgid "Disable Safe Search" -msgstr "Avaktivera säker sökning" - -#: ../../include/dir_fns.php:76 -msgid "Safe Mode" -msgstr "Säkert läge" +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "visa fler" #: ../../include/enotify.php:41 msgid "Red Matrix Notification" @@ -2021,569 +1630,263 @@ msgstr "Kanaler inte i någon krets" msgid "add" msgstr "lägg till" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Allmänna funktioner" +#: ../../include/identity.php:31 ../../mod/item.php:1112 +msgid "Unable to obtain identity information from database" +msgstr "Kunde inte hämta från databasen" -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "Tidsbegränsat innehåll" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Tomt namn" -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Ta bort inlägg/kommentarer och/eller privata meddelanden efter en tid" +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "För långt namn" -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "Flera profiler" +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Ingen kontoidentifierare" -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Möjlighet att skapa flera profiler" +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "Smeknamn måste anges." -#: ../../include/features.php:27 -msgid "Advanced Profiles" -msgstr "Avancerade profiler" +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "Reserverat smeknamn. Välj ett annat." -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" -msgstr "Fler profilinställningar" - -#: ../../include/features.php:28 -msgid "Profile Import/Export" -msgstr "Profilimport/-export" - -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" -msgstr "Spara och ladda profiluppgifter mellan webbplatser/kanaler" - -#: ../../include/features.php:29 -msgid "Web Pages" -msgstr "Webbsidor" - -#: ../../include/features.php:29 -msgid "Provide managed web pages on your channel" -msgstr "Tillhandahåll ordnade webbsidor i din kanal" - -#: ../../include/features.php:30 -msgid "Private Notes" -msgstr "Privata anteckningar" - -#: ../../include/features.php:30 -msgid "Enables a tool to store notes and reminders" -msgstr "Aktivera ett verktyg för att spara anteckningar och påminnelser" - -#: ../../include/features.php:34 -msgid "Navigation Channel Select" -msgstr "Kanalväljare i navigation" - -#: ../../include/features.php:34 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Välj kanal direkt från navigationslistens rullgardinsmeny" - -#: ../../include/features.php:38 -msgid "Extended Identity Sharing" -msgstr "Utökad identitetsdelning" - -#: ../../include/features.php:38 +#: ../../include/identity.php:201 ../../include/dimport.php:34 msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Dela din identitet med alla webbplatser på Internet. Om inaktiverat är identiteten bara delad med platser i matrisen." +"Nickname has unsupported characters or is already being used on this site." +msgstr "Smeknamnet innehåller otillåtna tecken eller är redan upptaget på den här servern." -#: ../../include/features.php:39 -msgid "Expert Mode" -msgstr "Expertläge" +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "Kunde inte hämta den skapade identiteten" -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktivera expertläge för att tillåta avancerade inställningar" +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "Standardprofil" -#: ../../include/features.php:40 -msgid "Premium Channel" -msgstr "Premiumkanal" +#: ../../include/identity.php:387 ../../include/identity.php:388 +#: ../../include/identity.php:395 ../../include/widgets.php:428 +#: ../../include/profile_selectors.php:80 ../../mod/settings.php:320 +#: ../../mod/settings.php:324 ../../mod/settings.php:325 +#: ../../mod/settings.php:328 ../../mod/settings.php:339 +#: ../../mod/connedit.php:510 +msgid "Friends" +msgstr "Vänner" -#: ../../include/features.php:40 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Låter dig ange begränsningar och villkor för dem som vill ansluta till din kanal" +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "Den begärda kanalen är inte tillgänglig" -#: ../../include/features.php:45 -msgid "Post Composition Features" -msgstr "Skrivfunktioner" +#: ../../include/identity.php:691 ../../mod/achievements.php:11 +#: ../../mod/profile.php:16 ../../mod/webpages.php:29 ../../mod/blocks.php:29 +#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 +#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:48 +#: ../../mod/connect.php:13 ../../mod/layouts.php:29 ../../mod/hcard.php:8 +msgid "Requested profile is not available." +msgstr "Begärd profil är inte tillgänglig." -#: ../../include/features.php:47 -msgid "Use Markdown" -msgstr "Använd Markdown" +#: ../../include/identity.php:840 ../../include/conversation.php:937 +#: ../../include/widgets.php:136 ../../include/widgets.php:175 +#: ../../include/Contact.php:107 ../../mod/suggest.php:51 +#: ../../mod/match.php:62 ../../mod/directory.php:264 +msgid "Connect" +msgstr "Ta kontakt" -#: ../../include/features.php:47 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Tillåt att \"Markdown\" används för att formatera inlägg" +#: ../../include/identity.php:854 ../../mod/profiles.php:740 +msgid "Change profile photo" +msgstr "Bytprofilfoto" -#: ../../include/features.php:48 -msgid "Post Preview" -msgstr "Förhandsgranskning" +#: ../../include/identity.php:860 +msgid "Profiles" +msgstr "Profiler" -#: ../../include/features.php:48 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Tillåt förhandsgranskning av inlägg och kommentarer innan de publiceras" +#: ../../include/identity.php:860 +msgid "Manage/edit profiles" +msgstr "Hantera/redigera profiler" -#: ../../include/features.php:49 ../../include/widgets.php:537 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanalkällor" +#: ../../include/identity.php:861 ../../mod/profiles.php:741 +msgid "Create New Profile" +msgstr "Skapa ny profil" -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importera kanalinnehåll från andra kanaler eller flöden automatiskt" +#: ../../include/identity.php:864 ../../include/nav.php:103 +msgid "Edit Profile" +msgstr "Redigera profil" -#: ../../include/features.php:50 -msgid "Even More Encryption" -msgstr "Ytterligare kryptering" +#: ../../include/identity.php:875 ../../mod/profiles.php:752 +msgid "Profile Image" +msgstr "Profilbild" -#: ../../include/features.php:50 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Tillåt änd-till-änd-kryptering av innehåll med en delad hemlig nyckel" +#: ../../include/identity.php:878 +msgid "visible to everybody" +msgstr "synlig för alla" -#: ../../include/features.php:51 -msgid "Flag Adult Photos" -msgstr "Flagga vuxenfoton" +#: ../../include/identity.php:879 ../../mod/profiles.php:635 +#: ../../mod/profiles.php:756 +msgid "Edit visibility" +msgstr "Redigera synlighet" -#: ../../include/features.php:51 -msgid "Provide photo edit option to hide adult photos from default album view" -msgstr "Gör det möjligt att inte visa foton som är olämpliga för barn i albums standardvy" +#: ../../include/identity.php:895 ../../include/identity.php:1132 +msgid "Gender:" +msgstr "Kön:" -#: ../../include/features.php:56 -msgid "Network and Stream Filtering" -msgstr "Nätverk och strömfiltrering" +#: ../../include/identity.php:896 ../../include/identity.php:1176 +msgid "Status:" +msgstr "Status:" -#: ../../include/features.php:57 -msgid "Search by Date" -msgstr "Sök på datum" +#: ../../include/identity.php:897 ../../include/identity.php:1187 +msgid "Homepage:" +msgstr "Hemsida:" -#: ../../include/features.php:57 -msgid "Ability to select posts by date ranges" -msgstr "Tillåter urval av inlägg baserat på datum" +#: ../../include/identity.php:898 +msgid "Online Now" +msgstr "Online nu" -#: ../../include/features.php:58 -msgid "Collections Filter" -msgstr "Kretsfilter" +#: ../../include/identity.php:976 ../../include/identity.php:1056 +#: ../../mod/ping.php:326 +msgid "g A l F d" +msgstr "l j F \\k\\l G" -#: ../../include/features.php:58 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Aktivera en väljare för att visa nätverksinlägg från enbart valda kretsar" +#: ../../include/identity.php:977 ../../include/identity.php:1057 +msgid "F d" +msgstr "j F" -#: ../../include/features.php:59 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "Sparade sökningar" +#: ../../include/identity.php:1022 ../../include/identity.php:1097 +#: ../../mod/ping.php:348 +msgid "[today]" +msgstr "[i dag]" -#: ../../include/features.php:59 -msgid "Save search terms for re-use" -msgstr "Spara sökuttryck för återanvändning" +#: ../../include/identity.php:1034 +msgid "Birthday Reminders" +msgstr "Födelsedagspåminnelser" -#: ../../include/features.php:60 -msgid "Network Personal Tab" -msgstr "Personlig nätverksflik" +#: ../../include/identity.php:1035 +msgid "Birthdays this week:" +msgstr "Födelsedagar den här veckan:" -#: ../../include/features.php:60 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktivera en flik som visar endast de nätverksinlägg som du har deltagit i" +#: ../../include/identity.php:1090 +msgid "[No description]" +msgstr "[Ingen beskrivning]" -#: ../../include/features.php:61 -msgid "Network New Tab" -msgstr "Flik för nytt på nätverket" +#: ../../include/identity.php:1108 +msgid "Event Reminders" +msgstr "Händelsepåminnelser" -#: ../../include/features.php:61 -msgid "Enable tab to display all new Network activity" -msgstr "Aktivera en flik som visar all ny nätverksaktivitet" +#: ../../include/identity.php:1109 +msgid "Events this week:" +msgstr "Händelser den här veckan:" -#: ../../include/features.php:62 -msgid "Affinity Tool" -msgstr "Samhörighetsverktyg" +#: ../../include/identity.php:1122 ../../include/identity.php:1251 +#: ../../include/apps.php:138 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" -#: ../../include/features.php:62 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrera strömaktivitet efter hur nära relationen är" +#: ../../include/identity.php:1130 ../../mod/settings.php:1012 +msgid "Full Name:" +msgstr "Fullständigt namn:" -#: ../../include/features.php:63 -msgid "Suggest Channels" -msgstr "Föreslå kanaler" +#: ../../include/identity.php:1137 +msgid "Like this channel" +msgstr "Gilla den här kanalen" -#: ../../include/features.php:63 -msgid "Show channel suggestions" -msgstr "Visa förslag på kanaler" +#: ../../include/identity.php:1161 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/features.php:68 -msgid "Post/Comment Tools" -msgstr "Inläggs-/kommentarsverktyg" +#: ../../include/identity.php:1162 +msgid "j F" +msgstr "j F" -#: ../../include/features.php:70 -msgid "Edit Sent Posts" -msgstr "Redigera sända inlägg" +#: ../../include/identity.php:1169 +msgid "Birthday:" +msgstr "Födelsedag:" -#: ../../include/features.php:70 -msgid "Edit and correct posts and comments after sending" -msgstr "Redigera och korrigera inlägg och kommentarer efter att de skickats" +#: ../../include/identity.php:1173 +msgid "Age:" +msgstr "Ålder:" -#: ../../include/features.php:71 -msgid "Tagging" -msgstr "Taggning" - -#: ../../include/features.php:71 -msgid "Ability to tag existing posts" -msgstr "Möjlighet att tagga befintliga inlägg" - -#: ../../include/features.php:72 -msgid "Post Categories" -msgstr "Inläggskategorier" - -#: ../../include/features.php:72 -msgid "Add categories to your posts" -msgstr "Lägg till kategorier till dina inlägg" - -#: ../../include/features.php:73 -msgid "Ability to file posts under folders" -msgstr "Möjlighet att lägga inlägg i mappar" - -#: ../../include/features.php:74 -msgid "Dislike Posts" -msgstr "Ogilla inlägg" - -#: ../../include/features.php:74 -msgid "Ability to dislike posts/comments" -msgstr "Möjlighet att ogilla inlägg/kommentarer" - -#: ../../include/features.php:75 -msgid "Star Posts" -msgstr "Märk inlägg" - -#: ../../include/features.php:75 -msgid "Ability to mark special posts with a star indicator" -msgstr "Möjlighet att märka speciella inlägg med en stjärna" - -#: ../../include/features.php:76 -msgid "Tag Cloud" -msgstr "Taggmoln" - -#: ../../include/features.php:76 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Tillhandahåll ett personligt taggmoln på din kanalsida" - -#: ../../include/text.php:321 -msgid "prev" -msgstr "föregående" - -#: ../../include/text.php:323 -msgid "first" -msgstr "första" - -#: ../../include/text.php:352 -msgid "last" -msgstr "sista" - -#: ../../include/text.php:355 -msgid "next" -msgstr "nästa" - -#: ../../include/text.php:367 -msgid "older" -msgstr "äldre" - -#: ../../include/text.php:369 -msgid "newer" -msgstr "nyare" - -#: ../../include/text.php:736 -msgid "No connections" -msgstr "Inga kontakter" - -#: ../../include/text.php:753 +#: ../../include/identity.php:1182 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontakter" +msgid "for %1$d %2$s" +msgstr "i %1$d %2$s" -#: ../../include/text.php:766 -msgid "View Connections" -msgstr "Visa kontakter" +#: ../../include/identity.php:1185 ../../mod/profiles.php:657 +msgid "Sexual Preference:" +msgstr "Sexuell preferens:" -#: ../../include/text.php:827 ../../include/text.php:839 -#: ../../include/widgets.php:193 ../../mod/filer.php:50 -#: ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 ../../mod/admin.php:1339 -#: ../../mod/admin.php:1360 -msgid "Save" -msgstr "Spara" +#: ../../include/identity.php:1189 ../../mod/profiles.php:659 +msgid "Hometown:" +msgstr "Hemort:" -#: ../../include/text.php:905 -msgid "poke" -msgstr "puffa" +#: ../../include/identity.php:1191 +msgid "Tags:" +msgstr "Taggar:" -#: ../../include/text.php:906 -msgid "ping" -msgstr "pinga" +#: ../../include/identity.php:1193 ../../mod/profiles.php:660 +msgid "Political Views:" +msgstr "Politisk åskådning:" -#: ../../include/text.php:906 -msgid "pinged" -msgstr "pingade" +#: ../../include/identity.php:1195 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/text.php:907 -msgid "prod" -msgstr "stöt till" +#: ../../include/identity.php:1197 +msgid "About:" +msgstr "Om:" -#: ../../include/text.php:907 -msgid "prodded" -msgstr "stötte till" +#: ../../include/identity.php:1199 +msgid "Hobbies/Interests:" +msgstr "Fritidssysselsättning/intressen:" -#: ../../include/text.php:908 -msgid "slap" -msgstr "daska till" +#: ../../include/identity.php:1201 ../../mod/profiles.php:663 +msgid "Likes:" +msgstr "Gillar:" -#: ../../include/text.php:908 -msgid "slapped" -msgstr "daskade till" +#: ../../include/identity.php:1203 ../../mod/profiles.php:664 +msgid "Dislikes:" +msgstr "Ogillar:" -#: ../../include/text.php:909 -msgid "finger" -msgstr "fingra på" +#: ../../include/identity.php:1206 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation och sociala nätverk:" -#: ../../include/text.php:909 -msgid "fingered" -msgstr "fingrade på" +#: ../../include/identity.php:1218 +msgid "My other channels:" +msgstr "Mina andra kanaler:" -#: ../../include/text.php:910 -msgid "rebuff" -msgstr "stöt tillbaka" +#: ../../include/identity.php:1221 +msgid "Musical interests:" +msgstr "Musikintressen:" -#: ../../include/text.php:910 -msgid "rebuffed" -msgstr "stötte tillbaks" +#: ../../include/identity.php:1223 +msgid "Books, literature:" +msgstr "Böcker, litteratur:" -#: ../../include/text.php:919 -msgid "happy" -msgstr "glad" +#: ../../include/identity.php:1225 +msgid "Television:" +msgstr "Tv:" -#: ../../include/text.php:920 -msgid "sad" -msgstr "ledsen" +#: ../../include/identity.php:1227 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/kultur/underhållning:" -#: ../../include/text.php:921 -msgid "mellow" -msgstr "lugn" +#: ../../include/identity.php:1229 +msgid "Love/Romance:" +msgstr "Kärlek/romantik:" -#: ../../include/text.php:922 -msgid "tired" -msgstr "trött" +#: ../../include/identity.php:1231 +msgid "Work/employment:" +msgstr "Arbete/sysselsättning:" -#: ../../include/text.php:923 -msgid "perky" -msgstr "uppåt" +#: ../../include/identity.php:1233 +msgid "School/education:" +msgstr "Skola/utbildning:" -#: ../../include/text.php:924 -msgid "angry" -msgstr "arg" - -#: ../../include/text.php:925 -msgid "stupified" -msgstr "virrig" - -#: ../../include/text.php:926 -msgid "puzzled" -msgstr "förbryllad" - -#: ../../include/text.php:927 -msgid "interested" -msgstr "intresserad" - -#: ../../include/text.php:928 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:929 -msgid "cheerful" -msgstr "munter" - -#: ../../include/text.php:930 -msgid "alive" -msgstr "pigg" - -#: ../../include/text.php:931 -msgid "annoyed" -msgstr "irriterad" - -#: ../../include/text.php:932 -msgid "anxious" -msgstr "bekymrad" - -#: ../../include/text.php:933 -msgid "cranky" -msgstr "grinig" - -#: ../../include/text.php:934 -msgid "disturbed" -msgstr "besvärad" - -#: ../../include/text.php:935 -msgid "frustrated" -msgstr "frustrerad" - -#: ../../include/text.php:936 -msgid "depressed" -msgstr "deprimerad" - -#: ../../include/text.php:937 -msgid "motivated" -msgstr "motiverad" - -#: ../../include/text.php:938 -msgid "relaxed" -msgstr "avslappnad" - -#: ../../include/text.php:939 -msgid "surprised" -msgstr "förvånad" - -#: ../../include/text.php:1103 -msgid "Monday" -msgstr "måndag" - -#: ../../include/text.php:1103 -msgid "Tuesday" -msgstr "tisdag" - -#: ../../include/text.php:1103 -msgid "Wednesday" -msgstr "onsdag" - -#: ../../include/text.php:1103 -msgid "Thursday" -msgstr "torsdag" - -#: ../../include/text.php:1103 -msgid "Friday" -msgstr "fredag" - -#: ../../include/text.php:1103 -msgid "Saturday" -msgstr "lördag" - -#: ../../include/text.php:1103 -msgid "Sunday" -msgstr "söndag" - -#: ../../include/text.php:1107 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1107 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1107 -msgid "March" -msgstr "mars" - -#: ../../include/text.php:1107 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1107 -msgid "May" -msgstr "maj" - -#: ../../include/text.php:1107 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1107 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1107 -msgid "August" -msgstr "augusti" - -#: ../../include/text.php:1107 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1107 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1107 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1107 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1185 -msgid "unknown.???" -msgstr "okänt.???" - -#: ../../include/text.php:1186 -msgid "bytes" -msgstr "byte" - -#: ../../include/text.php:1225 -msgid "remove category" -msgstr "ta bort kategori" - -#: ../../include/text.php:1295 -msgid "remove from file" -msgstr "ta bort från fil" - -#: ../../include/text.php:1360 ../../include/text.php:1372 -msgid "Click to open/close" -msgstr "Klicka för att öppna/stänga" - -#: ../../include/text.php:1527 ../../mod/events.php:414 -msgid "Link to Source" -msgstr "Länk till källa" - -#: ../../include/text.php:1546 -msgid "Select a page layout: " -msgstr "Välj en sidlayout: " - -#: ../../include/text.php:1549 ../../include/text.php:1614 -msgid "default" -msgstr "standard" - -#: ../../include/text.php:1585 -msgid "Page content type: " -msgstr "Typ av sidinnehåll: " - -#: ../../include/text.php:1626 -msgid "Select an alternate language" -msgstr "Välj ett alternativt språk" - -#: ../../include/text.php:1760 -msgid "activity" -msgstr "aktivitet" - -#: ../../include/text.php:2046 -msgid "Design" -msgstr "Design" - -#: ../../include/text.php:2049 -msgid "Blocks" -msgstr "Block" - -#: ../../include/text.php:2050 -msgid "Menus" -msgstr "Menyer" - -#: ../../include/text.php:2051 -msgid "Layouts" -msgstr "Layouter" - -#: ../../include/text.php:2052 -msgid "Pages" -msgstr "Sidor" +#: ../../include/identity.php:1253 +msgid "Like this thing" +msgstr "Gilla den här saken" #: ../../include/account.php:23 msgid "Not a valid email address" @@ -2662,256 +1965,633 @@ msgstr "Den här funktionen går utanför vad som anges i ditt avtal." msgid "This action is not available under your subscription plan." msgstr "Den här funktionen är inte tillgänglig med ditt avtal." -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" -msgstr "Kan se mina normala strömmar och inlägg" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanalen är blockerad på den här servern." -#: ../../include/permissions.php:14 -msgid "Can view my default channel profile" -msgstr "Kan se min standardkanalprofil" +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Kanalplats saknas." -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" -msgstr "Kan se mina fotoalbum" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Svar från den andra kanalen var ofullständigt." -#: ../../include/permissions.php:16 -msgid "Can view my connections" -msgstr "Kan se mina kontakter" +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanalen har tagits bort och finns inte längre." -#: ../../include/permissions.php:17 -msgid "Can view my file storage" -msgstr "Kan se mitt filutrymme" +#: ../../include/follow.php:135 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "Protokoll inaktiverat." -#: ../../include/permissions.php:18 -msgid "Can view my webpages" -msgstr "Kan se mina webbsidor" +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "Kanalsökning misslyckades." -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" -msgstr "Kan skicka sina kanalströmmar och inlägg till mig" +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "hittade inte lokalt konto." -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan posta inlägg på min kanalsida (\"vägg\")" +#: ../../include/follow.php:220 +msgid "Cannot connect to yourself." +msgstr "Du kan inte kontakta dig själv." -#: ../../include/permissions.php:23 -msgid "Can comment on or like my posts" -msgstr "Kan kommentera eller gilla mina inlägg" +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Offentlig tidslinje" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Kan skicka privata meddelanden till mig" - -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Kan lägga till foton i mitt fotoalbum" - -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" -msgstr "Kan gilla/ogilla saker" - -#: ../../include/permissions.php:26 -msgid "Profiles and things other than posts/comments" -msgstr "Profiler och annat än inlägg/kommentarer" - -#: ../../include/permissions.php:28 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan vidarebefordra till alla mina kanalkontakter genom @omnämnanden" - -#: ../../include/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avancerat - användbart för att skapa kanaler för gruppforum" - -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" -msgstr "Kan chatta med mig (när tillgänglig)" - -#: ../../include/permissions.php:30 -msgid "Can write to my file storage" -msgstr "Har skrivrättigheter i mitt filutrymme" - -#: ../../include/permissions.php:31 -msgid "Can edit my webpages" -msgstr "Kan redigera mina webbsidor" - -#: ../../include/permissions.php:33 -msgid "Can source my public posts in derived channels" -msgstr "Kan använda mina offentliga inlägg i kanaler nedströms" - -#: ../../include/permissions.php:33 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Ganska avancerat - väldigt användbart i öppna gemenskaper" - -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" -msgstr "Kan administrera mina kanalresurser" - -#: ../../include/permissions.php:35 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Extremt avancerat. Låt detta vara om du inte vet vad du gör" - -#: ../../include/permissions.php:785 -msgid "Social Networking" -msgstr "Socialt nätverkande" - -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -#: ../../include/permissions.php:790 -msgid "Mostly Public" -msgstr "Mestadels offentligt" - -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -#: ../../include/permissions.php:790 -msgid "Restricted" -msgstr "Begränsat" - -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -msgid "Private" -msgstr "Privat" - -#: ../../include/permissions.php:787 -msgid "Community Forum" -msgstr "Gemenskapsforum" - -#: ../../include/permissions.php:789 -msgid "Feed Republish" -msgstr "Vidarepublicering av flöde" - -#: ../../include/permissions.php:791 -msgid "Special Purpose" -msgstr "Särskilt syfte" - -#: ../../include/permissions.php:792 -msgid "Celebrity/Soapbox" -msgstr "Kändis/talarstol" - -#: ../../include/permissions.php:792 -msgid "Group Repository" -msgstr "Gruppförråd" - -#: ../../include/permissions.php:793 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Annat" - -#: ../../include/permissions.php:794 -msgid "Custom/Expert Mode" -msgstr "Anpassat/expertläge" - -#: ../../include/photos.php:105 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild överskrider webbplatsens storleksbegränsning på %lu byte" - -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "Bildfil är tom." - -#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Kunde inte bearbeta bild" - -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "Fotolagring misslyckades." - -#: ../../include/photos.php:345 -msgid "Upload New Photos" -msgstr "Ladda upp nya foton" - -#: ../../include/items.php:382 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/like.php:246 ../../mod/group.php:68 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "Behörighet saknas" - -#: ../../include/items.php:969 ../../include/items.php:1014 -msgid "(Unknown)" -msgstr "(Okänt)" - -#: ../../include/items.php:1171 -msgid "Visible to anybody on the internet." -msgstr "Kan ses av vem som helst på Internet." - -#: ../../include/items.php:1173 -msgid "Visible to you only." -msgstr "Kan bara ses av dig." - -#: ../../include/items.php:1175 -msgid "Visible to anybody in this network." -msgstr "Kan ses av alla på det här nätverket." - -#: ../../include/items.php:1177 -msgid "Visible to anybody authenticated." -msgstr "Kan ses av alla inloggade." - -#: ../../include/items.php:1179 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Kan ses av alla på %s." - -#: ../../include/items.php:1181 -msgid "Visible to all connections." -msgstr "Kan ses av alla kontakter." - -#: ../../include/items.php:1183 -msgid "Visible to approved connections." -msgstr "Kan ses av godkända kontakter." - -#: ../../include/items.php:1185 -msgid "Visible to specific connections." -msgstr "Kan ses av valda kontakter." - -#: ../../include/items.php:3952 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:26 -#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." msgstr "Posten hittades inte." -#: ../../include/items.php:4410 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Kretsen hittades inte." +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "Ingen källfil." -#: ../../include/items.php:4425 -msgid "Collection is empty." -msgstr "Kretsen är tom." +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" +msgstr "Kan inte hitta fil att ersätta" -#: ../../include/items.php:4432 +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "Kan inte hitta fil att revidera/uppdatera" + +#: ../../include/attach.php:377 #, php-format -msgid "Collection: %s" -msgstr "Krets: %s" +msgid "File exceeds size limit of %d" +msgstr "Filen överskrider storleksbegränsningen %d" -#: ../../include/items.php:4443 +#: ../../include/attach.php:389 #, php-format -msgid "Connection: %s" -msgstr "Kontakt: %s" +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor." -#: ../../include/items.php:4446 -msgid "Connection not found." -msgstr "Kontakten hittades inte." +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd." -#: ../../include/security.php:323 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades." +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad." -#: ../../include/widgets.php:87 +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "Sökväg inte tillgänglig." + +#: ../../include/attach.php:590 +msgid "Empty pathname" +msgstr "Tom sökväg" + +#: ../../include/attach.php:606 +msgid "duplicate filename or path" +msgstr "filnamn eller sökväg finns redan" + +#: ../../include/attach.php:630 +msgid "Path not found." +msgstr "Sökväg hittas inte." + +#: ../../include/attach.php:681 +msgid "mkdir failed." +msgstr "mkdir misslyckades." + +#: ../../include/attach.php:685 +msgid "database storage failed." +msgstr "databaslagring misslyckades." + +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Rumsnamn saknas" + +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Rumsnamnet finns redan" + +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ogiltig rumsbeskrivning." + +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Rummet hittades inte." + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Rummet är fullt" + +#: ../../include/bbcode.php:112 ../../include/bbcode.php:677 +#: ../../include/bbcode.php:680 ../../include/bbcode.php:685 +#: ../../include/bbcode.php:688 ../../include/bbcode.php:691 +#: ../../include/bbcode.php:694 ../../include/bbcode.php:699 +#: ../../include/bbcode.php:702 ../../include/bbcode.php:707 +#: ../../include/bbcode.php:710 ../../include/bbcode.php:713 +#: ../../include/bbcode.php:716 +msgid "Image/photo" +msgstr "Bild/foto" + +#: ../../include/bbcode.php:147 ../../include/bbcode.php:727 +msgid "Encrypted content" +msgstr "Krypterat innehåll" + +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "Installera designelement: " + +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "QR-kod" + +#: ../../include/bbcode.php:220 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s skrev följande %2$s %3$s" + +#: ../../include/bbcode.php:222 +msgid "post" +msgstr "post" + +#: ../../include/bbcode.php:645 +msgid "$1 spoiler" +msgstr "$1 spoiler" + +#: ../../include/bbcode.php:665 +msgid "$1 wrote:" +msgstr "$1 skrev:" + +#: ../../include/conversation.php:126 ../../mod/like.php:89 +msgid "channel" +msgstr "kanal" + +#: ../../include/conversation.php:164 ../../include/diaspora.php:1957 +#: ../../mod/like.php:336 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gillar %2$ss %3$s" + +#: ../../include/conversation.php:167 ../../mod/like.php:338 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s gillar inte %2$ss %3$s" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s har nu kontakt med %2$s" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s puffade %2$s" + +#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s är %2$s" + +#: ../../include/conversation.php:638 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Välj" + +#: ../../include/conversation.php:646 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Privat meddelande" + +#: ../../include/conversation.php:653 ../../include/ItemObject.php:194 +msgid "Message signature validated" +msgstr "Meddelandesignatur bekräftad" + +#: ../../include/conversation.php:654 ../../include/ItemObject.php:195 +msgid "Message signature incorrect" +msgstr "Meddelandesignatur felaktig" + +#: ../../include/conversation.php:674 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Visa %ss profil på %s" + +#: ../../include/conversation.php:689 +msgid "Categories:" +msgstr "Kategorier:" + +#: ../../include/conversation.php:690 +msgid "Filed under:" +msgstr "Postat under:" + +#: ../../include/conversation.php:698 ../../include/ItemObject.php:274 +#, php-format +msgid " from %s" +msgstr "från %s" + +#: ../../include/conversation.php:701 ../../include/ItemObject.php:277 +#, php-format +msgid "last edited: %s" +msgstr "senast redigerat: %s" + +#: ../../include/conversation.php:702 ../../include/ItemObject.php:278 +#, php-format +msgid "Expires: %s" +msgstr "Upphör: %s" + +#: ../../include/conversation.php:717 +msgid "View in context" +msgstr "Visa sammanhang" + +#: ../../include/conversation.php:719 ../../include/conversation.php:1142 +#: ../../include/ItemObject.php:325 ../../mod/editpost.php:121 +#: ../../mod/mail.php:238 ../../mod/mail.php:353 ../../mod/photos.php:978 +#: ../../mod/editblock.php:152 ../../mod/editlayout.php:148 +#: ../../mod/editwebpage.php:183 +msgid "Please wait" +msgstr "Vänta" + +#: ../../include/conversation.php:835 +msgid "remove" +msgstr "ta bort" + +#: ../../include/conversation.php:839 ../../include/nav.php:257 +msgid "Loading..." +msgstr "Laddar..." + +#: ../../include/conversation.php:840 +msgid "Delete Selected Items" +msgstr "Ta bort valda poster" + +#: ../../include/conversation.php:931 +msgid "View Source" +msgstr "Visa källa" + +#: ../../include/conversation.php:932 +msgid "Follow Thread" +msgstr "Följ tråd" + +#: ../../include/conversation.php:933 +msgid "View Status" +msgstr "Visa status" + +#: ../../include/conversation.php:934 ../../include/nav.php:99 +#: ../../mod/connedit.php:429 ../../mod/connedit.php:545 +msgid "View Profile" +msgstr "Visa profil" + +#: ../../include/conversation.php:935 +msgid "View Photos" +msgstr "Visa foton" + +#: ../../include/conversation.php:936 +msgid "Matrix Activity" +msgstr "Matrisaktivitet" + +#: ../../include/conversation.php:938 +msgid "Edit Contact" +msgstr "Redigera kontakt" + +#: ../../include/conversation.php:939 +msgid "Send PM" +msgstr "Skicka meddelande" + +#: ../../include/conversation.php:940 ../../include/apps.php:145 +msgid "Poke" +msgstr "Puffa" + +#: ../../include/conversation.php:1013 +#, php-format +msgid "%s likes this." +msgstr "%s gillar det här." + +#: ../../include/conversation.php:1013 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gillar inte det här." + +#: ../../include/conversation.php:1017 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d person gillar det här." +msgstr[1] "%2$d personer gillar det här." + +#: ../../include/conversation.php:1019 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d person gillar inte det här." +msgstr[1] "%2$d personer gillar inte det här." + +#: ../../include/conversation.php:1025 +msgid "and" +msgstr "och" + +#: ../../include/conversation.php:1028 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", och %d annan person" +msgstr[1] ", och %d andra personer" + +#: ../../include/conversation.php:1029 +#, php-format +msgid "%s like this." +msgstr "%s gillar det här." + +#: ../../include/conversation.php:1029 +#, php-format +msgid "%s don't like this." +msgstr "%s gillar inte det här." + +#: ../../include/conversation.php:1086 +msgid "Visible to everybody" +msgstr "Kan ses av alla" + +#: ../../include/conversation.php:1087 ../../mod/mail.php:171 +#: ../../mod/mail.php:286 +msgid "Please enter a link URL:" +msgstr "Ange en länkadress:" + +#: ../../include/conversation.php:1088 +msgid "Please enter a video link/URL:" +msgstr "Ange en videolänkadress:" + +#: ../../include/conversation.php:1089 +msgid "Please enter an audio link/URL:" +msgstr "Ange en ljudlänkadress" + +#: ../../include/conversation.php:1090 +msgid "Tag term:" +msgstr "Tagguttryck" + +#: ../../include/conversation.php:1091 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Spara i mapp:" + +#: ../../include/conversation.php:1092 +msgid "Where are you right now?" +msgstr "Var är du just nu?" + +#: ../../include/conversation.php:1093 ../../mod/editpost.php:52 +#: ../../mod/mail.php:172 ../../mod/mail.php:287 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Upphör YYYY-MM-DD HH:MM" + +#: ../../include/conversation.php:1117 ../../mod/photos.php:977 +#: ../../mod/editblock.php:198 ../../mod/editlayout.php:193 +#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 +msgid "Share" +msgstr "Dela" + +#: ../../include/conversation.php:1119 ../../mod/editwebpage.php:170 +msgid "Page link title" +msgstr "Titel på sidlänk" + +#: ../../include/conversation.php:1122 +msgid "Post as" +msgstr "Posta som" + +#: ../../include/conversation.php:1123 ../../mod/editpost.php:113 +#: ../../mod/mail.php:235 ../../mod/mail.php:349 ../../mod/editblock.php:144 +#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:175 +msgid "Upload photo" +msgstr "Ladda upp foto" + +#: ../../include/conversation.php:1124 +msgid "upload photo" +msgstr "ladda upp foto" + +#: ../../include/conversation.php:1125 ../../mod/editpost.php:114 +#: ../../mod/mail.php:236 ../../mod/mail.php:350 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:176 +msgid "Attach file" +msgstr "Bifoga fil" + +#: ../../include/conversation.php:1126 +msgid "attach file" +msgstr "bifoga fil" + +#: ../../include/conversation.php:1127 ../../mod/editpost.php:115 +#: ../../mod/mail.php:237 ../../mod/mail.php:351 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:177 +msgid "Insert web link" +msgstr "Infoga webblänk" + +#: ../../include/conversation.php:1128 +msgid "web link" +msgstr "webblänk" + +#: ../../include/conversation.php:1129 +msgid "Insert video link" +msgstr "Infoga videolänk" + +#: ../../include/conversation.php:1130 +msgid "video link" +msgstr "videolänk" + +#: ../../include/conversation.php:1131 +msgid "Insert audio link" +msgstr "Infoga ljudlänk" + +#: ../../include/conversation.php:1132 +msgid "audio link" +msgstr "ljudlänk" + +#: ../../include/conversation.php:1133 ../../mod/editpost.php:119 +#: ../../mod/editblock.php:150 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:181 +msgid "Set your location" +msgstr "Ange din plats" + +#: ../../include/conversation.php:1134 +msgid "set location" +msgstr "ange plats" + +#: ../../include/conversation.php:1135 ../../mod/editpost.php:120 +#: ../../mod/editblock.php:151 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:182 +msgid "Clear browser location" +msgstr "Rensa webbläsarplats" + +#: ../../include/conversation.php:1136 +msgid "clear location" +msgstr "rensa plats" + +#: ../../include/conversation.php:1138 ../../mod/editpost.php:132 +#: ../../mod/editblock.php:164 ../../mod/editlayout.php:159 +#: ../../mod/editwebpage.php:198 +msgid "Title (optional)" +msgstr "Titel (frivilligt)" + +#: ../../include/conversation.php:1141 ../../mod/editpost.php:134 +#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 +#: ../../mod/editwebpage.php:200 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorier (frivilligt, kommaseparerad lista)" + +#: ../../include/conversation.php:1143 ../../mod/editpost.php:122 +#: ../../mod/editblock.php:153 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:184 +msgid "Permission settings" +msgstr "Behörighetsinställningar" + +#: ../../include/conversation.php:1144 +msgid "permissions" +msgstr "behörighet" + +#: ../../include/conversation.php:1151 ../../mod/editpost.php:129 +#: ../../mod/editblock.php:161 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:193 +msgid "Public post" +msgstr "Offentligt inlägg" + +#: ../../include/conversation.php:1153 ../../mod/editpost.php:135 +#: ../../mod/editblock.php:168 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:201 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exempel: bob@example.com, mary@example.com" + +#: ../../include/conversation.php:1166 ../../mod/editpost.php:146 +#: ../../mod/mail.php:242 ../../mod/mail.php:356 ../../mod/editblock.php:178 +#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:210 +msgid "Set expiration date" +msgstr "Ange utgångsdatum" + +#: ../../include/conversation.php:1168 ../../include/ItemObject.php:641 +#: ../../mod/editpost.php:148 ../../mod/mail.php:244 ../../mod/mail.php:358 +msgid "Encrypt text" +msgstr "Kryptera text" + +#: ../../include/conversation.php:1170 ../../mod/events.php:580 +#: ../../mod/editpost.php:150 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1171 ../../mod/settings.php:566 +#: ../../mod/settings.php:592 ../../mod/events.php:579 +#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +msgid "Cancel" +msgstr "Avbryt" + +#: ../../include/conversation.php:1415 +msgid "Discover" +msgstr "Upptäck" + +#: ../../include/conversation.php:1418 +msgid "Imported public streams" +msgstr "Importerade offentliga strömmar" + +#: ../../include/conversation.php:1423 +msgid "Commented Order" +msgstr "Kommentarsordning" + +#: ../../include/conversation.php:1426 +msgid "Sort by Comment Date" +msgstr "Ordna efter kommentarsdatum" + +#: ../../include/conversation.php:1430 +msgid "Posted Order" +msgstr "Inläggsordning" + +#: ../../include/conversation.php:1433 +msgid "Sort by Post Date" +msgstr "Ordna efter när inlägget skrevs" + +#: ../../include/conversation.php:1438 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Personligt" + +#: ../../include/conversation.php:1441 +msgid "Posts that mention or involve you" +msgstr "Inlägg som nämner eller berör dig" + +#: ../../include/conversation.php:1447 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:80 +msgid "New" +msgstr "Nytt" + +#: ../../include/conversation.php:1450 +msgid "Activity Stream - by date" +msgstr "Aktivitetsström - efter datum" + +#: ../../include/conversation.php:1456 +msgid "Starred" +msgstr "Märkt" + +#: ../../include/conversation.php:1459 +msgid "Favourite Posts" +msgstr "Favoritinlägg" + +#: ../../include/conversation.php:1466 +msgid "Spam" +msgstr "Skräp" + +#: ../../include/conversation.php:1469 +msgid "Posts flagged as SPAM" +msgstr "Inlägg markerade som SKRÄP" + +#: ../../include/conversation.php:1509 ../../mod/admin.php:865 +msgid "Channel" +msgstr "Kanal" + +#: ../../include/conversation.php:1512 +msgid "Status Messages and Posts" +msgstr "Statusmeddelanden och inlägg" + +#: ../../include/conversation.php:1521 +msgid "About" +msgstr "Om" + +#: ../../include/conversation.php:1524 +msgid "Profile Details" +msgstr "Profildetaljer" + +#: ../../include/conversation.php:1530 ../../include/apps.php:139 +#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foton" + +#: ../../include/conversation.php:1542 +msgid "Files and Storage" +msgstr "Filer och lagring" + +#: ../../include/conversation.php:1552 ../../include/conversation.php:1555 +msgid "Chatrooms" +msgstr "Chattrum" + +#: ../../include/conversation.php:1565 ../../include/apps.php:129 +#: ../../include/nav.php:117 +msgid "Bookmarks" +msgstr "Bokmärken" + +#: ../../include/conversation.php:1568 +msgid "Saved Bookmarks" +msgstr "Sparade bokmärken" + +#: ../../include/conversation.php:1576 ../../include/apps.php:136 +#: ../../include/nav.php:121 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "Webbsidor" + +#: ../../include/conversation.php:1579 +msgid "Manage Webpages" +msgstr "Hantera webbsidor" + +#: ../../include/widgets.php:91 ../../include/nav.php:171 +#: ../../mod/apps.php:34 +msgid "Apps" +msgstr "Appar" + +#: ../../include/widgets.php:92 msgid "System" msgstr "System" -#: ../../include/widgets.php:90 +#: ../../include/widgets.php:95 msgid "Create Personal App" msgstr "Skapa personlig app" -#: ../../include/widgets.php:91 +#: ../../include/widgets.php:96 msgid "Edit Personal App" msgstr "Redigera personlig app" -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +#: ../../include/widgets.php:138 ../../mod/suggest.php:53 msgid "Ignore/Hide" msgstr "Ignorera/göm" @@ -2940,111 +2620,482 @@ msgstr "Ange kanaladressen" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Exempel: bob@example.com, http://example.com/barbara" -#: ../../include/widgets.php:191 +#: ../../include/widgets.php:190 msgid "Notes" msgstr "Anteckningar" -#: ../../include/widgets.php:263 +#: ../../include/widgets.php:264 msgid "Remove term" msgstr "Ta bort uttryck" -#: ../../include/widgets.php:352 +#: ../../include/widgets.php:347 msgid "Archives" msgstr "Arkiv" -#: ../../include/widgets.php:428 +#: ../../include/widgets.php:425 msgid "Refresh" msgstr "Ladda om" -#: ../../include/widgets.php:429 ../../mod/connedit.php:506 +#: ../../include/widgets.php:426 ../../mod/connedit.php:506 msgid "Me" msgstr "Mig själv" -#: ../../include/widgets.php:430 ../../mod/connedit.php:508 +#: ../../include/widgets.php:427 ../../mod/connedit.php:509 msgid "Best Friends" msgstr "Bästa vänner" -#: ../../include/widgets.php:432 +#: ../../include/widgets.php:429 msgid "Co-workers" msgstr "Kollegor" -#: ../../include/widgets.php:433 ../../mod/connedit.php:510 +#: ../../include/widgets.php:430 ../../mod/connedit.php:511 msgid "Former Friends" msgstr "Tidigare vänner" -#: ../../include/widgets.php:434 ../../mod/connedit.php:511 +#: ../../include/widgets.php:431 ../../mod/connedit.php:512 msgid "Acquaintances" msgstr "Bekanta" -#: ../../include/widgets.php:435 +#: ../../include/widgets.php:432 msgid "Everybody" msgstr "Alla" -#: ../../include/widgets.php:469 +#: ../../include/widgets.php:466 msgid "Account settings" msgstr "Kontoinställningar" -#: ../../include/widgets.php:475 +#: ../../include/widgets.php:472 msgid "Channel settings" msgstr "Kanalinställningar" -#: ../../include/widgets.php:481 +#: ../../include/widgets.php:478 msgid "Additional features" msgstr "Tilläggsfunktioner" -#: ../../include/widgets.php:487 +#: ../../include/widgets.php:484 msgid "Feature settings" msgstr "Funktionsinställningar" -#: ../../include/widgets.php:493 +#: ../../include/widgets.php:490 msgid "Display settings" msgstr "Utseende" -#: ../../include/widgets.php:499 +#: ../../include/widgets.php:496 msgid "Connected apps" msgstr "Anslutna appar" -#: ../../include/widgets.php:505 +#: ../../include/widgets.php:502 msgid "Export channel" msgstr "Exportera kanal" -#: ../../include/widgets.php:511 -msgid "Export content" -msgstr "Exportera innehåll" - -#: ../../include/widgets.php:520 ../../mod/connedit.php:538 +#: ../../include/widgets.php:511 ../../mod/connedit.php:539 msgid "Connection Default Permissions" msgstr "Standardbehörighet för kontakt" -#: ../../include/widgets.php:528 +#: ../../include/widgets.php:519 msgid "Premium Channel Settings" msgstr "Inställningar för premiumkanal" -#: ../../include/widgets.php:562 ../../mod/mail.php:125 +#: ../../include/widgets.php:535 ../../include/apps.php:134 +#: ../../include/nav.php:218 ../../mod/admin.php:951 ../../mod/admin.php:1156 +msgid "Settings" +msgstr "Inställningar" + +#: ../../include/widgets.php:548 ../../mod/mail.php:125 #: ../../mod/message.php:31 msgid "Messages" msgstr "Meddelanden" -#: ../../include/widgets.php:567 +#: ../../include/widgets.php:551 msgid "Check Mail" msgstr "Hämta meddelanden" -#: ../../include/widgets.php:648 +#: ../../include/widgets.php:556 ../../include/nav.php:209 +msgid "New Message" +msgstr "Nytt meddelande" + +#: ../../include/widgets.php:634 msgid "Chat Rooms" msgstr "Chattrum" -#: ../../include/widgets.php:668 +#: ../../include/widgets.php:654 msgid "Bookmarked Chatrooms" msgstr "Bokmärkta chattrum" -#: ../../include/widgets.php:688 +#: ../../include/widgets.php:674 msgid "Suggested Chatrooms" msgstr "Föreslagna chattrum" -#: ../../include/widgets.php:817 ../../include/widgets.php:875 +#: ../../include/widgets.php:801 ../../include/widgets.php:859 msgid "photo/image" msgstr "foto/bild" +#: ../../include/zot.php:664 +msgid "Invalid data packet" +msgstr "Ogiltigt datapaket" + +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "Kunde inte bekräfta kanalsignatur" + +#: ../../include/zot.php:1829 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kunde inte bekräfta signatur för servern %s" + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "Spara i mapp" + +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:1023 ../../mod/photos.php:1035 +msgid "View all" +msgstr "Visa alla" + +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1032 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "ogillar detta" +msgstr[1] "ogillar detta" + +#: ../../include/ItemObject.php:179 +msgid "Add Star" +msgstr "Märk" + +#: ../../include/ItemObject.php:180 +msgid "Remove Star" +msgstr "Ta bort märkning" + +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" +msgstr "Växla märkning" + +#: ../../include/ItemObject.php:185 +msgid "starred" +msgstr "märkt" + +#: ../../include/ItemObject.php:203 +msgid "Add Tag" +msgstr "Lägg till en tagg" + +#: ../../include/ItemObject.php:221 ../../mod/photos.php:975 +msgid "I like this (toggle)" +msgstr "Jag gillar det här (växla)" + +#: ../../include/ItemObject.php:222 ../../mod/photos.php:976 +msgid "I don't like this (toggle)" +msgstr "Jag gillar inte det här (växla)" + +#: ../../include/ItemObject.php:226 +msgid "Share This" +msgstr "Dela det här" + +#: ../../include/ItemObject.php:226 +msgid "share" +msgstr "dela" + +#: ../../include/ItemObject.php:243 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d kommentar" +msgstr[1] "%d kommentarer" + +#: ../../include/ItemObject.php:256 ../../include/ItemObject.php:257 +#, php-format +msgid "View %s's profile - %s" +msgstr "Visa %ss profil - %s" + +#: ../../include/ItemObject.php:260 +msgid "to" +msgstr "till" + +#: ../../include/ItemObject.php:261 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:262 +msgid "Wall-to-Wall" +msgstr "Vägg-till-vägg" + +#: ../../include/ItemObject.php:263 +msgid "via Wall-To-Wall:" +msgstr "via vägg-till-vägg" + +#: ../../include/ItemObject.php:299 +msgid "Save Bookmarks" +msgstr "Spara bokmärken" + +#: ../../include/ItemObject.php:300 +msgid "Add to Calendar" +msgstr "Lägg till kalendern" + +#: ../../include/ItemObject.php:309 +msgid "Mark all seen" +msgstr "Märk alla som lästa" + +#: ../../include/ItemObject.php:314 ../../mod/photos.php:1143 +msgctxt "noun" +msgid "Likes" +msgstr "gillar detta" + +#: ../../include/ItemObject.php:315 ../../mod/photos.php:1144 +msgctxt "noun" +msgid "Dislikes" +msgstr "ogillar detta" + +#: ../../include/ItemObject.php:345 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] visa alla" + +#: ../../include/ItemObject.php:626 ../../mod/photos.php:994 +#: ../../mod/photos.php:1104 +msgid "This is you" +msgstr "Det här är du" + +#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 +#: ../../mod/photos.php:996 ../../mod/photos.php:1106 +msgid "Comment" +msgstr "Kommentera" + +#: ../../include/ItemObject.php:629 ../../mod/mood.php:135 +#: ../../mod/settings.php:565 ../../mod/settings.php:677 +#: ../../mod/settings.php:706 ../../mod/settings.php:730 +#: ../../mod/settings.php:812 ../../mod/settings.php:1004 +#: ../../mod/group.php:81 ../../mod/poke.php:166 ../../mod/setup.php:313 +#: ../../mod/setup.php:358 ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/events.php:598 ../../mod/chat.php:177 ../../mod/chat.php:211 +#: ../../mod/connedit.php:556 ../../mod/mail.php:352 ../../mod/photos.php:594 +#: ../../mod/photos.php:671 ../../mod/photos.php:957 ../../mod/photos.php:997 +#: ../../mod/photos.php:1107 ../../mod/pdledit.php:58 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/fsuggest.php:108 +#: ../../mod/filestorage.php:146 ../../mod/connect.php:93 +#: ../../mod/locs.php:99 ../../mod/import.php:504 ../../mod/profiles.php:633 +#: ../../mod/admin.php:412 ../../mod/admin.php:723 ../../mod/admin.php:859 +#: ../../mod/admin.php:992 ../../mod/admin.php:1191 ../../mod/admin.php:1278 +#: ../../mod/invite.php:142 ../../mod/xchan.php:11 ../../mod/appman.php:99 +#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Skicka" + +#: ../../include/ItemObject.php:630 +msgid "Bold" +msgstr "Fet" + +#: ../../include/ItemObject.php:631 +msgid "Italic" +msgstr "Kursiv" + +#: ../../include/ItemObject.php:632 +msgid "Underline" +msgstr "Understruken" + +#: ../../include/ItemObject.php:633 +msgid "Quote" +msgstr "Citat" + +#: ../../include/ItemObject.php:634 +msgid "Code" +msgstr "Kod" + +#: ../../include/ItemObject.php:635 +msgid "Image" +msgstr "Bild" + +#: ../../include/ItemObject.php:636 +msgid "Link" +msgstr "Länk" + +#: ../../include/ItemObject.php:637 +msgid "Video" +msgstr "Video" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Övrigt" + +#: ../../include/datetime.php:142 +msgid "YYYY-MM-DD or MM-DD" +msgstr "ÅÅÅÅ-MM-DD eller MM-DD" + +#: ../../include/datetime.php:259 +msgid "never" +msgstr "aldrig" + +#: ../../include/datetime.php:265 +msgid "less than a second ago" +msgstr "mindre än en sekund sedan" + +#: ../../include/datetime.php:268 +msgid "year" +msgstr "år" + +#: ../../include/datetime.php:268 +msgid "years" +msgstr "år" + +#: ../../include/datetime.php:269 +msgid "month" +msgstr "månad" + +#: ../../include/datetime.php:269 +msgid "months" +msgstr "månader" + +#: ../../include/datetime.php:270 +msgid "week" +msgstr "vecka" + +#: ../../include/datetime.php:270 +msgid "weeks" +msgstr "veckor" + +#: ../../include/datetime.php:271 +msgid "day" +msgstr "dag" + +#: ../../include/datetime.php:271 +msgid "days" +msgstr "dagar" + +#: ../../include/datetime.php:272 +msgid "hour" +msgstr "timme" + +#: ../../include/datetime.php:272 +msgid "hours" +msgstr "timmar" + +#: ../../include/datetime.php:273 +msgid "minute" +msgstr "minut" + +#: ../../include/datetime.php:273 +msgid "minutes" +msgstr "minuter" + +#: ../../include/datetime.php:274 +msgid "second" +msgstr "sekund" + +#: ../../include/datetime.php:274 +msgid "seconds" +msgstr "sekunder" + +#: ../../include/datetime.php:283 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s sedan" + +#: ../../include/datetime.php:491 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss födelsedag" + +#: ../../include/datetime.php:492 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Grattis på födelsedagen %1$s" + +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Serveradministrator" + +#: ../../include/apps.php:130 +msgid "Address Book" +msgstr "Adressbok" + +#: ../../include/apps.php:131 ../../include/nav.php:125 ../../boot.php:1540 +msgid "Login" +msgstr "Logga in" + +#: ../../include/apps.php:132 ../../include/nav.php:216 +#: ../../mod/manage.php:148 +msgid "Channel Manager" +msgstr "Kanalhanterare" + +#: ../../include/apps.php:133 ../../include/nav.php:190 +msgid "Matrix" +msgstr "Matris" + +#: ../../include/apps.php:137 ../../include/nav.php:193 +msgid "Channel Home" +msgstr "Kanalhem" + +#: ../../include/apps.php:140 ../../include/nav.php:212 +#: ../../mod/events.php:442 +msgid "Events" +msgstr "Händelser" + +#: ../../include/apps.php:141 ../../include/nav.php:176 +#: ../../mod/directory.php:321 +msgid "Directory" +msgstr "Katalog" + +#: ../../include/apps.php:142 ../../include/nav.php:168 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" +msgstr "Hjälp" + +#: ../../include/apps.php:143 ../../include/nav.php:204 +msgid "Mail" +msgstr "Privat meddelande" + +#: ../../include/apps.php:144 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Sinnesstämning" + +#: ../../include/apps.php:146 ../../include/nav.php:111 +msgid "Chat" +msgstr "Chatt" + +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Sond" + +#: ../../include/apps.php:149 +msgid "Suggest" +msgstr "Föreslå" + +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Slumpvald kanal" + +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Bjud in" + +#: ../../include/apps.php:152 +msgid "Features" +msgstr "Funktioner" + +#: ../../include/apps.php:153 +msgid "Language" +msgstr "Språk" + +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Inlägg" + +#: ../../include/apps.php:155 +msgid "Profile Photo" +msgstr "Profilfoto" + +#: ../../include/apps.php:247 ../../mod/settings.php:81 +#: ../../mod/settings.php:591 +msgid "Update" +msgstr "Uppdatera" + +#: ../../include/apps.php:247 +msgid "Install" +msgstr "Installera" + +#: ../../include/apps.php:252 +msgid "Purchase" +msgstr "Köp" + #: ../../include/Contact.php:123 msgid "New window" msgstr "Nytt fönster" @@ -3053,7 +3104,7 @@ msgstr "Nytt fönster" msgid "Open the selected location in a different window or browser tab" msgstr "Öppna den valda platsen i ett annat fönster eller en annan webbläsarflik" -#: ../../include/Contact.php:211 ../../mod/admin.php:646 +#: ../../include/Contact.php:214 ../../mod/admin.php:646 #, php-format msgid "User '%s' deleted" msgstr "Användare '%s' borttagen" @@ -3062,15 +3113,6 @@ msgstr "Användare '%s' borttagen" msgid "Delete this item?" msgstr "Ta bort den här posten?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:620 -#: ../../mod/photos.php:996 ../../mod/photos.php:1106 -msgid "Comment" -msgstr "Kommentar" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:337 -msgid "[+] show all" -msgstr "[+] visa alla" - #: ../../include/js_strings.php:8 msgid "[-] show less" msgstr "[-] visa färre" @@ -3424,379 +3466,205 @@ msgstr "Bryr mig inte" msgid "Ask me" msgstr "Fråga mig" -#: ../../include/apps.php:126 -msgid "Site Admin" -msgstr "Serveradministrator" +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1539 +msgid "Logout" +msgstr "Logga ut" -#: ../../include/apps.php:128 -msgid "Address Book" -msgstr "Adressbok" +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" +msgstr "Avsluta sessionen" -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Sinnesstämning" +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" +msgstr "Hem" -#: ../../include/apps.php:146 -msgid "Probe" -msgstr "Sond" +#: ../../include/nav.php:98 +msgid "Your posts and conversations" +msgstr "Dina inlägg och konversationer" -#: ../../include/apps.php:147 -msgid "Suggest" -msgstr "Föreslå" +#: ../../include/nav.php:99 +msgid "Your profile page" +msgstr "Din profilsida" -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "Slumpvald kanal" +#: ../../include/nav.php:101 +msgid "Edit Profiles" +msgstr "Redigera profiler" -#: ../../include/apps.php:149 -msgid "Invite" -msgstr "Bjud in" +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" +msgstr "Hantera/redigera profiler" -#: ../../include/apps.php:150 -msgid "Features" -msgstr "Funktioner" +#: ../../include/nav.php:103 +msgid "Edit your profile" +msgstr "Redigera din profil" -#: ../../include/apps.php:151 -msgid "Language" -msgstr "Språk" +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "Dina foton" -#: ../../include/apps.php:152 -msgid "Post" -msgstr "Inlägg" +#: ../../include/nav.php:106 +msgid "Your files" +msgstr "Dina filer" -#: ../../include/apps.php:153 -msgid "Profile Photo" -msgstr "Profilfoto" +#: ../../include/nav.php:111 +msgid "Your chatrooms" +msgstr "Dina chattrum" -#: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:589 -msgid "Update" -msgstr "Uppdatera" +#: ../../include/nav.php:117 +msgid "Your bookmarks" +msgstr "Dina bokmärken" -#: ../../include/apps.php:242 -msgid "Install" -msgstr "Installera" +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "Dina webbsidor" -#: ../../include/apps.php:247 -msgid "Purchase" -msgstr "Köp" +#: ../../include/nav.php:125 +msgid "Sign in" +msgstr "Logga in" -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "Utloggad." - -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "Inloggning misslyckades" - -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Inloggning misslyckades." - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Spara i mapp" - -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1023 ../../mod/photos.php:1035 -msgid "View all" -msgstr "Visa alla" - -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1032 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "ogillar detta" -msgstr[1] "ogillar detta" - -#: ../../include/ItemObject.php:179 -msgid "Add Star" -msgstr "Märk" - -#: ../../include/ItemObject.php:180 -msgid "Remove Star" -msgstr "Ta bort märkning" - -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" -msgstr "Växla märkning" - -#: ../../include/ItemObject.php:185 -msgid "starred" -msgstr "märkt" - -#: ../../include/ItemObject.php:203 -msgid "Add Tag" -msgstr "Lägg till en tagg" - -#: ../../include/ItemObject.php:221 ../../mod/photos.php:975 -msgid "I like this (toggle)" -msgstr "Jag gillar det här (växla)" - -#: ../../include/ItemObject.php:222 ../../mod/photos.php:976 -msgid "I don't like this (toggle)" -msgstr "Jag gillar inte det här (växla)" - -#: ../../include/ItemObject.php:226 -msgid "Share This" -msgstr "Dela det här" - -#: ../../include/ItemObject.php:226 -msgid "share" -msgstr "dela" - -#: ../../include/ItemObject.php:236 +#: ../../include/nav.php:142 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d kommentar" -msgstr[1] "%d kommentarer" +msgid "%s - click to logout" +msgstr "%s - klicka för att logga ut" -#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 -#, php-format -msgid "View %s's profile - %s" -msgstr "Visa %ss profil - %s" +#: ../../include/nav.php:145 +msgid "Remote authentication" +msgstr "Fjärrinloggning" -#: ../../include/ItemObject.php:252 -msgid "to" -msgstr "till" +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" +msgstr "Klicka för att autentisera mot din hemmahubb" -#: ../../include/ItemObject.php:253 -msgid "via" -msgstr "via" +#: ../../include/nav.php:159 +msgid "Home Page" +msgstr "Hemsida" -#: ../../include/ItemObject.php:254 -msgid "Wall-to-Wall" -msgstr "Vägg-till-vägg" +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1516 +msgid "Register" +msgstr "Skapa konto" -#: ../../include/ItemObject.php:255 -msgid "via Wall-To-Wall:" -msgstr "via vägg-till-vägg" +#: ../../include/nav.php:163 +msgid "Create an account" +msgstr "Skapa ett konto" -#: ../../include/ItemObject.php:291 -msgid "Save Bookmarks" -msgstr "Spara bokmärken" +#: ../../include/nav.php:168 +msgid "Help and documentation" +msgstr "Hjälp och dokumentation" -#: ../../include/ItemObject.php:292 -msgid "Add to Calendar" -msgstr "Lägg till kalendern" +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" +msgstr "Applikationer, verktyg, länkar, spel" -#: ../../include/ItemObject.php:301 -msgid "Mark all seen" -msgstr "Märk alla som lästa" +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "Sök innehåll" -#: ../../include/ItemObject.php:306 ../../mod/photos.php:1143 -msgctxt "noun" -msgid "Likes" -msgstr "gillar detta" +#: ../../include/nav.php:176 +msgid "Channel Directory" +msgstr "Kanalkatalog" -#: ../../include/ItemObject.php:307 ../../mod/photos.php:1144 -msgctxt "noun" -msgid "Dislikes" -msgstr "ogillar detta" +#: ../../include/nav.php:190 +msgid "Your matrix" +msgstr "Din matris" -#: ../../include/ItemObject.php:618 ../../mod/photos.php:994 -#: ../../mod/photos.php:1104 -msgid "This is you" -msgstr "Det här är du" +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" +msgstr "Märk alla matrisnotifieringar som lästa" -#: ../../include/ItemObject.php:621 ../../mod/mood.php:135 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/poke.php:166 -#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/settings.php:563 -#: ../../mod/settings.php:675 ../../mod/settings.php:704 -#: ../../mod/settings.php:728 ../../mod/settings.php:805 -#: ../../mod/settings.php:997 ../../mod/events.php:598 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:93 ../../mod/connedit.php:555 -#: ../../mod/thing.php:284 ../../mod/thing.php:327 ../../mod/profiles.php:633 -#: ../../mod/pdledit.php:58 ../../mod/fsuggest.php:108 -#: ../../mod/filestorage.php:146 ../../mod/group.php:81 -#: ../../mod/import.php:480 ../../mod/admin.php:412 ../../mod/admin.php:723 -#: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 ../../mod/locs.php:99 ../../mod/mail.php:352 -#: ../../mod/invite.php:142 ../../mod/xchan.php:11 ../../mod/photos.php:594 -#: ../../mod/photos.php:671 ../../mod/photos.php:957 ../../mod/photos.php:997 -#: ../../mod/photos.php:1107 ../../mod/appman.php:99 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Skicka" +#: ../../include/nav.php:193 +msgid "Channel home" +msgstr "Kanalhem" -#: ../../include/ItemObject.php:622 -msgid "Bold" -msgstr "Fet" +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" +msgstr "Märk alla kanalnotifieringar som lästa" -#: ../../include/ItemObject.php:623 -msgid "Italic" -msgstr "Kursiv" +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" +msgstr "Kontakter" -#: ../../include/ItemObject.php:624 -msgid "Underline" -msgstr "Understruken" +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "Meddelanden" -#: ../../include/ItemObject.php:625 -msgid "Quote" -msgstr "Citat" +#: ../../include/nav.php:200 +msgid "Notifications" +msgstr "Notifieringar" -#: ../../include/ItemObject.php:626 -msgid "Code" -msgstr "Kod" +#: ../../include/nav.php:201 +msgid "See all notifications" +msgstr "Se alla notifieringar" -#: ../../include/ItemObject.php:627 -msgid "Image" -msgstr "Bild" +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Märk alla systemnotifieringar som lästa" -#: ../../include/ItemObject.php:628 -msgid "Link" -msgstr "Länk" +#: ../../include/nav.php:204 +msgid "Private mail" +msgstr "Privat meddelande" -#: ../../include/ItemObject.php:629 -msgid "Video" -msgstr "Video" +#: ../../include/nav.php:205 +msgid "See all private messages" +msgstr "Se alla privata meddelanden" -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Rumsnamn saknas" +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" +msgstr "Märk alla privata meddelanden som lästa" -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Rumsnamnet finns redan" +#: ../../include/nav.php:207 +msgid "Inbox" +msgstr "Inkorg" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ogiltig rumsbeskrivning." +#: ../../include/nav.php:208 +msgid "Outbox" +msgstr "Utkorg" -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Rummet hittades inte." +#: ../../include/nav.php:212 +msgid "Event Calendar" +msgstr "Kalender" -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Rummet är fullt" +#: ../../include/nav.php:213 +msgid "See all events" +msgstr "Se alla händelser" + +#: ../../include/nav.php:214 +msgid "Mark all events seen" +msgstr "Märk alla händelser som lästa" + +#: ../../include/nav.php:216 +msgid "Manage Your Channels" +msgstr "Hantera dina kanaler" + +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" +msgstr "Konto-/kanalinställningar" + +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Administration" + +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" +msgstr "Serverinställning och -konfiguration" + +#: ../../include/nav.php:262 +msgid "@name, #tag, content" +msgstr "@namn, #tagg, innehåll" + +#: ../../include/nav.php:263 +msgid "Please wait..." +msgstr "Vänta..." + +#: ../../include/security.php:357 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades." #: ../../mod/mood.php:132 msgid "Set your current mood and tell your friends" msgstr "Ange din nuvarande sinnesstämning och visa för dina vänner" -#: ../../mod/mitem.php:24 ../../mod/menu.php:108 -msgid "Menu not found." -msgstr "Menyn hittades inte." - -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menyval uppdaterat." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Kunde inte uppdatera menyval." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menyval tillagt." - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Kunde inte lägga till menyval." - -#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "Hittades inte." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Hantera menyval" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Redigera meny" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Redigera menyval" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Ta bort menyval" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Nytt menyval" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Redigera den här menysamlaren" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Lägg till menyval" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Ta bort det här menyvalet" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Redigera det här menyvalet" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Nytt menyval" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Behörighet för menyval" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1032 -msgid "(click to open/close)" -msgstr "(klicka för att öppna/stänga)" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Länktext" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "Länkens URL" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use RedMatrix magic-auth if available" -msgstr "Använd RedMatrix magic-auth om tillgängligt" - -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Öppna länk i nytt fönster" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Ordningstal i listan" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Större tal sjunker till botten av listan" - -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menyval hittas inte." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menyval borttaget." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menyval kunde inte tas bort." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Redigera menyval" - -#: ../../mod/mitem.php:213 ../../mod/menu.php:130 -msgid "Modify" -msgstr "Ändra" - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Lite text om vad man kan göra som ny här" - #: ../../mod/register.php:44 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon." @@ -3876,92 +3744,748 @@ msgstr "Välj ett lösenord" msgid "Please re-enter your password" msgstr "Ange lösenordet igen" -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- välj -" +#: ../../mod/mitem.php:24 ../../mod/menu.php:108 +msgid "Menu not found." +msgstr "Menyn hittades inte." -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ogiltigt profil-ID." +#: ../../mod/mitem.php:67 +msgid "Menu element updated." +msgstr "Menyval uppdaterat." -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Redigera profilsynlighet" +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." +msgstr "Kunde inte uppdatera menyval." -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klicka på en kontakt för att lägga till eller ta bort." +#: ../../mod/mitem.php:77 +msgid "Menu element added." +msgstr "Menyval tillagt." -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Kan ses av" +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." +msgstr "Kunde inte lägga till menyval." -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" +#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "Hittades inte." + +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" +msgstr "Hantera menyval" + +#: ../../mod/mitem.php:130 +msgid "Edit menu" +msgstr "Redigera meny" + +#: ../../mod/mitem.php:133 +msgid "Edit element" +msgstr "Redigera menyval" + +#: ../../mod/mitem.php:134 +msgid "Drop element" +msgstr "Ta bort menyval" + +#: ../../mod/mitem.php:135 +msgid "New element" +msgstr "Nytt menyval" + +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" +msgstr "Redigera den här menysamlaren" + +#: ../../mod/mitem.php:137 +msgid "Add menu element" +msgstr "Lägg till menyval" + +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" +msgstr "Ta bort det här menyvalet" + +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" +msgstr "Redigera det här menyvalet" + +#: ../../mod/mitem.php:158 +msgid "New Menu Element" +msgstr "Nytt menyval" + +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" +msgstr "Behörighet för menyval" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1039 +msgid "(click to open/close)" +msgstr "(klicka för att öppna/stänga)" + +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" +msgstr "Länktext" + +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" +msgstr "Länkens URL" + +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "Använd RedMatrix magic-auth om tillgängligt" + +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" +msgstr "Öppna länk i nytt fönster" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" +msgstr "Ordningstal i listan" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Större tal sjunker till botten av listan" + +#: ../../mod/mitem.php:181 +msgid "Menu item not found." +msgstr "Menyval hittas inte." + +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." +msgstr "Menyval borttaget." + +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." +msgstr "Menyval kunde inte tas bort." + +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" +msgstr "Redigera menyval" + +#: ../../mod/mitem.php:213 ../../mod/menu.php:130 +msgid "Modify" +msgstr "Ändra" + +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Lite text om vad man kan göra som ny här" + +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "Namn är obligatoriskt" + +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "Nyckel och kod är obligatoriska" + +#: ../../mod/settings.php:213 +msgid "Passwords do not match. Password unchanged." +msgstr "Lösenorden stämmer inte överens. Lösenordet har inte ändrats." + +#: ../../mod/settings.php:217 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Tomma lösenord tillåts inte. Lösenordet har inte ändrats." + +#: ../../mod/settings.php:231 +msgid "Password changed." +msgstr "Lösenordet ändrat." + +#: ../../mod/settings.php:233 +msgid "Password update failed. Please try again." +msgstr "Lösenordsuppdatering misslyckades. Försök igen." + +#: ../../mod/settings.php:247 +msgid "Not valid email." +msgstr "Inte en giltig e-postadress." + +#: ../../mod/settings.php:250 +msgid "Protected email address. Cannot change to that email." +msgstr "Skyddad e-postadress. Kan inte ändra till den." + +#: ../../mod/settings.php:259 +msgid "System failure storing new email. Please try again." +msgstr "Systemfel när ny e-postadress skulle sparas. Försök igen." + +#: ../../mod/settings.php:495 +msgid "Settings updated." +msgstr "Inställningar uppdaterade." + +#: ../../mod/settings.php:564 ../../mod/settings.php:590 +#: ../../mod/settings.php:626 +msgid "Add application" +msgstr "Lägg till applikation" + +#: ../../mod/settings.php:567 +msgid "Name of application" +msgstr "Applikationens namn" + +#: ../../mod/settings.php:568 ../../mod/settings.php:594 +msgid "Consumer Key" +msgstr "Nyckel för konsument" + +#: ../../mod/settings.php:568 ../../mod/settings.php:569 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatiskt genererad - ändra om så önskas. Maxlängd 20" + +#: ../../mod/settings.php:569 ../../mod/settings.php:595 +msgid "Consumer Secret" +msgstr "Kod för konsument" + +#: ../../mod/settings.php:570 ../../mod/settings.php:596 +msgid "Redirect" +msgstr "Omdirigering" + +#: ../../mod/settings.php:570 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Omdirigerings-URI - lämna blankt om inte din applikation specifikt behöver det" + +#: ../../mod/settings.php:571 ../../mod/settings.php:597 +msgid "Icon url" +msgstr "Ikon-URL" + +#: ../../mod/settings.php:571 +msgid "Optional" +msgstr "Frivillig" + +#: ../../mod/settings.php:582 +msgid "You can't edit this application." +msgstr "Du kan inte redigera den här applikationen." + +#: ../../mod/settings.php:625 +msgid "Connected Apps" +msgstr "Anslutna appar" + +#: ../../mod/settings.php:629 +msgid "Client key starts with" +msgstr "Klientnyckel börjar med" + +#: ../../mod/settings.php:630 +msgid "No name" +msgstr "Inget namn" + +#: ../../mod/settings.php:631 +msgid "Remove authorization" +msgstr "Ta bort behörighet" + +#: ../../mod/settings.php:642 +msgid "No feature settings configured" +msgstr "Inga funktionsinställningar konfigurerade" + +#: ../../mod/settings.php:650 +msgid "Feature Settings" +msgstr "Funktionsinställningar" + +#: ../../mod/settings.php:673 +msgid "Account Settings" +msgstr "Kontoinställningar" + +#: ../../mod/settings.php:674 +msgid "Password Settings" +msgstr "Lösenordsinställningar" + +#: ../../mod/settings.php:675 +msgid "New Password:" +msgstr "Nytt lösenord:" + +#: ../../mod/settings.php:676 +msgid "Confirm:" +msgstr "Bekräfta:" + +#: ../../mod/settings.php:676 +msgid "Leave password fields blank unless changing" +msgstr "Lämna lösenordsfälten blanka om lösenordet inte ska ändras" + +#: ../../mod/settings.php:678 ../../mod/settings.php:1013 +msgid "Email Address:" +msgstr "E-postadress" + +#: ../../mod/settings.php:679 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "Ta bort konto" + +#: ../../mod/settings.php:680 +msgid "Remove this account from this server including all its channels" +msgstr "Ta bort det här kontot från servern, inklusive alla dess kanaler" + +#: ../../mod/settings.php:681 ../../mod/settings.php:1095 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "Varning: Den här handlingen är permanent och kan inte återställas." + +#: ../../mod/settings.php:697 +msgid "Off" +msgstr "Av" + +#: ../../mod/settings.php:697 +msgid "On" +msgstr "På" + +#: ../../mod/settings.php:704 +msgid "Additional Features" +msgstr "Ytterligare funktioner" + +#: ../../mod/settings.php:729 +msgid "Connector Settings" +msgstr "Anslutningsinställningar" + +#: ../../mod/settings.php:768 +msgid "No special theme for mobile devices" +msgstr "Inget särskilt tema för mobila enheter" + +#: ../../mod/settings.php:771 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (experimentellt)" + +#: ../../mod/settings.php:774 ../../mod/admin.php:363 +msgid "mobile" +msgstr "mobilt" + +#: ../../mod/settings.php:810 +msgid "Display Settings" +msgstr "Utseende" + +#: ../../mod/settings.php:816 +msgid "Display Theme:" +msgstr "Tema för utseende:" + +#: ../../mod/settings.php:817 +msgid "Mobile Theme:" +msgstr "Mobilt tema:" + +#: ../../mod/settings.php:818 +msgid "Enable user zoom on mobile devices" +msgstr "Tillåt användare att zooma på mobila enheter" + +#: ../../mod/settings.php:819 +msgid "Update browser every xx seconds" +msgstr "Uppdatera webbläsaren var xx sekund" + +#: ../../mod/settings.php:819 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minst 10 sekunder, inget maximum" + +#: ../../mod/settings.php:820 +msgid "Maximum number of conversations to load at any time:" +msgstr "Högsta antal konversationer att ladda åt gången:" + +#: ../../mod/settings.php:820 +msgid "Maximum of 100 items" +msgstr "Maximalt 100 poster" + +#: ../../mod/settings.php:821 +msgid "Don't show emoticons" +msgstr "Visa inte känsloikoner" + +#: ../../mod/settings.php:822 +msgid "Link post titles to source" +msgstr "Länka inläggstitlar till källan" + +#: ../../mod/settings.php:823 +msgid "System Page Layout Editor - (advanced)" +msgstr "Redigera systemets sidlayout (avancerat)" + +#: ../../mod/settings.php:826 +msgid "Use blog/list mode on channel page" +msgstr "Använd blogg-/listläge på kanalsida" + +#: ../../mod/settings.php:826 ../../mod/settings.php:827 +msgid "(comments displayed separately)" +msgstr "(kommentarer visas separat)" + +#: ../../mod/settings.php:827 +msgid "Use blog/list mode on matrix page" +msgstr "Använd blogg-/listläge på matrissida" + +#: ../../mod/settings.php:828 +msgid "Channel page max height of content (in pixels)" +msgstr "Maxhöjd för innehåll på kanalsidor (i pixels)" + +#: ../../mod/settings.php:828 ../../mod/settings.php:829 +msgid "click to expand content exceeding this height" +msgstr "klicka för att fälla ut innehåll som överskrider den här höjden" + +#: ../../mod/settings.php:829 +msgid "Matrix page max height of content (in pixels)" +msgstr "Maxhöjd för innehåll på matrissidan (i pixels)" + +#: ../../mod/settings.php:863 +msgid "Nobody except yourself" +msgstr "Ingen utom dig själv" + +#: ../../mod/settings.php:864 +msgid "Only those you specifically allow" +msgstr "Endast utvalda" + +#: ../../mod/settings.php:865 +msgid "Approved connections" +msgstr "Godkända kontakter" + +#: ../../mod/settings.php:866 +msgid "Any connections" msgstr "Alla kontakter" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Misslyckades att skapa källa. Ingen kanal vald." +#: ../../mod/settings.php:867 +msgid "Anybody on this website" +msgstr "Vem som helst på den här servern" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Källa skapad." +#: ../../mod/settings.php:868 +msgid "Anybody in this network" +msgstr "Vem som helst i det här nätverket" -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Källa uppdaterad." +#: ../../mod/settings.php:869 +msgid "Anybody authenticated" +msgstr "Vem som helst som har autentiserat sig" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../mod/settings.php:870 +msgid "Anybody on the internet" +msgstr "Vem som helst på Internet" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Hantera fjärrkällor med innehåll för din kanal." +#: ../../mod/settings.php:944 +msgid "Publish your default profile in the network directory" +msgstr "Publicera din standardprofil i nätverkskatalogen" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Ny källa" +#: ../../mod/settings.php:944 ../../mod/settings.php:949 +#: ../../mod/settings.php:1032 ../../mod/api.php:106 +#: ../../mod/profiles.php:592 ../../mod/admin.php:390 +msgid "No" +msgstr "Nej" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 +#: ../../mod/settings.php:944 ../../mod/settings.php:949 +#: ../../mod/settings.php:1032 ../../mod/api.php:105 +#: ../../mod/profiles.php:591 ../../mod/admin.php:392 +msgid "Yes" +msgstr "Ja" + +#: ../../mod/settings.php:949 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Tillåt oss att föreslå dig som möjlig vän för nya medlemmar" + +#: ../../mod/settings.php:953 ../../mod/profile_photo.php:365 +msgid "or" +msgstr "eller" + +#: ../../mod/settings.php:958 +msgid "Your channel address is" +msgstr "Din kanaladress är" + +#: ../../mod/settings.php:1002 +msgid "Channel Settings" +msgstr "Kanalinställningar" + +#: ../../mod/settings.php:1011 +msgid "Basic Settings" +msgstr "Grundläggande inställningar" + +#: ../../mod/settings.php:1014 +msgid "Your Timezone:" +msgstr "Din tidszon:" + +#: ../../mod/settings.php:1015 +msgid "Default Post Location:" +msgstr "Standardplats:" + +#: ../../mod/settings.php:1015 +msgid "Geographical location to display on your posts" +msgstr "Geografisk plats att visa för dina inlägg" + +#: ../../mod/settings.php:1016 +msgid "Use Browser Location:" +msgstr "Använd webbläsarens position:" + +#: ../../mod/settings.php:1018 +msgid "Adult Content" +msgstr "Innehåll olämpligt för barn" + +#: ../../mod/settings.php:1018 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importera allt eller valt innehåll från följande kanal till den här kanalen och distribuera det enligt dina kanalinställningar." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Den här kanalen publicerar ofta eller regelbundet innehåll som är olämpligt för barn. (Tagga allt pornografiskt material och/eller nakenhet med #NSFW, tack)" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importera endast innehåll med de här orden (ett per rad)" +#: ../../mod/settings.php:1020 +msgid "Security and Privacy Settings" +msgstr "Säkerhets- och integritetsinställningar" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Lämna blankt för att importera allt offentligt innehåll" +#: ../../mod/settings.php:1022 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Dina behörigheter har redan ställts in. Klicka för att visa/ändra" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Kanalnamn" +#: ../../mod/settings.php:1024 +msgid "Hide my online presence" +msgstr "Visa inte min online-närvaro" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Källa hittades inte." +#: ../../mod/settings.php:1024 +msgid "Prevents displaying in your profile that you are online" +msgstr "Förhindrar att det syns i din profil att du är online" -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Redigera källa" +#: ../../mod/settings.php:1026 +msgid "Simple Privacy Settings:" +msgstr "Enkla integritetsinställningar:" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Ta bort källa" +#: ../../mod/settings.php:1027 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Väldigt offentligt - extremt tillåtande (bör användas försiktigt)" -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Källa borttagen" +#: ../../mod/settings.php:1028 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Typiskt - offentligt som standard, privat när så önskas (liknande behörigheter som på sociala nätverk men med förbättrad integritet)" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Kunde inte ta bort källa." +#: ../../mod/settings.php:1029 +msgid "Private - default private, never open or public" +msgstr "Privat - privat som standard, aldrig öppet eller offentligt" + +#: ../../mod/settings.php:1030 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockera - som standard blockerat till/från alla" + +#: ../../mod/settings.php:1032 +msgid "Allow others to tag your posts" +msgstr "Låt andra tagga dina inlägg" + +#: ../../mod/settings.php:1032 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Ofta använt av gemenskapen för att i efterhand flagga olämpligt innehåll" + +#: ../../mod/settings.php:1034 +msgid "Advanced Privacy Settings" +msgstr "Avancerade integritetsinställningar" + +#: ../../mod/settings.php:1036 +msgid "Expire other channel content after this many days" +msgstr "Låt annat kanalinnehåll upphöra efter efter så här många dagar" + +#: ../../mod/settings.php:1036 +msgid "0 or blank prevents expiration" +msgstr "0 eller blankt förhindrar upphörande" + +#: ../../mod/settings.php:1037 +msgid "Maximum Friend Requests/Day:" +msgstr "Högsta antal vänförfrågningar per dag:" + +#: ../../mod/settings.php:1037 +msgid "May reduce spam activity" +msgstr "Kan reducera spamaktivitet" + +#: ../../mod/settings.php:1038 +msgid "Default Post Permissions" +msgstr "Standardbehörighet för inlägg" + +#: ../../mod/settings.php:1043 +msgid "Channel permissions category:" +msgstr "Kanalens behörighetskategori:" + +#: ../../mod/settings.php:1051 +msgid "Maximum private messages per day from unknown people:" +msgstr "Högsta antal privata meddelanden per dag från okända personer:" + +#: ../../mod/settings.php:1051 +msgid "Useful to reduce spamming" +msgstr "Användbart för att minska skräputskick" + +#: ../../mod/settings.php:1054 +msgid "Notification Settings" +msgstr "Notifieringsinställningar" + +#: ../../mod/settings.php:1055 +msgid "By default post a status message when:" +msgstr "Skicka som standard ett statusmeddelande när:" + +#: ../../mod/settings.php:1056 +msgid "accepting a friend request" +msgstr "du accepterar en vänförfrågan" + +#: ../../mod/settings.php:1057 +msgid "joining a forum/community" +msgstr "du går med i ett forum/en gemenskap" + +#: ../../mod/settings.php:1058 +msgid "making an interesting profile change" +msgstr "du gör en intressant ändring av profilen" + +#: ../../mod/settings.php:1059 +msgid "Send a notification email when:" +msgstr "Skicka en notifiering via e-post när:" + +#: ../../mod/settings.php:1060 +msgid "You receive a connection request" +msgstr "Du får en kontaktförfrågan" + +#: ../../mod/settings.php:1061 +msgid "Your connections are confirmed" +msgstr "Dina kontakter bekräftas" + +#: ../../mod/settings.php:1062 +msgid "Someone writes on your profile wall" +msgstr "Någon skriver på din profilvägg" + +#: ../../mod/settings.php:1063 +msgid "Someone writes a followup comment" +msgstr "Någon skriver en uppföljande kommentar" + +#: ../../mod/settings.php:1064 +msgid "You receive a private message" +msgstr "Du tar emot ett privat meddelande" + +#: ../../mod/settings.php:1065 +msgid "You receive a friend suggestion" +msgstr "Du tar emot ett vänförslag" + +#: ../../mod/settings.php:1066 +msgid "You are tagged in a post" +msgstr "Du taggas i ett inlägg" + +#: ../../mod/settings.php:1067 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du puffas/stöts till/etc. i ett inlägg" + +#: ../../mod/settings.php:1070 +msgid "Show visual notifications including:" +msgstr "Visa visuella notifieringar vid:" + +#: ../../mod/settings.php:1072 +msgid "Unseen matrix activity" +msgstr "Oläst matrisaktivitet" + +#: ../../mod/settings.php:1073 +msgid "Unseen channel activity" +msgstr "Oläst kanalaktivitet" + +#: ../../mod/settings.php:1074 +msgid "Unseen private messages" +msgstr "Olästa privata meddelanden" + +#: ../../mod/settings.php:1074 ../../mod/settings.php:1079 +#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 +msgid "Recommended" +msgstr "Rekommenderas" + +#: ../../mod/settings.php:1075 +msgid "Upcoming events" +msgstr "Kommande händelser" + +#: ../../mod/settings.php:1076 +msgid "Events today" +msgstr "Dagens händelser" + +#: ../../mod/settings.php:1077 +msgid "Upcoming birthdays" +msgstr "Kommande födelsedagar" + +#: ../../mod/settings.php:1077 +msgid "Not available in all themes" +msgstr "Inte tillgänglig i alla teman" + +#: ../../mod/settings.php:1078 +msgid "System (personal) notifications" +msgstr "Systemmeddelanden (personliga)" + +#: ../../mod/settings.php:1079 +msgid "System info messages" +msgstr "Systemmeddelanden" + +#: ../../mod/settings.php:1080 +msgid "System critical alerts" +msgstr "Systemkritiska varningar" + +#: ../../mod/settings.php:1081 +msgid "New connections" +msgstr "Nya kontakter" + +#: ../../mod/settings.php:1082 +msgid "System Registrations" +msgstr "Systemregistreringar" + +#: ../../mod/settings.php:1084 +msgid "Notify me of events this many days in advance" +msgstr "Meddela mig om händelser så här många dagar i förväg" + +#: ../../mod/settings.php:1084 +msgid "Must be greater than 0" +msgstr "Måste vara större än 0" + +#: ../../mod/settings.php:1086 +msgid "Advanced Account/Page Type Settings" +msgstr "Avancerade konto-/sidtypsinställningar" + +#: ../../mod/settings.php:1087 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändra det här kontots beteende i särskilda situationer" + +#: ../../mod/settings.php:1090 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Aktivera expertläge (i Inställningar > Ytterligare funktioner) för att göra ändringar!" + +#: ../../mod/settings.php:1091 +msgid "Miscellaneous Settings" +msgstr "Diverse inställningar" + +#: ../../mod/settings.php:1093 +msgid "Personal menu to display in your channel pages" +msgstr "Personlig meny att visa i dina kanalsidor" + +#: ../../mod/settings.php:1094 +msgid "Remove this channel" +msgstr "Ta bort den här kanalen" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Krets skapad." + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Kunde inte skapa krets." + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Kretsen uppdaterad." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Skapa en krets av kanaler." + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Namn på krets: " + +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "Medlemmar kan ses av andra kanaler" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Krets borttagen." + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Kunde inte ta bort krets." + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Redigera krets" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Medlemmar" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alla anslutna kanaler" + +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Klicka på en kanal för att lägga till eller ta bort." + +#: ../../mod/search.php:13 ../../mod/photos.php:458 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 +msgid "Public access denied." +msgstr "Offentlig behörighet saknas." + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s följer %2$ss %3$s" #: ../../mod/poke.php:159 msgid "Poke/Prod" @@ -4001,55 +4525,6 @@ msgid "" " and/or create new posts for you?" msgstr "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?" -#: ../../mod/api.php:105 ../../mod/settings.php:937 ../../mod/settings.php:942 -#: ../../mod/settings.php:1025 ../../mod/profiles.php:591 -#: ../../mod/admin.php:392 -msgid "Yes" -msgstr "Ja" - -#: ../../mod/api.php:106 ../../mod/settings.php:937 ../../mod/settings.php:942 -#: ../../mod/settings.php:1025 ../../mod/profiles.php:592 -#: ../../mod/admin.php:390 -msgid "No" -msgstr "Nej" - -#: ../../mod/search.php:13 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/directory.php:15 -#: ../../mod/photos.php:458 -msgid "Public access denied." -msgstr "Offentlig behörighet saknas." - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Post inte tillgänglig." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Hämtning av URL returnerade fel: %1$s" - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ogiltig post." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanalen hittas inte." - -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Sidan hittas inte." - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s följer %2$ss %3$s" - -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Blocknamn" - #: ../../mod/setup.php:166 msgid "Red Matrix Server - Setup" msgstr "Red Matrix-server - inställningar" @@ -4439,555 +4914,230 @@ msgid "" "poller." msgstr "VIKTIGT: Du behöver ställa in en schemalagd för hämtningsrutinen [manuellt]" -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Namn är obligatoriskt" +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Post inte tillgänglig." -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Nyckel och kod är obligatoriska" - -#: ../../mod/settings.php:211 -msgid "Passwords do not match. Password unchanged." -msgstr "Lösenorden stämmer inte överens. Lösenordet har inte ändrats." - -#: ../../mod/settings.php:215 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tomma lösenord tillåts inte. Lösenordet har inte ändrats." - -#: ../../mod/settings.php:229 -msgid "Password changed." -msgstr "Lösenordet ändrat." - -#: ../../mod/settings.php:231 -msgid "Password update failed. Please try again." -msgstr "Lösenordsuppdatering misslyckades. Försök igen." - -#: ../../mod/settings.php:245 -msgid "Not valid email." -msgstr "Inte en giltig e-postadress." - -#: ../../mod/settings.php:248 -msgid "Protected email address. Cannot change to that email." -msgstr "Skyddad e-postadress. Kan inte ändra till den." - -#: ../../mod/settings.php:257 -msgid "System failure storing new email. Please try again." -msgstr "Systemfel när ny e-postadress skulle sparas. Försök igen." - -#: ../../mod/settings.php:493 -msgid "Settings updated." -msgstr "Inställningar uppdaterade." - -#: ../../mod/settings.php:562 ../../mod/settings.php:588 -#: ../../mod/settings.php:624 -msgid "Add application" -msgstr "Lägg till applikation" - -#: ../../mod/settings.php:565 -msgid "Name of application" -msgstr "Applikationens namn" - -#: ../../mod/settings.php:566 ../../mod/settings.php:592 -msgid "Consumer Key" -msgstr "Nyckel för konsument" - -#: ../../mod/settings.php:566 ../../mod/settings.php:567 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatiskt genererad - ändra om så önskas. Maxlängd 20" - -#: ../../mod/settings.php:567 ../../mod/settings.php:593 -msgid "Consumer Secret" -msgstr "Kod för konsument" - -#: ../../mod/settings.php:568 ../../mod/settings.php:594 -msgid "Redirect" -msgstr "Omdirigering" - -#: ../../mod/settings.php:568 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Omdirigerings-URI - lämna blankt om inte din applikation specifikt behöver det" - -#: ../../mod/settings.php:569 ../../mod/settings.php:595 -msgid "Icon url" -msgstr "Ikon-URL" - -#: ../../mod/settings.php:569 -msgid "Optional" -msgstr "Frivillig" - -#: ../../mod/settings.php:580 -msgid "You can't edit this application." -msgstr "Du kan inte redigera den här applikationen." - -#: ../../mod/settings.php:623 -msgid "Connected Apps" -msgstr "Anslutna appar" - -#: ../../mod/settings.php:627 -msgid "Client key starts with" -msgstr "Klientnyckel börjar med" - -#: ../../mod/settings.php:628 -msgid "No name" -msgstr "Inget namn" - -#: ../../mod/settings.php:629 -msgid "Remove authorization" -msgstr "Ta bort behörighet" - -#: ../../mod/settings.php:640 -msgid "No feature settings configured" -msgstr "Inga funktionsinställningar konfigurerade" - -#: ../../mod/settings.php:648 -msgid "Feature Settings" -msgstr "Funktionsinställningar" - -#: ../../mod/settings.php:671 -msgid "Account Settings" -msgstr "Kontoinställningar" - -#: ../../mod/settings.php:672 -msgid "Password Settings" -msgstr "Lösenordsinställningar" - -#: ../../mod/settings.php:673 -msgid "New Password:" -msgstr "Nytt lösenord:" - -#: ../../mod/settings.php:674 -msgid "Confirm:" -msgstr "Bekräfta:" - -#: ../../mod/settings.php:674 -msgid "Leave password fields blank unless changing" -msgstr "Lämna lösenordsfälten blanka om lösenordet inte ska ändras" - -#: ../../mod/settings.php:676 ../../mod/settings.php:1006 -msgid "Email Address:" -msgstr "E-postadress" - -#: ../../mod/settings.php:677 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Ta bort konto" - -#: ../../mod/settings.php:678 -msgid "Remove this account from this server including all its channels" -msgstr "Ta bort det här kontot från servern, inklusive alla dess kanaler" - -#: ../../mod/settings.php:679 ../../mod/settings.php:1088 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Varning: Den här handlingen är permanent och kan inte återställas." - -#: ../../mod/settings.php:695 -msgid "Off" -msgstr "Av" - -#: ../../mod/settings.php:695 -msgid "On" -msgstr "På" - -#: ../../mod/settings.php:702 -msgid "Additional Features" -msgstr "Ytterligare funktioner" - -#: ../../mod/settings.php:727 -msgid "Connector Settings" -msgstr "Anslutningsinställningar" - -#: ../../mod/settings.php:758 -msgid "No special theme for mobile devices" -msgstr "Inget särskilt tema för mobila enheter" - -#: ../../mod/settings.php:767 +#: ../../mod/probe.php:23 ../../mod/probe.php:29 #, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimentellt)" +msgid "Fetching URL returns error: %1$s" +msgstr "Hämtning av URL returnerade fel: %1$s" -#: ../../mod/settings.php:803 -msgid "Display Settings" -msgstr "Utseende" +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "Ogiltig post." -#: ../../mod/settings.php:809 -msgid "Display Theme:" -msgstr "Tema för utseende:" +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "Kanalen hittas inte." -#: ../../mod/settings.php:810 -msgid "Mobile Theme:" -msgstr "Mobilt tema:" +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "Sidan hittas inte." -#: ../../mod/settings.php:811 -msgid "Enable user zoom on mobile devices" -msgstr "Tillåt användare att zooma på mobila enheter" +#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +msgid "Export Channel" +msgstr "Exportera kanal" -#: ../../mod/settings.php:812 -msgid "Update browser every xx seconds" -msgstr "Uppdatera webbläsaren var xx sekund" +#: ../../mod/uexport.php:35 +msgid "" +"Export your basic channel information to a small file. This acts as a " +"backup of your connections, permissions, profile and basic data, which can " +"be used to import your data to a new hub, but\tdoes not contain your " +"content." +msgstr "Exportera kanalens basinformation till en liten fil. Denna fungerar som en säkerhetskopia av dina anslutningar, behörigheter, profil, och grundläggande data, och kan användas för att importera dina data till en ny hubb, men tar inte med ditt innehåll." -#: ../../mod/settings.php:812 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minst 10 sekunder, inget maximum" +#: ../../mod/uexport.php:36 +msgid "Export Content" +msgstr "Exportera innehåll" -#: ../../mod/settings.php:813 -msgid "Maximum number of conversations to load at any time:" -msgstr "Högsta antal konversationer att ladda åt gången:" +#: ../../mod/uexport.php:37 +msgid "" +"Export your channel information and all the content to a JSON backup. This " +"backs up all of your connections, permissions, profile data and all of your " +"content, but is generally not suitable for importing a channel to a new hub " +"as this file may be VERY large. Please be patient - it may take several " +"minutes for this download to begin." +msgstr "Exportera din kanalinformation och allt innehåll till en säkerhetskopia i JSON-format. Detta kopierar alla dina anslutningar, behörigheter, profildata och allt ditt innehåll, men är generellt inte lämpligt för att importera en kanal till en ny hubb, eftersom filen kan vara VÄLDIGT stor. Ha tålamod - det kan ta flera minuter innan nedladdningen börjar." -#: ../../mod/settings.php:813 -msgid "Maximum of 100 items" -msgstr "Maximalt 100 poster" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Inga potentiella sid-ombud funna." -#: ../../mod/settings.php:814 -msgid "Don't show emoticons" -msgstr "Visa inte känsloikoner" +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Delegera sidhantering" -#: ../../mod/settings.php:815 -msgid "Link post titles to source" -msgstr "Länka inläggstitlar till källan" +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på." -#: ../../mod/settings.php:816 -msgid "System Page Layout Editor - (advanced)" -msgstr "Redigera systemets sidlayout (avancerat)" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Befintliga sid-ansvariga" -#: ../../mod/settings.php:819 -msgid "Use blog/list mode on channel page" -msgstr "Använd blogg-/listläge på kanalsida" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Befintliga sid-ombud" -#: ../../mod/settings.php:819 ../../mod/settings.php:820 -msgid "(comments displayed separately)" -msgstr "(kommentarer visas separat)" +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Potentiella ombud" -#: ../../mod/settings.php:820 -msgid "Use blog/list mode on matrix page" -msgstr "Använd blogg-/listläge på matrissida" +#: ../../mod/delegate.php:130 ../../mod/photos.php:905 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Ta bort" -#: ../../mod/settings.php:821 -msgid "Channel page max height of content (in pixels)" -msgstr "Maxhöjd för innehåll på kanalsidor (i pixels)" +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Lägg till" -#: ../../mod/settings.php:821 ../../mod/settings.php:822 -msgid "click to expand content exceeding this height" -msgstr "klicka för att fälla ut innehåll som överskrider den här höjden" +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Inga poster." -#: ../../mod/settings.php:822 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maxhöjd för innehåll på matrissidan (i pixels)" +#: ../../mod/siteinfo.php:93 +#, php-format +msgid "Version %s" +msgstr "Version %s" -#: ../../mod/settings.php:856 -msgid "Nobody except yourself" -msgstr "Ingen utom dig själv" +#: ../../mod/siteinfo.php:114 +msgid "Installed plugins/addons/apps:" +msgstr "Installerade tillägg/moduler/appar:" -#: ../../mod/settings.php:857 -msgid "Only those you specifically allow" -msgstr "Endast utvalda" +#: ../../mod/siteinfo.php:127 +msgid "No installed plugins/addons/apps" +msgstr "Inga installerade tillägg/moduler/appar" -#: ../../mod/settings.php:858 -msgid "Approved connections" -msgstr "Godkända kontakter" +#: ../../mod/siteinfo.php:135 +msgid "Red" +msgstr "Red" -#: ../../mod/settings.php:859 -msgid "Any connections" +#: ../../mod/siteinfo.php:136 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Det här är en hubb som ingår i Red Matrix - ett globalt samverkande nätverk av decentraliserade webbplatser med bättre integritetskydd." + +#: ../../mod/siteinfo.php:138 +msgid "Tag: " +msgstr "Tagg: " + +#: ../../mod/siteinfo.php:140 +msgid "Last background fetch: " +msgstr "Senaste bakgrundshämtning: " + +#: ../../mod/siteinfo.php:143 +msgid "Running at web location" +msgstr "Kör på webbutrymmet" + +#: ../../mod/siteinfo.php:144 +msgid "" +"Please visit RedMatrix.me to learn more" +" about the Red Matrix." +msgstr "Besök RedMatrix.me för att lära dig mer om Red Matrix." + +#: ../../mod/siteinfo.php:145 +msgid "Bug reports and issues: please visit" +msgstr "Buggrapporter och problem: besök" + +#: ../../mod/siteinfo.php:148 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Förslag, uppskattning, etc. - maila \"redmatrix\" at librelist - dot com" + +#: ../../mod/siteinfo.php:150 +msgid "Site Administrators" +msgstr "Serveradministratörer" + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Misslyckades att skapa källa. Ingen kanal vald." + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Källa skapad." + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Källa uppdaterad." + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Hantera fjärrkällor med innehåll för din kanal." + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Ny källa" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importera allt eller valt innehåll från följande kanal till den här kanalen och distribuera det enligt dina kanalinställningar." + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importera endast innehåll med de här orden (ett per rad)" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Lämna blankt för att importera allt offentligt innehåll" + +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "Kanalnamn" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Källa hittades inte." + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Redigera källa" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Ta bort källa" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Källa borttagen" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Kunde inte ta bort källa." + +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ogiltigt profil-ID." + +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Redigera profilsynlighet" + +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klicka på en kontakt för att lägga till eller ta bort." + +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Kan ses av" + +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" msgstr "Alla kontakter" -#: ../../mod/settings.php:860 -msgid "Anybody on this website" -msgstr "Vem som helst på den här servern" - -#: ../../mod/settings.php:861 -msgid "Anybody in this network" -msgstr "Vem som helst i det här nätverket" - -#: ../../mod/settings.php:862 -msgid "Anybody authenticated" -msgstr "Vem som helst som har autentiserat sig" - -#: ../../mod/settings.php:863 -msgid "Anybody on the internet" -msgstr "Vem som helst på Internet" - -#: ../../mod/settings.php:937 -msgid "Publish your default profile in the network directory" -msgstr "Publicera din standardprofil i nätverkskatalogen" - -#: ../../mod/settings.php:942 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Tillåt oss att föreslå dig som möjlig vän för nya medlemmar" - -#: ../../mod/settings.php:946 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "eller" - -#: ../../mod/settings.php:951 -msgid "Your channel address is" -msgstr "Din kanaladress är" - -#: ../../mod/settings.php:995 -msgid "Channel Settings" -msgstr "Kanalinställningar" - -#: ../../mod/settings.php:1004 -msgid "Basic Settings" -msgstr "Grundläggande inställningar" - -#: ../../mod/settings.php:1007 -msgid "Your Timezone:" -msgstr "Din tidszon:" - -#: ../../mod/settings.php:1008 -msgid "Default Post Location:" -msgstr "Standardplats:" - -#: ../../mod/settings.php:1008 -msgid "Geographical location to display on your posts" -msgstr "Geografisk plats att visa för dina inlägg" - -#: ../../mod/settings.php:1009 -msgid "Use Browser Location:" -msgstr "Använd webbläsarens position:" - -#: ../../mod/settings.php:1011 -msgid "Adult Content" -msgstr "Innehåll olämpligt för barn" - -#: ../../mod/settings.php:1011 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Den här kanalen publicerar ofta eller regelbundet innehåll som är olämpligt för barn. (Tagga allt pornografiskt material och/eller nakenhet med #NSFW, tack)" - -#: ../../mod/settings.php:1013 -msgid "Security and Privacy Settings" -msgstr "Säkerhets- och integritetsinställningar" - -#: ../../mod/settings.php:1015 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Dina behörigheter har redan ställts in. Klicka för att visa/ändra" - -#: ../../mod/settings.php:1017 -msgid "Hide my online presence" -msgstr "Visa inte min online-närvaro" - -#: ../../mod/settings.php:1017 -msgid "Prevents displaying in your profile that you are online" -msgstr "Förhindrar att det syns i din profil att du är online" - -#: ../../mod/settings.php:1019 -msgid "Simple Privacy Settings:" -msgstr "Enkla integritetsinställningar:" - -#: ../../mod/settings.php:1020 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Väldigt offentligt - extremt tillåtande (bör användas försiktigt)" - -#: ../../mod/settings.php:1021 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typiskt - offentligt som standard, privat när så önskas (liknande behörigheter som på sociala nätverk men med förbättrad integritet)" - -#: ../../mod/settings.php:1022 -msgid "Private - default private, never open or public" -msgstr "Privat - privat som standard, aldrig öppet eller offentligt" - -#: ../../mod/settings.php:1023 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockera - som standard blockerat till/från alla" - -#: ../../mod/settings.php:1025 -msgid "Allow others to tag your posts" -msgstr "Låt andra tagga dina inlägg" - -#: ../../mod/settings.php:1025 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Ofta använt av gemenskapen för att i efterhand flagga olämpligt innehåll" - -#: ../../mod/settings.php:1027 -msgid "Advanced Privacy Settings" -msgstr "Avancerade integritetsinställningar" - -#: ../../mod/settings.php:1029 -msgid "Expire other channel content after this many days" -msgstr "Låt annat kanalinnehåll upphöra efter efter så här många dagar" - -#: ../../mod/settings.php:1029 -msgid "0 or blank prevents expiration" -msgstr "0 eller blankt förhindrar upphörande" - -#: ../../mod/settings.php:1030 -msgid "Maximum Friend Requests/Day:" -msgstr "Högsta antal vänförfrågningar per dag:" - -#: ../../mod/settings.php:1030 -msgid "May reduce spam activity" -msgstr "Kan reducera spamaktivitet" - -#: ../../mod/settings.php:1031 -msgid "Default Post Permissions" -msgstr "Standardbehörighet för inlägg" - -#: ../../mod/settings.php:1036 -msgid "Channel permissions category:" -msgstr "Kanalens behörighetskategori:" - -#: ../../mod/settings.php:1044 -msgid "Maximum private messages per day from unknown people:" -msgstr "Högsta antal privata meddelanden per dag från okända personer:" - -#: ../../mod/settings.php:1044 -msgid "Useful to reduce spamming" -msgstr "Användbart för att minska skräputskick" - -#: ../../mod/settings.php:1047 -msgid "Notification Settings" -msgstr "Notifieringsinställningar" - -#: ../../mod/settings.php:1048 -msgid "By default post a status message when:" -msgstr "Skicka som standard ett statusmeddelande när:" - -#: ../../mod/settings.php:1049 -msgid "accepting a friend request" -msgstr "du accepterar en vänförfrågan" - -#: ../../mod/settings.php:1050 -msgid "joining a forum/community" -msgstr "du går med i ett forum/en gemenskap" - -#: ../../mod/settings.php:1051 -msgid "making an interesting profile change" -msgstr "du gör en intressant ändring av profilen" - -#: ../../mod/settings.php:1052 -msgid "Send a notification email when:" -msgstr "Skicka en notifiering via e-post när:" - -#: ../../mod/settings.php:1053 -msgid "You receive a connection request" -msgstr "Du får en kontaktförfrågan" - -#: ../../mod/settings.php:1054 -msgid "Your connections are confirmed" -msgstr "Dina kontakter bekräftas" - -#: ../../mod/settings.php:1055 -msgid "Someone writes on your profile wall" -msgstr "Någon skriver på din profilvägg" - -#: ../../mod/settings.php:1056 -msgid "Someone writes a followup comment" -msgstr "Någon skriver en uppföljande kommentar" - -#: ../../mod/settings.php:1057 -msgid "You receive a private message" -msgstr "Du tar emot ett privat meddelande" - -#: ../../mod/settings.php:1058 -msgid "You receive a friend suggestion" -msgstr "Du tar emot ett vänförslag" - -#: ../../mod/settings.php:1059 -msgid "You are tagged in a post" -msgstr "Du taggas i ett inlägg" - -#: ../../mod/settings.php:1060 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du puffas/stöts till/etc. i ett inlägg" - -#: ../../mod/settings.php:1063 -msgid "Show visual notifications including:" -msgstr "Visa visuella notifieringar vid:" - -#: ../../mod/settings.php:1065 -msgid "Unseen matrix activity" -msgstr "Oläst matrisaktivitet" - -#: ../../mod/settings.php:1066 -msgid "Unseen channel activity" -msgstr "Oläst kanalaktivitet" - -#: ../../mod/settings.php:1067 -msgid "Unseen private messages" -msgstr "Olästa privata meddelanden" - -#: ../../mod/settings.php:1067 ../../mod/settings.php:1072 -#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 -msgid "Recommended" -msgstr "Rekommenderas" - -#: ../../mod/settings.php:1068 -msgid "Upcoming events" -msgstr "Kommande händelser" - -#: ../../mod/settings.php:1069 -msgid "Events today" -msgstr "Dagens händelser" - -#: ../../mod/settings.php:1070 -msgid "Upcoming birthdays" -msgstr "Kommande födelsedagar" - -#: ../../mod/settings.php:1070 -msgid "Not available in all themes" -msgstr "Inte tillgänglig i alla teman" - -#: ../../mod/settings.php:1071 -msgid "System (personal) notifications" -msgstr "Systemmeddelanden (personliga)" - -#: ../../mod/settings.php:1072 -msgid "System info messages" -msgstr "Systemmeddelanden" - -#: ../../mod/settings.php:1073 -msgid "System critical alerts" -msgstr "Systemkritiska varningar" - -#: ../../mod/settings.php:1074 -msgid "New connections" -msgstr "Nya kontakter" - -#: ../../mod/settings.php:1075 -msgid "System Registrations" -msgstr "Systemregistreringar" - -#: ../../mod/settings.php:1077 -msgid "Notify me of events this many days in advance" -msgstr "Meddela mig om händelser så här många dagar i förväg" - -#: ../../mod/settings.php:1077 -msgid "Must be greater than 0" -msgstr "Måste vara större än 0" - -#: ../../mod/settings.php:1079 -msgid "Advanced Account/Page Type Settings" -msgstr "Avancerade konto-/sidtypsinställningar" - -#: ../../mod/settings.php:1080 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändra det här kontots beteende i särskilda situationer" - -#: ../../mod/settings.php:1083 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Aktivera expertläge (i Inställningar > Ytterligare funktioner) för att göra ändringar!" - -#: ../../mod/settings.php:1084 -msgid "Miscellaneous Settings" -msgstr "Diverse inställningar" - -#: ../../mod/settings.php:1086 -msgid "Personal menu to display in your channel pages" -msgstr "Personlig meny att visa i dina kanalsidor" - -#: ../../mod/settings.php:1087 -msgid "Remove this channel" -msgstr "Ta bort den här kanalen" - #: ../../mod/events.php:81 msgid "Event can not end before it has started." msgstr "Händelser kan inte sluta innan de börjat." @@ -5028,6 +5178,10 @@ msgstr "Detaljer för händelse" msgid "Starting date and Title are required." msgstr "Startdatum och titel är obligatoriska." +#: ../../mod/events.php:574 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparerad lista)" + #: ../../mod/events.php:576 msgid "Event Starts:" msgstr "Händelsen börjar:" @@ -5094,7 +5248,7 @@ msgstr "Plats" msgid "You must be logged in to see this page." msgstr "Du måste vara inloggad för att se den här sidan." -#: ../../mod/channel.php:86 +#: ../../mod/channel.php:87 msgid "Insufficient permissions. Request redirected to profile page." msgstr "Otillräckliga behörigheter. Förfrågan omdirigerad till profilsidan." @@ -5155,53 +5309,6 @@ msgstr "Namn på chattrum" msgid "%1$s's Chatrooms" msgstr "%1$ss chattrum" -#: ../../mod/siteinfo.php:92 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../mod/siteinfo.php:113 -msgid "Installed plugins/addons/apps:" -msgstr "Installerade tillägg/moduler/appar:" - -#: ../../mod/siteinfo.php:126 -msgid "No installed plugins/addons/apps" -msgstr "Inga installerade tillägg/moduler/appar" - -#: ../../mod/siteinfo.php:134 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:135 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Det här är en hubb som ingår i Red Matrix - ett globalt samverkande nätverk av decentraliserade webbplatser med bättre integritetskydd." - -#: ../../mod/siteinfo.php:139 -msgid "Running at web location" -msgstr "Kör på webbutrymmet" - -#: ../../mod/siteinfo.php:140 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "Besök GetZot.com lära dig mer om Red Matrix." - -#: ../../mod/siteinfo.php:141 -msgid "Bug reports and issues: please visit" -msgstr "Buggrapporter och problem: besök" - -#: ../../mod/siteinfo.php:144 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Förslag, uppskattning, etc. - maila \"redmatrix\" at librelist - dot com" - -#: ../../mod/siteinfo.php:146 -msgid "Site Administrators" -msgstr "Serveradministratörer" - #: ../../mod/chatsvc.php:111 msgid "Away" msgstr "Borta" @@ -5214,48 +5321,38 @@ msgstr "Online" msgid "Please login." msgstr "Logga in." -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Fortsätt" +#: ../../mod/editpost.php:20 ../../mod/editblock.php:79 +#: ../../mod/editblock.php:95 ../../mod/editlayout.php:78 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Posten hittas inte" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Inställning av premiumkanal" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Posten går ej att redigera" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Aktivera kontaktrestriktioner för premiumkanal" +#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 +msgid "Edit post" +msgstr "Redigera inlägg" -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Ange dina restriktioner och villkor, som Paypal-kvitto, användarriktlinjer, etc." +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Ta bort posten?" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Den här kanalen kan kräva ytterligare steg eller godkännande av följande villkor innan anslutning:" +#: ../../mod/editpost.php:116 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" +msgstr "Infoga Youtube-video" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentiella kontakter kommer sedan att se följande text innan de går vidare:" +#: ../../mod/editpost.php:117 ../../mod/editblock.php:148 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" +msgstr "Infoga Vorbis [.ogg]-video" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Genom att fortsätta intygar jag att jag har följt alla instruktioner som ges på den här sidan." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Inga specifika instruktioner har givits av kanalägaren.)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Begränsad kanal eller premiumkanal" +#: ../../mod/editpost.php:118 ../../mod/editblock.php:149 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Infoga Vorbis [.ogg]-ljud" #: ../../mod/removeme.php:29 msgid "" @@ -5329,54 +5426,78 @@ msgstr "Ange din kanaladress (t.ex. kanal@example.com)" msgid "Authenticate" msgstr "Autentisera" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Gilla/ogilla" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Inget giltigt konto hittades." -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Den här åtgärden fungerar bara för medlemmar." +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Lösenordsåterställning har skickats. Kontrollera din e-post." -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Logga in med ditt RedMatrix-ID eller registrera dig som ny RedMatrix medlem för att fortsätta." - -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ogiltig begäran." - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "sak" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanalen kan ej nås." - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Föregående åtgärd återställdes." - -#: ../../mod/like.php:422 -msgid "Action completed." -msgstr "Åtgärden slutfördes." - -#: ../../mod/like.php:423 -msgid "Thank you." -msgstr "Tack." - -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fjärrinloggning blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen." - -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 #, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Välkommen %s. Fjärrinloggning lyckades." +msgid "Site Member (%s)" +msgstr "Servermedlem (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Lösenordsåterställning begärd på %s" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades." + +#: ../../mod/lostpass.php:85 ../../boot.php:1548 +msgid "Password Reset" +msgstr "Lösenordsåterställning" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Ditt lösenord har återställts som begärt." + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Ditt nya lösenord är" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Spara eller kopiera ditt nya lösenord - " + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "klicka sedan här för att logga in" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Ditt lösenord kan bytas från sidan Inställningar när du är inloggad." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Ditt lösenord byttes på %s" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Glömt lösenordet?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Ange din e-postadress och skicka för att återställa ditt lösenord. Kontrollera sedan din e-post för vidare instruktioner." + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-postadress" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Återställ" #: ../../mod/connections.php:37 ../../mod/connedit.php:64 msgid "Could not access contact record." @@ -5471,13 +5592,17 @@ msgstr "Sök bland dina kontakter" msgid "Finding: " msgstr "Sökning efter: " -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Protokollfel för OpenID. Inget ID returnerades." +#: ../../mod/ping.php:265 +msgid "sent you a private message" +msgstr "skickade ett privat meddelande till dig" -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Redigera inlägg" +#: ../../mod/ping.php:316 +msgid "added your channel" +msgstr "lade till din kanal" + +#: ../../mod/ping.php:357 +msgid "posted an event" +msgstr "skapade en händelse" #: ../../mod/connedit.php:189 msgid "is now connected to" @@ -5562,12 +5687,12 @@ msgstr "Senaste aktiviteten" msgid "View recent posts and comments" msgstr "Visa de senaste inläggen och kommentarerna" -#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/connedit.php:450 ../../mod/connedit.php:595 #: ../../mod/admin.php:732 msgid "Unblock" msgstr "Avblockera" -#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/connedit.php:450 ../../mod/connedit.php:595 #: ../../mod/admin.php:731 msgid "Block" msgstr "Blockera" @@ -5576,11 +5701,11 @@ msgstr "Blockera" msgid "Block or Unblock this connection" msgstr "Blockera eller häv blockering av den här kontakten" -#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +#: ../../mod/connedit.php:457 ../../mod/connedit.php:596 msgid "Unignore" msgstr "Sluta att ignorera" -#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +#: ../../mod/connedit.php:457 ../../mod/connedit.php:596 #: ../../mod/notifications.php:51 msgid "Ignore" msgstr "Ignorera" @@ -5617,101 +5742,101 @@ msgstr "Dölj eller sluta att dölja den här kontakten" msgid "Delete this connection" msgstr "Ta bort den här kontakten" -#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 +#: ../../mod/connedit.php:523 ../../mod/connedit.php:553 msgid "Approve this connection" msgstr "Godkänn den här kontakten" -#: ../../mod/connedit.php:522 +#: ../../mod/connedit.php:523 msgid "Accept connection to allow communication" msgstr "Acceptera kontakten för att tillåta kommunikation" -#: ../../mod/connedit.php:538 +#: ../../mod/connedit.php:539 #, php-format msgid "Connections: settings for %s" msgstr "Kontakter: inställningar för %s" -#: ../../mod/connedit.php:539 +#: ../../mod/connedit.php:540 msgid "Apply these permissions automatically" msgstr "Använd de här rättigheterna automatiskt" -#: ../../mod/connedit.php:543 +#: ../../mod/connedit.php:544 msgid "Apply the permissions indicated on this page to all new connections." msgstr "Använd rättigheterna angivna på den här sidan för alla nya kontakter." -#: ../../mod/connedit.php:545 +#: ../../mod/connedit.php:546 msgid "Slide to adjust your degree of friendship" msgstr "Dra för att justera er vänskapsnivå" -#: ../../mod/connedit.php:551 +#: ../../mod/connedit.php:552 msgid "inherited" msgstr "ärvd" -#: ../../mod/connedit.php:553 +#: ../../mod/connedit.php:554 msgid "Connection has no individual permissions!" msgstr "Kontakten har inga individuella behörigheter!" -#: ../../mod/connedit.php:554 +#: ../../mod/connedit.php:555 msgid "" "This may be appropriate based on your privacy " "settings, though you may wish to review the \"Advanced Permissions\"." msgstr "Det här kan vara lämpligt beroende på dina integritetsinställningar, men du vill kanske se över de \"Avancerade inställningarna\"." -#: ../../mod/connedit.php:556 +#: ../../mod/connedit.php:557 msgid "Profile Visibility" msgstr "Profilsynlighet" -#: ../../mod/connedit.php:557 +#: ../../mod/connedit.php:558 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Välj profilen som du vill ska synas när %s ser din profil på ett säkert sätt." -#: ../../mod/connedit.php:558 +#: ../../mod/connedit.php:559 msgid "Contact Information / Notes" msgstr "Kontaktinformation / anteckningar" -#: ../../mod/connedit.php:559 +#: ../../mod/connedit.php:560 msgid "Edit contact notes" msgstr "Redigera anteckningar för kontakten" -#: ../../mod/connedit.php:561 +#: ../../mod/connedit.php:562 msgid "Their Settings" msgstr "Deras inställningar" -#: ../../mod/connedit.php:562 +#: ../../mod/connedit.php:563 msgid "My Settings" msgstr "Mina inställningar" -#: ../../mod/connedit.php:564 +#: ../../mod/connedit.php:565 msgid "Clear/Disable Automatic Permissions" msgstr "Rensa/inaktivera automatiska behörigheter" -#: ../../mod/connedit.php:565 +#: ../../mod/connedit.php:566 msgid "Forum Members" msgstr "Forummedlemmar" -#: ../../mod/connedit.php:566 +#: ../../mod/connedit.php:567 msgid "Soapbox" msgstr "Talarstol" -#: ../../mod/connedit.php:567 +#: ../../mod/connedit.php:568 msgid "Full Sharing (typical social network permissions)" msgstr "Full delning (typiska behörigheter för sociala nätverk)" -#: ../../mod/connedit.php:568 +#: ../../mod/connedit.php:569 msgid "Cautious Sharing " msgstr "Försiktig delning" -#: ../../mod/connedit.php:569 +#: ../../mod/connedit.php:570 msgid "Follow Only" msgstr "Följ endast" -#: ../../mod/connedit.php:570 +#: ../../mod/connedit.php:571 msgid "Individual Permissions" msgstr "Individuella behörigheter" -#: ../../mod/connedit.php:571 +#: ../../mod/connedit.php:572 msgid "" "Some permissions may be inherited from your channel privacy settings, which have higher priority than " @@ -5719,76 +5844,517 @@ msgid "" "have no effect." msgstr "Vissa behörigheter kan ärvas från din kanals integritetsinställningar, vilka har högre prioritet än individuella inställningar. Ändring av de ärvda inställningarna på den här sidan har ingen effekt." -#: ../../mod/connedit.php:572 +#: ../../mod/connedit.php:573 msgid "Advanced Permissions" msgstr "Avancerade behörighetsinställningar" -#: ../../mod/connedit.php:573 +#: ../../mod/connedit.php:574 msgid "Simple Permissions (select one and submit)" msgstr "Enkla behörighetsinställningar (välj en och spara)" -#: ../../mod/connedit.php:577 +#: ../../mod/connedit.php:578 #, php-format msgid "Visit %s's profile - %s" msgstr "Besök %ss profil - %s" -#: ../../mod/connedit.php:578 +#: ../../mod/connedit.php:579 msgid "Block/Unblock contact" msgstr "Blockera/häv blockering av kontakt" -#: ../../mod/connedit.php:579 +#: ../../mod/connedit.php:580 msgid "Ignore contact" msgstr "Ignorera kontakt" -#: ../../mod/connedit.php:580 +#: ../../mod/connedit.php:581 msgid "Repair URL settings" msgstr "Reparera URL-inställningar" -#: ../../mod/connedit.php:581 +#: ../../mod/connedit.php:582 msgid "View conversations" msgstr "Visa konversationer" -#: ../../mod/connedit.php:583 +#: ../../mod/connedit.php:584 msgid "Delete contact" msgstr "Ta bort kontakt" -#: ../../mod/connedit.php:586 +#: ../../mod/connedit.php:587 msgid "Last update:" msgstr "Senaste uppdatering:" -#: ../../mod/connedit.php:588 +#: ../../mod/connedit.php:589 msgid "Update public posts" msgstr "Uppdatera offentliga inlägg" -#: ../../mod/connedit.php:590 +#: ../../mod/connedit.php:591 msgid "Update now" msgstr "Uppdatera nu" -#: ../../mod/connedit.php:596 +#: ../../mod/connedit.php:597 msgid "Currently blocked" msgstr "Blockerad" -#: ../../mod/connedit.php:597 +#: ../../mod/connedit.php:598 msgid "Currently ignored" msgstr "Ignorerad" -#: ../../mod/connedit.php:598 +#: ../../mod/connedit.php:599 msgid "Currently archived" msgstr "Arkiverad" -#: ../../mod/connedit.php:599 +#: ../../mod/connedit.php:600 msgid "Currently pending" msgstr "Inväntar svar" -#: ../../mod/connedit.php:600 +#: ../../mod/connedit.php:601 msgid "Hide this contact from others" msgstr "Dölj den här kontakten för andra" -#: ../../mod/connedit.php:600 +#: ../../mod/connedit.php:601 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Svar/gilla-reaktioner på dina offentliga inlägg kan fortfarande synas" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Kunde inte hitta mottagare." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Kunde inte kommunicera med den begärda kanalen." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan inte bekräfta den begärda kanalen." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka." + +#: ../../mod/mail.php:136 +msgid "Message deleted." +msgstr "Meddelande borttaget." + +#: ../../mod/mail.php:153 +msgid "Message recalled." +msgstr "Meddelande återkallat." + +#: ../../mod/mail.php:222 +msgid "Send Private Message" +msgstr "Skicka privat meddelande." + +#: ../../mod/mail.php:223 ../../mod/mail.php:340 +msgid "To:" +msgstr "Till:" + +#: ../../mod/mail.php:228 ../../mod/mail.php:342 +msgid "Subject:" +msgstr "Ämne:" + +#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Ditt meddelande:" + +#: ../../mod/mail.php:239 +msgid "Send" +msgstr "Skicka" + +#: ../../mod/mail.php:266 +msgid "Message not found." +msgstr "Meddelandet hittades inte." + +#: ../../mod/mail.php:309 +msgid "Delete message" +msgstr "Ta bort meddelande" + +#: ../../mod/mail.php:310 +msgid "Recall message" +msgstr "Återkalla meddelande" + +#: ../../mod/mail.php:312 +msgid "Message has been recalled." +msgstr "Meddelandet har återkallats." + +#: ../../mod/mail.php:329 +msgid "Private Conversation" +msgstr "Privat konversation" + +#: ../../mod/mail.php:333 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "Ta bort konversation" + +#: ../../mod/mail.php:335 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida." + +#: ../../mod/mail.php:339 +msgid "Send Reply" +msgstr "Skicka svar" + +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Information om sidans ägare kunde inte hittas." + +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Albumet hittades inte." + +#: ../../mod/photos.php:119 ../../mod/photos.php:672 +msgid "Delete Album" +msgstr "Ta bort album" + +#: ../../mod/photos.php:159 ../../mod/photos.php:958 +msgid "Delete Photo" +msgstr "Ta bort foto" + +#: ../../mod/photos.php:469 +msgid "No photos selected" +msgstr "Inga foton valda" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "Åtkomst till den här posten är begränsat." + +#: ../../mod/photos.php:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB av %2$.2f MB fotolagring använt." + +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB fotolagring använt." + +#: ../../mod/photos.php:579 +msgid "Upload Photos" +msgstr "Ladda upp foton" + +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 +msgid "Enter a new album name" +msgstr "Ange ett nytt albumnamn" + +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 +msgid "or select an existing one (doubleclick)" +msgstr "eller välj ett befintligt (dubbelklicka)" + +#: ../../mod/photos.php:585 +msgid "Do not show a status post for this upload" +msgstr "Visa inte en statusuppdatering för den här uppladdningen" + +#: ../../mod/photos.php:613 +msgid "Album name could not be decoded" +msgstr "Albumnamn kunde inte tolkas" + +#: ../../mod/photos.php:654 ../../mod/photos.php:1167 +#: ../../mod/photos.php:1183 +msgid "Contact Photos" +msgstr "Kontaktfoton" + +#: ../../mod/photos.php:678 +msgid "Show Newest First" +msgstr "Visa nyast först" + +#: ../../mod/photos.php:680 +msgid "Show Oldest First" +msgstr "Visa äldst först" + +#: ../../mod/photos.php:707 ../../mod/photos.php:1215 +msgid "View Photo" +msgstr "Visa foto" + +#: ../../mod/photos.php:736 +msgid "Edit Album" +msgstr "Redigera album" + +#: ../../mod/photos.php:781 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Behörighet saknas. Åtkomst till den här posten kan vara begränsat." + +#: ../../mod/photos.php:783 +msgid "Photo not available" +msgstr "Foto inte tillgängligt" + +#: ../../mod/photos.php:841 +msgid "Use as profile photo" +msgstr "Använd som profilfoto" + +#: ../../mod/photos.php:848 +msgid "Private Photo" +msgstr "Privat foto" + +#: ../../mod/photos.php:863 +msgid "View Full Size" +msgstr "Visa fullstorlek" + +#: ../../mod/photos.php:937 +msgid "Edit photo" +msgstr "Redigera foto" + +#: ../../mod/photos.php:939 +msgid "Rotate CW (right)" +msgstr "Rotera medurs (höger)" + +#: ../../mod/photos.php:940 +msgid "Rotate CCW (left)" +msgstr "Rotera moturs (vänster)" + +#: ../../mod/photos.php:947 +msgid "Caption" +msgstr "Bildtext" + +#: ../../mod/photos.php:949 +msgid "Add a Tag" +msgstr "Lägg till en tagg" + +#: ../../mod/photos.php:953 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exempel: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../mod/photos.php:956 +msgid "Flag as adult in album view" +msgstr "Flagga som olämpligt för barn i albumvyn" + +#: ../../mod/photos.php:1133 +msgid "In This Photo:" +msgstr "På fotot:" + +#: ../../mod/photos.php:1221 +msgid "View Album" +msgstr "Visa album" + +#: ../../mod/photos.php:1244 +msgid "Recent Photos" +msgstr "Nya foton" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bokmärke tillagt" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Mina bokmärken" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Mina kontakters bokmärken" + +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Den här servern är inte en katalogserver" + +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix - Gäster: Användarnamn {din e-postadress}, Lösenord: +++" + +#: ../../mod/acl.php:245 +msgid "network" +msgstr "nätverk" + +#: ../../mod/blocks.php:99 +msgid "Block Name" +msgstr "Blocknamn" + +#: ../../mod/editblock.php:115 +msgid "Edit Block" +msgstr "Redigera block" + +#: ../../mod/editblock.php:125 +msgid "Delete block?" +msgstr "Ta bort block?" + +#: ../../mod/editblock.php:183 +msgid "Delete Block" +msgstr "Ta bort block" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout uppdaterad." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Redigera systemsidbeskrivning" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout hittas inte." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulnamn:" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" +msgstr "Layouthjälp" + +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" +msgstr "Redigera layout" + +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" +msgstr "Ta bort layout?" + +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" +msgstr "Ta bort layout" + +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" +msgstr "Red Matrix - "Nätverket"" + +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" +msgstr "Välkommen till %s" + +#: ../../mod/editwebpage.php:140 +msgid "Edit Webpage" +msgstr "Redigera webbsida" + +#: ../../mod/editwebpage.php:150 +msgid "Delete webpage?" +msgstr "Ta bort webbsida?" + +#: ../../mod/editwebpage.php:215 +msgid "Delete Webpage" +msgstr "Ta bort webbsida" + +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "webbsida" + +#: ../../mod/impel.php:38 +msgid "block" +msgstr "block" + +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "layout" + +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "%selement installerat" + +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "Bilden laddades upp men beskärning misslyckades." + +#: ../../mod/profile_photo.php:161 +msgid "Image resize failed." +msgstr "Ändring av bildstorlek misslyckades." + +#: ../../mod/profile_photo.php:205 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt." + +#: ../../mod/profile_photo.php:232 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Bilden överskrider storleksbegränsningen %d" + +#: ../../mod/profile_photo.php:241 +msgid "Unable to process image." +msgstr "Kunde inte behandla bilden." + +#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 +msgid "Photo not available." +msgstr "Fotot är inte tillgängligt." + +#: ../../mod/profile_photo.php:358 +msgid "Upload File:" +msgstr "Ladda upp fil:" + +#: ../../mod/profile_photo.php:359 +msgid "Select a profile:" +msgstr "Välj en profil:" + +#: ../../mod/profile_photo.php:360 +msgid "Upload Profile Photo" +msgstr "Ladda upp profilfoto" + +#: ../../mod/profile_photo.php:365 +msgid "skip this step" +msgstr "hoppa över det här steget" + +#: ../../mod/profile_photo.php:365 +msgid "select a photo from your photo albums" +msgstr "välj ett foto från dina fotoalbum" + +#: ../../mod/profile_photo.php:381 +msgid "Crop Image" +msgstr "Beskär bild" + +#: ../../mod/profile_photo.php:382 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Justera bildens beskärning för bästa utseende." + +#: ../../mod/profile_photo.php:384 +msgid "Done Editing" +msgstr "Klar med redigering" + +#: ../../mod/profile_photo.php:427 +msgid "Image uploaded successfully." +msgstr "Bilduppladdning lyckades." + +#: ../../mod/profile_photo.php:429 +msgid "Image upload failed." +msgstr "Bilduppladdning misslyckades." + +#: ../../mod/profile_photo.php:438 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Krympning av bilden [%s] misslyckades." + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Gilla/ogilla" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Den här åtgärden fungerar bara för medlemmar." + +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Logga in med ditt RedMatrix-ID eller registrera dig som ny RedMatrix medlem för att fortsätta." + +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ogiltig begäran." + +#: ../../mod/like.php:119 +msgid "thing" +msgstr "sak" + +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanalen kan ej nås." + +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Föregående åtgärd återställdes." + +#: ../../mod/like.php:422 +msgid "Action completed." +msgstr "Åtgärden slutfördes." + +#: ../../mod/like.php:423 +msgid "Thank you." +msgstr "Tack." + +#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 +msgid "Help:" +msgstr "Hjälp:" + +#: ../../mod/help.php:67 ../../index.php:238 +msgid "Not Found" +msgstr "Hittas inte" + #: ../../mod/thing.php:96 msgid "Thing updated" msgstr "Föremål uppdaterat" @@ -5846,98 +6412,268 @@ msgstr "URL för foto på föremål (frivilligt)" msgid "Add Thing to your Profile" msgstr "Lägg till föremål till din profil" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Inget giltigt konto hittades." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakten hittades inte." -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Lösenordsåterställning har skickats. Kontrollera din e-post." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Vänförfrågan skickad." -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Föreslå vänner" + +#: ../../mod/fsuggest.php:99 #, php-format -msgid "Site Member (%s)" -msgstr "Servermedlem (%s)" +msgid "Suggest a friend for %s" +msgstr "Föreslå en vän för %s" -#: ../../mod/lostpass.php:40 +#: ../../mod/filestorage.php:76 +msgid "Permission Denied." +msgstr "Behörighet saknas." + +#: ../../mod/filestorage.php:92 +msgid "File not found." +msgstr "Filen hittas inte." + +#: ../../mod/filestorage.php:131 +msgid "Edit file permissions" +msgstr "Redigera filrättigheter" + +#: ../../mod/filestorage.php:140 +msgid "Set/edit permissions" +msgstr "Ställ in/ändra behörigheter" + +#: ../../mod/filestorage.php:141 +msgid "Include all files and sub folders" +msgstr "Inkludera alla filer och underkataloger" + +#: ../../mod/filestorage.php:142 +msgid "Return to file list" +msgstr "Återgå till fillistan" + +#: ../../mod/filestorage.php:144 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg" + +#: ../../mod/filestorage.php:145 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida" + +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Fortsätt" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Inställning av premiumkanal" + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Aktivera kontaktrestriktioner för premiumkanal" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Ange dina restriktioner och villkor, som Paypal-kvitto, användarriktlinjer, etc." + +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Den här kanalen kan kräva ytterligare steg eller godkännande av följande villkor innan anslutning:" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentiella kontakter kommer sedan att se följande text innan de går vidare:" + +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Genom att fortsätta intygar jag att jag har följt alla instruktioner som ges på den här sidan." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Inga specifika instruktioner har givits av kanalägaren.)" + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Begränsad kanal eller premiumkanal" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- välj -" + +#: ../../mod/locs.php:19 ../../mod/locs.php:46 +msgid "Location not found." +msgstr "Platsen hittades inte." + +#: ../../mod/locs.php:50 +msgid "Primary location cannot be removed." +msgstr "Huvudplatsen kan inte tas bort." + +#: ../../mod/locs.php:82 +msgid "No locations found." +msgstr "Inga platser hittades." + +#: ../../mod/locs.php:95 +msgid "Manage Channel Locations" +msgstr "Hantera kanalplatser" + +#: ../../mod/locs.php:96 +msgid "Location (address)" +msgstr "Plats (adress)" + +#: ../../mod/locs.php:97 +msgid "Primary Location" +msgstr "Huvudplats" + +#: ../../mod/locs.php:98 +msgid "Drop location" +msgstr "Ta bort plats" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal tillagd." + +#: ../../mod/import.php:25 #, php-format -msgid "Password reset requested at %s" -msgstr "Lösenordsåterställning begärd på %s" +msgid "Your service plan only allows %d channels." +msgstr "Din tjänstenivå tillåter bara %d kanaler." -#: ../../mod/lostpass.php:63 +#: ../../mod/import.php:51 +msgid "Nothing to import." +msgstr "Inget att importera." + +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" +msgstr "Kunde inte ladda ner data från den gamla servern" + +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "Den importerade filen är tom." + +#: ../../mod/import.php:106 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades." -#: ../../mod/lostpass.php:85 ../../boot.php:1494 -msgid "Password Reset" -msgstr "Lösenordsåterställning" +#: ../../mod/import.php:127 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Kan inte skapa en unik kanaladress. Import misslyckades." -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Ditt lösenord har återställts som begärt." +#: ../../mod/import.php:147 +msgid "Channel clone failed. Import failed." +msgstr "Kloning av kanalen misslyckades. Import misslyckades." -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Ditt nya lösenord är" +#: ../../mod/import.php:157 +msgid "Cloned channel not found. Import failed." +msgstr "Den klonade kanalen hittas inte. Import misslyckades." -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Spara eller kopiera ditt nya lösenord - " +#: ../../mod/import.php:475 +msgid "Import completed." +msgstr "Import slutförd." -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klicka sedan här för att logga in" +#: ../../mod/import.php:487 +msgid "You must be logged in to use this feature." +msgstr "Du måste vara inloggad för att kunna använda den här funktionen." -#: ../../mod/lostpass.php:90 +#: ../../mod/import.php:492 +msgid "Import Channel" +msgstr "Importera kanal" + +#: ../../mod/import.php:493 msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ditt lösenord kan bytas från sidan Inställningar när du är inloggad." +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file. Only identity and connections/relationships will " +"be imported. Importation of content is not yet available." +msgstr "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte." -#: ../../mod/lostpass.php:107 +#: ../../mod/import.php:494 +msgid "File to Upload" +msgstr "Fil att ladda upp" + +#: ../../mod/import.php:495 +msgid "Or provide the old server/hub details" +msgstr "Eller ge uppgifter om den gamla servern/hubben" + +#: ../../mod/import.php:496 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamla identitetsadress (xyz@example.com)" + +#: ../../mod/import.php:497 +msgid "Your old login email address" +msgstr "Din gamla e-postadress för inloggning" + +#: ../../mod/import.php:498 +msgid "Your old login password" +msgstr "Ditt gamla inloggningslösenord" + +#: ../../mod/import.php:499 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media." + +#: ../../mod/import.php:500 +msgid "Make this hub my primary location" +msgstr "Gör den här hubben till min primära plats" + +#: ../../mod/import.php:501 +msgid "Import existing posts if possible" +msgstr "Importera befintliga inlägg om möjligt" + +#: ../../mod/item.php:159 +msgid "Unable to locate original post." +msgstr "Kunde inte hitta originalinlägget." + +#: ../../mod/item.php:418 +msgid "Empty post discarded." +msgstr "Tomt inlägg förkastat." + +#: ../../mod/item.php:460 +msgid "Executable content type not permitted to this channel." +msgstr "Körbart innehåll tillåts inte i den här kanalen." + +#: ../../mod/item.php:899 +msgid "System error. Post not saved." +msgstr "Systemfel. Inlägget inte sparat." + +#: ../../mod/item.php:1117 #, php-format -msgid "Your password has changed at %s" -msgstr "Ditt lösenord byttes på %s" +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du har nått din gräns på %1$.0f toppnivåinlägg." -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Glömt lösenordet?" +#: ../../mod/item.php:1123 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du har nått din gräns på %1$.0f webbsidor." -#: ../../mod/lostpass.php:123 +#: ../../mod/suggest.php:35 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Ange din e-postadress och skicka för att återställa ditt lösenord. Kontrollera sedan din e-post för vidare instruktioner." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar." -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-postadress" +#: ../../mod/layouts.php:110 +msgid "Help with this feature" +msgstr "Hjälp för den här funktionen" -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Återställ" +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "Layoutnamn" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bokmärke tillagt" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mina bokmärken" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Mina kontakters bokmärken" - -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Den här servern är inte en katalogserver" - -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix - Gäster: Användarnamn {din e-postadress}, Lösenord: +++" +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s taggade%2$ss %3$s med %4$s" #: ../../mod/profiles.php:18 ../../mod/profiles.php:165 #: ../../mod/profiles.php:222 ../../mod/profiles.php:565 @@ -6180,7 +6916,7 @@ msgstr "Skola/utbildning" msgid "This is your default profile." msgstr "Det här är din standardprofil." -#: ../../mod/profiles.php:694 ../../mod/directory.php:159 +#: ../../mod/profiles.php:694 ../../mod/directory.php:188 msgid "Age: " msgstr "Ålder:" @@ -6196,464 +6932,6 @@ msgstr "Lägg till profilsaker" msgid "Include desirable objects in your profile" msgstr "Inkludera fina prylar i din profil" -#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 -#: ../../mod/editlayout.php:78 ../../mod/editpost.php:20 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Posten hittas inte" - -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Redigera block" - -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Ta bort block?" - -#: ../../mod/editblock.php:147 ../../mod/editlayout.php:143 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" -msgstr "Infoga Youtube-video" - -#: ../../mod/editblock.php:148 ../../mod/editlayout.php:144 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" -msgstr "Infoga Vorbis [.ogg]-video" - -#: ../../mod/editblock.php:149 ../../mod/editlayout.php:145 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Infoga Vorbis [.ogg]-ljud" - -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Ta bort block" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout uppdaterad." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Redigera systemsidbeskrivning" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout hittas inte." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulnamn:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Layouthjälp" - -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Redigera layout" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Ta bort layout?" - -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Ta bort layout" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Posten går ej att redigera" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Ta bort posten?" - -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Redigera webbsida" - -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Ta bort webbsida?" - -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Ta bort webbsida" - -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "webbsida" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "block" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "layout" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%selement installerat" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bilden laddades upp men beskärning misslyckades." - -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." -msgstr "Ändring av bildstorlek misslyckades." - -#: ../../mod/profile_photo.php:205 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt." - -#: ../../mod/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bilden överskrider storleksbegränsningen %d" - -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." -msgstr "Kunde inte behandla bilden." - -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." -msgstr "Fotot är inte tillgängligt." - -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" -msgstr "Ladda upp fil:" - -#: ../../mod/profile_photo.php:359 -msgid "Select a profile:" -msgstr "Välj en profil:" - -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" -msgstr "Ladda upp profilfoto" - -#: ../../mod/profile_photo.php:365 -msgid "skip this step" -msgstr "hoppa över det här steget" - -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "välj ett foto från dina fotoalbum" - -#: ../../mod/profile_photo.php:381 -msgid "Crop Image" -msgstr "Beskär bild" - -#: ../../mod/profile_photo.php:382 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Justera bildens beskärning för bästa utseende." - -#: ../../mod/profile_photo.php:384 -msgid "Done Editing" -msgstr "Klar med redigering" - -#: ../../mod/profile_photo.php:427 -msgid "Image uploaded successfully." -msgstr "Bilduppladdning lyckades." - -#: ../../mod/profile_photo.php:429 -msgid "Image upload failed." -msgstr "Bilduppladdning misslyckades." - -#: ../../mod/profile_photo.php:438 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Krympning av bilden [%s] misslyckades." - -#: ../../mod/item.php:159 -msgid "Unable to locate original post." -msgstr "Kunde inte hitta originalinlägget." - -#: ../../mod/item.php:418 -msgid "Empty post discarded." -msgstr "Tomt inlägg förkastat." - -#: ../../mod/item.php:460 -msgid "Executable content type not permitted to this channel." -msgstr "Körbart innehåll tillåts inte i den här kanalen." - -#: ../../mod/item.php:898 -msgid "System error. Post not saved." -msgstr "Systemfel. Inlägget inte sparat." - -#: ../../mod/item.php:1373 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du har nått din gräns på %1$.0f toppnivåinlägg." - -#: ../../mod/item.php:1379 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du har nått din gräns på %1$.0f webbsidor." - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakten hittades inte." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Vänförfrågan skickad." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Föreslå vänner" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Föreslå en vän för %s" - -#: ../../mod/filestorage.php:76 -msgid "Permission Denied." -msgstr "Behörighet saknas." - -#: ../../mod/filestorage.php:92 -msgid "File not found." -msgstr "Filen hittas inte." - -#: ../../mod/filestorage.php:131 -msgid "Edit file permissions" -msgstr "Redigera filrättigheter" - -#: ../../mod/filestorage.php:140 -msgid "Set/edit permissions" -msgstr "Ställ in/ändra behörigheter" - -#: ../../mod/filestorage.php:141 -msgid "Include all files and sub folders" -msgstr "Inkludera alla filer och underkataloger" - -#: ../../mod/filestorage.php:142 -msgid "Return to file list" -msgstr "Återgå till fillistan" - -#: ../../mod/filestorage.php:144 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg" - -#: ../../mod/filestorage.php:145 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida" - -#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 -msgid "Help:" -msgstr "Hjälp:" - -#: ../../mod/help.php:67 ../../index.php:238 -msgid "Not Found" -msgstr "Hittas inte" - -#: ../../mod/acl.php:245 -msgid "network" -msgstr "nätverk" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Inga potentiella sid-ombud funna." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegera sidhantering" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Befintliga sid-ansvariga" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Befintliga sid-ombud" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentiella ombud" - -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:905 -msgid "Remove" -msgstr "Ta bort" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Lägg till" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Inga poster." - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal tillagd." - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Krets skapad." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Kunde inte skapa krets." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Kretsen uppdaterad." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Skapa en krets av kanaler." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Namn på krets: " - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Medlemmar kan ses av andra kanaler" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Krets borttagen." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Kunde inte ta bort krets." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Redigera krets" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Medlemmar" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alla anslutna kanaler" - -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Klicka på en kanal för att lägga till eller ta bort." - -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "Red Matrix - "Nätverket"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Välkommen till %s" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar." - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjänstenivå tillåter bara %d kanaler." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Inget att importera." - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Kunde inte ladda ner data från den gamla servern" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Den importerade filen är tom." - -#: ../../mod/import.php:105 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades." - -#: ../../mod/import.php:123 -msgid "Channel clone failed. Import failed." -msgstr "Kloning av kanalen misslyckades. Import misslyckades." - -#: ../../mod/import.php:133 -msgid "Cloned channel not found. Import failed." -msgstr "Den klonade kanalen hittas inte. Import misslyckades." - -#: ../../mod/import.php:451 -msgid "Import completed." -msgstr "Import slutförd." - -#: ../../mod/import.php:463 -msgid "You must be logged in to use this feature." -msgstr "Du måste vara inloggad för att kunna använda den här funktionen." - -#: ../../mod/import.php:468 -msgid "Import Channel" -msgstr "Importera kanal" - -#: ../../mod/import.php:469 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte." - -#: ../../mod/import.php:470 -msgid "File to Upload" -msgstr "Fil att ladda upp" - -#: ../../mod/import.php:471 -msgid "Or provide the old server/hub details" -msgstr "Eller ge uppgifter om den gamla servern/hubben" - -#: ../../mod/import.php:472 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamla identitetsadress (xyz@example.com)" - -#: ../../mod/import.php:473 -msgid "Your old login email address" -msgstr "Din gamla e-postadress för inloggning" - -#: ../../mod/import.php:474 -msgid "Your old login password" -msgstr "Ditt gamla inloggningslösenord" - -#: ../../mod/import.php:475 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media." - -#: ../../mod/import.php:476 -msgid "Make this hub my primary location" -msgstr "Gör den här hubben till min primära plats" - -#: ../../mod/import.php:477 -msgid "Import existing posts if possible" -msgstr "Importera befintliga inlägg om möjligt" - -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s taggade%2$ss %3$s med %4$s" - #: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 msgid "Tag removed" msgstr "Tagg borttagen" @@ -6749,10 +7027,6 @@ msgstr "Aktiva tillägg" msgid "Site settings updated." msgstr "Serverinställningar uppdaterade." -#: ../../mod/admin.php:363 -msgid "mobile" -msgstr "mobilt" - #: ../../mod/admin.php:365 msgid "experimental" msgstr "experimentellt" @@ -7310,177 +7584,6 @@ msgstr "Fältdefinition hittades inte" msgid "Edit Profile Field" msgstr "Redigera profilfält" -#: ../../mod/locs.php:19 ../../mod/locs.php:46 -msgid "Location not found." -msgstr "Platsen hittades inte." - -#: ../../mod/locs.php:50 -msgid "Primary location cannot be removed." -msgstr "Huvudplatsen kan inte tas bort." - -#: ../../mod/locs.php:82 -msgid "No locations found." -msgstr "Inga platser hittades." - -#: ../../mod/locs.php:95 -msgid "Manage Channel Locations" -msgstr "Hantera kanalplatser" - -#: ../../mod/locs.php:96 -msgid "Location (address)" -msgstr "Plats (adress)" - -#: ../../mod/locs.php:97 -msgid "Primary Location" -msgstr "Huvudplats" - -#: ../../mod/locs.php:98 -msgid "Drop location" -msgstr "Ta bort plats" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Kunde inte hitta mottagare." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Kunde inte kommunicera med den begärda kanalen." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan inte bekräfta den begärda kanalen." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka." - -#: ../../mod/mail.php:136 -msgid "Message deleted." -msgstr "Meddelande borttaget." - -#: ../../mod/mail.php:153 -msgid "Message recalled." -msgstr "Meddelande återkallat." - -#: ../../mod/mail.php:222 -msgid "Send Private Message" -msgstr "Skicka privat meddelande." - -#: ../../mod/mail.php:223 ../../mod/mail.php:340 -msgid "To:" -msgstr "Till:" - -#: ../../mod/mail.php:228 ../../mod/mail.php:342 -msgid "Subject:" -msgstr "Ämne:" - -#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Ditt meddelande:" - -#: ../../mod/mail.php:239 -msgid "Send" -msgstr "Skicka" - -#: ../../mod/mail.php:266 -msgid "Message not found." -msgstr "Meddelandet hittades inte." - -#: ../../mod/mail.php:309 -msgid "Delete message" -msgstr "Ta bort meddelande" - -#: ../../mod/mail.php:310 -msgid "Recall message" -msgstr "Återkalla meddelande" - -#: ../../mod/mail.php:312 -msgid "Message has been recalled." -msgstr "Meddelandet har återkallats." - -#: ../../mod/mail.php:329 -msgid "Private Conversation" -msgstr "Privat konversation" - -#: ../../mod/mail.php:333 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Ta bort konversation" - -#: ../../mod/mail.php:335 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida." - -#: ../../mod/mail.php:339 -msgid "Send Reply" -msgstr "Skicka svar" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Gränsen för totalt antal inbjudningar överskriden." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Inte en giltig e-postadress." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Gå med oss i Red" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Inbjudningsgränsen överskriden. Kontakta din serveradministratör." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Leverans av meddelande misslyckades." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d meddelande sänt." -msgstr[1] "%d meddelanden sända." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du har inga fler inbjudningar kvar" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Skicka inbjudan" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Ange e-postadresser, en per rad:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Gå med mig i gemenskapen på RedMatrix." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Du kommer att behöva den här inbjudningskoden: " - -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Skapa konto på en RedMatrix-server (alla är ihopkopplade)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Ange min RedMatrix-adress i webbplatsens sökruta." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "eller besök " - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klicka [Ta kontakt]" - #: ../../mod/manage.php:136 #, php-format msgid "You have created %1$.0f of %2$.0f allowed channels." @@ -7506,97 +7609,6 @@ msgstr "Standardkanal" msgid "Make Default" msgstr "Gör till standard" -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Inbäddat innehåll - ladda om sidan för att visa]" - -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hjälp för den här funktionen" - -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layoutnamn" - -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Icke-lokal integritetsinformation är inte tillgänglig" - -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Kan ses av:" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Inga kontakter." - -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besök %ss profil [%s]" - -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" -msgstr "Visa kontakter" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Hubb hittades inte." - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totalt antal röster" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Genomsnittsbetyg" - -#: ../../mod/network.php:81 -msgid "No such group" -msgstr "Ingen sådan grupp" - -#: ../../mod/network.php:119 -msgid "Search Results For:" -msgstr "Sökresultat för:" - -#: ../../mod/network.php:173 -msgid "Collection is empty" -msgstr "Kretsen är tom" - -#: ../../mod/network.php:181 -msgid "Collection: " -msgstr "Krets: " - -#: ../../mod/network.php:194 -msgid "Connection: " -msgstr "Kontakt:" - -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "Ogiltig kontakt." - -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "Väggfoton" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profilträff" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "är intresserad av:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Inga träffar" - #: ../../mod/menu.php:31 msgid "Menu updated." msgstr "Meny uppdaterad." @@ -7685,6 +7697,179 @@ msgstr "Redigera meny" msgid "Add or remove entries to this menu" msgstr "Lägg till eller ta bort menyval" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Gränsen för totalt antal inbjudningar överskriden." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Inte en giltig e-postadress." + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Gå med oss i Red" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Inbjudningsgränsen överskriden. Kontakta din serveradministratör." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Leverans av meddelande misslyckades." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d meddelande sänt." +msgstr[1] "%d meddelanden sända." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Du har inga fler inbjudningar kvar" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Skicka inbjudan" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Ange e-postadresser, en per rad:" + +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." +msgstr "Gå med mig i gemenskapen på RedMatrix." + +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Du kommer att behöva den här inbjudningskoden: " + +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" +msgstr "1. Skapa konto på en RedMatrix-server (alla är ihopkopplade)" + +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." +msgstr "2. Ange min RedMatrix-adress i webbplatsens sökruta." + +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "eller besök " + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klicka [Ta kontakt]" + +#: ../../mod/network.php:84 +msgid "No such group" +msgstr "Ingen sådan grupp" + +#: ../../mod/network.php:122 +msgid "Search Results For:" +msgstr "Sökresultat för:" + +#: ../../mod/network.php:176 +msgid "Collection is empty" +msgstr "Kretsen är tom" + +#: ../../mod/network.php:184 +msgid "Collection: " +msgstr "Krets: " + +#: ../../mod/network.php:197 +msgid "Connection: " +msgstr "Kontakt:" + +#: ../../mod/network.php:200 +msgid "Invalid connection." +msgstr "Ogiltig kontakt." + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ogiltigt ID på förfrågan." + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Förkasta" + +#: ../../mod/notifications.php:94 ../../mod/notify.php:53 +msgid "No more system notifications." +msgstr "Inga fler systemnotifieringar." + +#: ../../mod/notifications.php:98 ../../mod/notify.php:57 +msgid "System Notifications" +msgstr "Systemnotifieringar" + +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +#: ../../mod/update_home.php:21 +msgid "[Embedded content - reload page to view]" +msgstr "[Inbäddat innehåll - ladda om sidan för att visa]" + +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." +msgstr "Icke-lokal integritetsinformation är inte tillgänglig" + +#: ../../mod/lockview.php:52 +msgid "Visible to:" +msgstr "Kan ses av:" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Inga kontakter." + +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besök %ss profil [%s]" + +#: ../../mod/viewconnections.php:86 +msgid "View Connnections" +msgstr "Visa kontakter" + +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Hubb hittades inte." + +#: ../../mod/vote.php:97 +msgid "Total votes" +msgstr "Totalt antal röster" + +#: ../../mod/vote.php:98 +msgid "Average Rating" +msgstr "Genomsnittsbetyg" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "Protokollfel för OpenID. Inget ID returnerades." + +#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:261 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Välkommen %s. Fjärrinloggning lyckades." + +#: ../../mod/wall_upload.php:35 +msgid "Wall Photos" +msgstr "Väggfoton" + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profilträff" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil." + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "är intresserad av:" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Inga träffar" + #: ../../mod/message.php:41 msgid "Conversation removed." msgstr "Konversation borttagen." @@ -7732,27 +7917,19 @@ msgid "Channel Type" msgstr "Kanaltyp" #: ../../mod/new_channel.php:119 +msgid "?" +msgstr "?" + +#: ../../mod/new_channel.php:120 +msgid "What is this?" +msgstr "Vad är detta?" + +#: ../../mod/new_channel.php:121 msgid "" "Please choose a channel type (such as social networking or community forum) " "and privacy requirements so we can select the best permissions for you" msgstr "Välj en kanaltyp (som till exempel socialt nätverkande eller gemenskapsforum) och integritetskrav, så kan vi välja de bästa behörigheterna åt dig" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ogiltigt ID på förfrågan." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Förkasta" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Inga fler systemnotifieringar." - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Systemnotifieringar" - #: ../../mod/xchan.php:6 msgid "Xchan Lookup" msgstr "Xchan-sökning" @@ -7773,196 +7950,55 @@ msgstr "Kunde inte hitta din hubb." msgid "Post successful." msgstr "Sändning lyckades." -#: ../../mod/directory.php:172 +#: ../../mod/directory.php:201 msgid "Gender: " msgstr "Kön:" -#: ../../mod/directory.php:174 +#: ../../mod/directory.php:203 msgid "Status: " msgstr "Status: " -#: ../../mod/directory.php:176 +#: ../../mod/directory.php:205 msgid "Homepage: " msgstr "Hemsida: " -#: ../../mod/directory.php:179 +#: ../../mod/directory.php:208 msgid "Hometown: " msgstr "Hemort: " -#: ../../mod/directory.php:181 +#: ../../mod/directory.php:210 msgid "About: " msgstr "Om: " -#: ../../mod/directory.php:236 +#: ../../mod/directory.php:265 msgid "Public Forum:" msgstr "Offentligt forum:" -#: ../../mod/directory.php:239 +#: ../../mod/directory.php:268 msgid "Keywords: " msgstr "Nyckelord: " -#: ../../mod/directory.php:279 +#: ../../mod/directory.php:318 msgid "Finding:" msgstr "Sökning efter:" -#: ../../mod/directory.php:284 +#: ../../mod/directory.php:323 msgid "next page" msgstr "nästa sida" -#: ../../mod/directory.php:284 +#: ../../mod/directory.php:323 msgid "previous page" msgstr "föregående sida" -#: ../../mod/directory.php:301 +#: ../../mod/directory.php:340 msgid "No entries (some entries may be hidden)." msgstr "Inga resultat (vissa resultat kan vara dolda)." -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Information om sidans ägare kunde inte hittas." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Albumet hittades inte." - -#: ../../mod/photos.php:119 ../../mod/photos.php:672 -msgid "Delete Album" -msgstr "Ta bort album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:958 -msgid "Delete Photo" -msgstr "Ta bort foto" - -#: ../../mod/photos.php:469 -msgid "No photos selected" -msgstr "Inga foton valda" - -#: ../../mod/photos.php:513 -msgid "Access to this item is restricted." -msgstr "Åtkomst till den här posten är begränsat." - -#: ../../mod/photos.php:552 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB av %2$.2f MB fotolagring använt." - -#: ../../mod/photos.php:555 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB fotolagring använt." - -#: ../../mod/photos.php:579 -msgid "Upload Photos" -msgstr "Ladda upp foton" - -#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 -msgid "Enter a new album name" -msgstr "Ange ett nytt albumnamn" - -#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 -msgid "or select an existing one (doubleclick)" -msgstr "eller välj ett befintligt (dubbelklicka)" - -#: ../../mod/photos.php:585 -msgid "Do not show a status post for this upload" -msgstr "Visa inte en statusuppdatering för den här uppladdningen" - -#: ../../mod/photos.php:613 -msgid "Album name could not be decoded" -msgstr "Albumnamn kunde inte tolkas" - -#: ../../mod/photos.php:654 ../../mod/photos.php:1167 -#: ../../mod/photos.php:1183 -msgid "Contact Photos" -msgstr "Kontaktfoton" - -#: ../../mod/photos.php:678 -msgid "Show Newest First" -msgstr "Visa nyast först" - -#: ../../mod/photos.php:680 -msgid "Show Oldest First" -msgstr "Visa äldst först" - -#: ../../mod/photos.php:707 ../../mod/photos.php:1215 -msgid "View Photo" -msgstr "Visa foto" - -#: ../../mod/photos.php:736 -msgid "Edit Album" -msgstr "Redigera album" - -#: ../../mod/photos.php:781 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Behörighet saknas. Åtkomst till den här posten kan vara begränsat." - -#: ../../mod/photos.php:783 -msgid "Photo not available" -msgstr "Foto inte tillgängligt" - -#: ../../mod/photos.php:841 -msgid "Use as profile photo" -msgstr "Använd som profilfoto" - -#: ../../mod/photos.php:848 -msgid "Private Photo" -msgstr "Privat foto" - -#: ../../mod/photos.php:863 -msgid "View Full Size" -msgstr "Visa fullstorlek" - -#: ../../mod/photos.php:937 -msgid "Edit photo" -msgstr "Redigera foto" - -#: ../../mod/photos.php:939 -msgid "Rotate CW (right)" -msgstr "Rotera medurs (höger)" - -#: ../../mod/photos.php:940 -msgid "Rotate CCW (left)" -msgstr "Rotera moturs (vänster)" - -#: ../../mod/photos.php:947 -msgid "Caption" -msgstr "Bildtext" - -#: ../../mod/photos.php:949 -msgid "Add a Tag" -msgstr "Lägg till en tagg" - -#: ../../mod/photos.php:953 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exempel: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../mod/photos.php:956 -msgid "Flag as adult in album view" -msgstr "Flagga som olämpligt för barn i albumvyn" - -#: ../../mod/photos.php:1133 -msgid "In This Photo:" -msgstr "På fotot:" - -#: ../../mod/photos.php:1221 -msgid "View Album" -msgstr "Visa album" - -#: ../../mod/photos.php:1244 -msgid "Recent Photos" -msgstr "Nya foton" - -#: ../../mod/ping.php:265 -msgid "sent you a private message" -msgstr "skickade ett privat meddelande till dig" - -#: ../../mod/ping.php:316 -msgid "added your channel" -msgstr "lade till din kanal" - -#: ../../mod/ping.php:357 -msgid "posted an event" -msgstr "skapade en händelse" +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fjärrinloggning blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen." #: ../../mod/appman.php:28 ../../mod/appman.php:44 msgid "App installed." @@ -8320,41 +8356,41 @@ msgstr "Oordnade fotoalbum" msgid "Are you a clean desk or a messy desk person?" msgstr "Föredrar du ett tomt eller stökigt skrivbord?" -#: ../../boot.php:1293 +#: ../../boot.php:1345 #, php-format msgid "Update %s failed. See error logs." msgstr "Uppdatering %s misslyckades. Se felloggar." -#: ../../boot.php:1296 +#: ../../boot.php:1348 #, php-format msgid "Update Error at %s" msgstr "Uppdateringsfel på %s" -#: ../../boot.php:1463 +#: ../../boot.php:1515 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Skapa ett konto för att komma åt tjänster och applikationer inom Red Matrix" -#: ../../boot.php:1489 +#: ../../boot.php:1543 msgid "Password" msgstr "Lösenord" -#: ../../boot.php:1490 +#: ../../boot.php:1544 msgid "Remember me" msgstr "Kom ihåg mig" -#: ../../boot.php:1493 +#: ../../boot.php:1547 msgid "Forgot your password?" msgstr "Glömt lösenordet?" -#: ../../boot.php:1567 +#: ../../boot.php:1628 msgid "permission denied" msgstr "behörighet saknas" -#: ../../boot.php:1568 +#: ../../boot.php:1629 msgid "Got Zot?" msgstr "Got Zot?" -#: ../../boot.php:2030 +#: ../../boot.php:2112 msgid "toggle mobile" msgstr "växla mobil" diff --git a/view/sv/strings.php b/view/sv/strings.php index 3217a520e..7cfc355ea 100644 --- a/view/sv/strings.php +++ b/view/sv/strings.php @@ -7,393 +7,66 @@ function string_plural_select_sv($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kan inte hitta DNS-information för databasserver '%s'"; $a->strings["Profile Photos"] = "Profilfoton"; -$a->strings["photo"] = "foto"; -$a->strings["event"] = "händelse"; -$a->strings["channel"] = "kanal"; -$a->strings["status"] = "status"; -$a->strings["comment"] = "kommentar"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gillar %2\$ss %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gillar inte %2\$ss %3\$s"; -$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s har nu kontakt med %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s puffade %2\$s"; -$a->strings["poked"] = "puffade"; -$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s är %2\$s"; -$a->strings["Select"] = "Välj"; -$a->strings["Delete"] = "Ta bort"; -$a->strings["Private Message"] = "Privat meddelande"; -$a->strings["Message signature validated"] = "Meddelandesignatur bekräftad"; -$a->strings["Message signature incorrect"] = "Meddelandesignatur felaktig"; -$a->strings["View %s's profile @ %s"] = "Visa %ss profil på %s"; -$a->strings["Categories:"] = "Kategorier:"; -$a->strings["Filed under:"] = "Postat under:"; -$a->strings[" from %s"] = "från %s"; -$a->strings["last edited: %s"] = "senast redigerat: %s"; -$a->strings["Expires: %s"] = "Upphör: %s"; -$a->strings["View in context"] = "Visa sammanhang"; -$a->strings["Please wait"] = "Vänta"; -$a->strings["remove"] = "ta bort"; -$a->strings["Loading..."] = "Laddar..."; -$a->strings["Delete Selected Items"] = "Ta bort valda poster"; -$a->strings["View Source"] = "Visa källa"; -$a->strings["Follow Thread"] = "Följ tråd"; -$a->strings["View Status"] = "Visa status"; -$a->strings["View Profile"] = "Visa profil"; -$a->strings["View Photos"] = "Visa foton"; -$a->strings["Matrix Activity"] = "Matrisaktivitet"; -$a->strings["Connect"] = "Ta kontakt"; -$a->strings["Edit Contact"] = "Redigera kontakt"; -$a->strings["Send PM"] = "Skicka meddelande"; -$a->strings["Poke"] = "Puffa"; -$a->strings["Unknown"] = "Okända"; -$a->strings["%s likes this."] = "%s gillar det här."; -$a->strings["%s doesn't like this."] = "%s gillar inte det här."; -$a->strings["%2\$d people like this."] = array( - 0 => "%2\$d person gillar det här.", - 1 => "%2\$d personer gillar det här.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "%2\$d person gillar inte det här.", - 1 => "%2\$d personer gillar inte det här.", -); -$a->strings["and"] = "och"; -$a->strings[", and %d other people"] = array( - 0 => ", och %d annan person", - 1 => ", och %d andra personer", -); -$a->strings["%s like this."] = "%s gillar det här."; -$a->strings["%s don't like this."] = "%s gillar inte det här."; -$a->strings["Visible to everybody"] = "Kan ses av alla"; -$a->strings["Please enter a link URL:"] = "Ange en länkadress:"; -$a->strings["Please enter a video link/URL:"] = "Ange en videolänkadress:"; -$a->strings["Please enter an audio link/URL:"] = "Ange en ljudlänkadress"; -$a->strings["Tag term:"] = "Tagguttryck"; -$a->strings["Save to Folder:"] = "Spara i mapp:"; -$a->strings["Where are you right now?"] = "Var är du just nu?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Upphör YYYY-MM-DD HH:MM"; -$a->strings["Preview"] = "Förhandsgranska"; -$a->strings["Share"] = "Dela"; -$a->strings["Page link title"] = "Titel på sidlänk"; -$a->strings["Post as"] = "Posta som"; -$a->strings["Upload photo"] = "Ladda upp foto"; -$a->strings["upload photo"] = "ladda upp foto"; -$a->strings["Attach file"] = "Bifoga fil"; -$a->strings["attach file"] = "bifoga fil"; -$a->strings["Insert web link"] = "Infoga webblänk"; -$a->strings["web link"] = "webblänk"; -$a->strings["Insert video link"] = "Infoga videolänk"; -$a->strings["video link"] = "videolänk"; -$a->strings["Insert audio link"] = "Infoga ljudlänk"; -$a->strings["audio link"] = "ljudlänk"; -$a->strings["Set your location"] = "Ange din plats"; -$a->strings["set location"] = "ange plats"; -$a->strings["Clear browser location"] = "Rensa webbläsarplats"; -$a->strings["clear location"] = "rensa plats"; -$a->strings["Set title"] = "Ange titel"; -$a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparerad lista)"; -$a->strings["Permission settings"] = "Behörighetsinställningar"; -$a->strings["permissions"] = "behörighet"; -$a->strings["Public post"] = "Offentligt inlägg"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Exempel: bob@example.com, mary@example.com"; -$a->strings["Set expiration date"] = "Ange utgångsdatum"; -$a->strings["Encrypt text"] = "Kryptera text"; -$a->strings["OK"] = "OK"; -$a->strings["Cancel"] = "Avbryt"; -$a->strings["Discover"] = "Upptäck"; -$a->strings["Imported public streams"] = "Importerade offentliga strömmar"; -$a->strings["Commented Order"] = "Kommentarsordning"; -$a->strings["Sort by Comment Date"] = "Ordna efter kommentarsdatum"; -$a->strings["Posted Order"] = "Inläggsordning"; -$a->strings["Sort by Post Date"] = "Ordna efter när inlägget skrevs"; -$a->strings["Personal"] = "Personligt"; -$a->strings["Posts that mention or involve you"] = "Inlägg som nämner eller berör dig"; -$a->strings["New"] = "Nytt"; -$a->strings["Activity Stream - by date"] = "Aktivitetsström - efter datum"; -$a->strings["Starred"] = "Märkt"; -$a->strings["Favourite Posts"] = "Favoritinlägg"; -$a->strings["Spam"] = "Skräp"; -$a->strings["Posts flagged as SPAM"] = "Inlägg markerade som SKRÄP"; -$a->strings["Channel"] = "Kanal"; -$a->strings["Status Messages and Posts"] = "Statusmeddelanden och inlägg"; -$a->strings["About"] = "Om"; -$a->strings["Profile Details"] = "Profildetaljer"; -$a->strings["Photos"] = "Foton"; -$a->strings["Photo Albums"] = "Fotoalbum"; -$a->strings["Files"] = "Filer"; -$a->strings["Files and Storage"] = "Filer och lagring"; -$a->strings["Chatrooms"] = "Chattrum"; -$a->strings["Bookmarks"] = "Bokmärken"; -$a->strings["Saved Bookmarks"] = "Sparade bokmärken"; -$a->strings["Webpages"] = "Webbsidor"; -$a->strings["Manage Webpages"] = "Hantera webbsidor"; -$a->strings["Channel is blocked on this site."] = "Kanalen är blockerad på den här servern."; -$a->strings["Channel location missing."] = "Kanalplats saknas."; -$a->strings["Response from remote channel was incomplete."] = "Svar från den andra kanalen var ofullständigt."; -$a->strings["Channel was deleted and no longer exists."] = "Kanalen har tagits bort och finns inte längre."; -$a->strings["Protocol disabled."] = "Protokoll inaktiverat."; -$a->strings["Channel discovery failed."] = "Kanalsökning misslyckades."; -$a->strings["local account not found."] = "hittade inte lokalt konto."; -$a->strings["Cannot connect to yourself."] = "Du kan inte kontakta dig själv."; -$a->strings["created a new post"] = "skapade ett nytt inlägg"; -$a->strings["commented on %s's post"] = "kommenterade %ss inlägg"; -$a->strings["New Page"] = "Ny sida"; +$a->strings["Permission denied"] = "Behörighet saknas"; +$a->strings["(Unknown)"] = "(Okänt)"; +$a->strings["Visible to anybody on the internet."] = "Kan ses av vem som helst på Internet."; +$a->strings["Visible to you only."] = "Kan bara ses av dig."; +$a->strings["Visible to anybody in this network."] = "Kan ses av alla på det här nätverket."; +$a->strings["Visible to anybody authenticated."] = "Kan ses av alla inloggade."; +$a->strings["Visible to anybody on %s."] = "Kan ses av alla på %s."; +$a->strings["Visible to all connections."] = "Kan ses av alla kontakter."; +$a->strings["Visible to approved connections."] = "Kan ses av godkända kontakter."; +$a->strings["Visible to specific connections."] = "Kan ses av valda kontakter."; +$a->strings["Item not found."] = "Posten hittades inte."; +$a->strings["Permission denied."] = "Behörighet saknas."; +$a->strings["Collection not found."] = "Kretsen hittades inte."; +$a->strings["Collection is empty."] = "Kretsen är tom."; +$a->strings["Collection: %s"] = "Krets: %s"; +$a->strings["Connection: %s"] = "Kontakt: %s"; +$a->strings["Connection not found."] = "Kontakten hittades inte."; $a->strings["Edit"] = "Redigera"; -$a->strings["View"] = "Visa"; -$a->strings["Actions"] = "Åtgärder"; -$a->strings["Page Link"] = "Länk"; -$a->strings["Title"] = "Titel"; -$a->strings["Created"] = "Skapad"; -$a->strings["Edited"] = "Ändrad"; -$a->strings["%d invitation available"] = array( - 0 => "%d inbjudan tillgänglig", - 1 => "%d inbjudningar tillgängliga", -); -$a->strings["Advanced"] = "Avancerat"; -$a->strings["Find Channels"] = "Hitta kanaler"; -$a->strings["Enter name or interest"] = "Ange namn eller intresse"; -$a->strings["Connect/Follow"] = "Ta kontakt/följ"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exempel: Robert Morgenstein, Fiske"; -$a->strings["Find"] = "Sök"; -$a->strings["Channel Suggestions"] = "Kanalförslag"; -$a->strings["Random Profile"] = "Slumpvald profil"; -$a->strings["Invite Friends"] = "Bjud in vänner"; -$a->strings["Advanced example: name=fred and country=iceland"] = "Avancerat exempel: name=fred and country=iceland"; -$a->strings["Saved Folders"] = "Sparade mappar"; -$a->strings["Everything"] = "Allt"; -$a->strings["Categories"] = "Kategorier"; -$a->strings["%d connection in common"] = array( - 0 => "%d gemensam kontakt", - 1 => "%d gemensamma kontakter", -); -$a->strings["show more"] = "visa fler"; -$a->strings["Embedded content"] = "Inbäddat innehåll"; -$a->strings["Embedding disabled"] = "Inbäddning inaktiverat"; $a->strings["No recipient provided."] = "Ingen mottagare angiven."; $a->strings["[no subject]"] = "[inget ämne]"; $a->strings["Unable to determine sender."] = "Kunde inte avgöra vem som är avsändare."; $a->strings["Stored post could not be verified."] = "Den sparade posten kunde inte verifieras."; -$a->strings[" and "] = " och "; -$a->strings["public profile"] = "offentlig profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ändrade %2\$s till "%3\$s""; -$a->strings["Visit %1\$s's %2\$s"] = "Besök %1\$ss %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har en uppdaterad %2\$s (har ändrat %3\$s)."; -$a->strings["Visible to your default audience"] = "Kan ses av förinställda mottagare"; -$a->strings["Show"] = "Visa"; -$a->strings["Don't show"] = "Visa inte"; -$a->strings["Permissions"] = "Behörighet"; -$a->strings["Close"] = "Stäng"; -$a->strings["Attachments:"] = "Bilagor:"; -$a->strings["l F d, Y \\@ g:i A"] = "l j F Y \\k\\l. H.i"; -$a->strings["Redmatrix event notification:"] = "Händelsenotifiering från Redmatrix:"; -$a->strings["Starts:"] = "Börjar:"; -$a->strings["Finishes:"] = "Slutar:"; -$a->strings["Location:"] = "Plats:"; -$a->strings["Permission denied."] = "Behörighet saknas."; -$a->strings["Item was not found."] = "Posten hittades inte."; -$a->strings["No source file."] = "Ingen källfil."; -$a->strings["Cannot locate file to replace"] = "Kan inte hitta fil att ersätta"; -$a->strings["Cannot locate file to revise/update"] = "Kan inte hitta fil att revidera/uppdatera"; -$a->strings["File exceeds size limit of %d"] = "Filen överskrider storleksbegränsningen %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd."; -$a->strings["Stored file could not be verified. Upload failed."] = "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad."; -$a->strings["Path not available."] = "Sökväg inte tillgänglig."; -$a->strings["Empty pathname"] = "Tom sökväg"; -$a->strings["duplicate filename or path"] = "filnamn eller sökväg finns redan"; -$a->strings["Path not found."] = "Sökväg hittas inte."; -$a->strings["mkdir failed."] = "mkdir misslyckades."; -$a->strings["database storage failed."] = "databaslagring misslyckades."; -$a->strings["parent"] = "en nivå upp"; -$a->strings["Collection"] = "Samling"; -$a->strings["Principal"] = "Bas"; -$a->strings["Addressbook"] = "Adressbok"; -$a->strings["Calendar"] = "Kalender"; -$a->strings["Schedule Inbox"] = "Schemainkorg"; -$a->strings["Schedule Outbox"] = "Schemautkorg"; -$a->strings["%1\$s used"] = "%1\$s använt"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s använt av %2\$s (%3\$s%)"; -$a->strings["Name"] = "Namn"; -$a->strings["Type"] = "Typ"; -$a->strings["Size"] = "Storlek"; -$a->strings["Last Modified"] = "Senast ändrad"; -$a->strings["Total"] = "Totalt"; -$a->strings["Create new folder"] = "Skapa ny mapp"; -$a->strings["Create"] = "Skapa"; -$a->strings["Upload file"] = "Ladda upp fil"; -$a->strings["Upload"] = "Ladda upp"; -$a->strings["%1\$s's bookmarks"] = "%1\$ss bokmärken"; -$a->strings["Logout"] = "Logga ut"; -$a->strings["End this session"] = "Avsluta sessionen"; -$a->strings["Home"] = "Hem"; -$a->strings["Your posts and conversations"] = "Dina inlägg och konversationer"; -$a->strings["Your profile page"] = "Din profilsida"; -$a->strings["Edit Profiles"] = "Redigera profiler"; -$a->strings["Manage/Edit profiles"] = "Hantera/redigera profiler"; -$a->strings["Edit Profile"] = "Redigera profil"; -$a->strings["Edit your profile"] = "Redigera din profil"; -$a->strings["Your photos"] = "Dina foton"; -$a->strings["Your files"] = "Dina filer"; -$a->strings["Chat"] = "Chatt"; -$a->strings["Your chatrooms"] = "Dina chattrum"; -$a->strings["Your bookmarks"] = "Dina bokmärken"; -$a->strings["Your webpages"] = "Dina webbsidor"; -$a->strings["Login"] = "Logga in"; -$a->strings["Sign in"] = "Logga in"; -$a->strings["%s - click to logout"] = "%s - klicka för att logga ut"; -$a->strings["Remote authentication"] = "Fjärrinloggning"; -$a->strings["Click to authenticate to your home hub"] = "Klicka för att autentisera mot din hemmahubb"; -$a->strings["Home Page"] = "Hemsida"; -$a->strings["Register"] = "Skapa konto"; -$a->strings["Create an account"] = "Skapa ett konto"; -$a->strings["Help"] = "Hjälp"; -$a->strings["Help and documentation"] = "Hjälp och dokumentation"; -$a->strings["Apps"] = "Appar"; -$a->strings["Applications, utilities, links, games"] = "Applikationer, verktyg, länkar, spel"; -$a->strings["Search"] = "Sök"; -$a->strings["Search site content"] = "Sök innehåll"; -$a->strings["Directory"] = "Katalog"; -$a->strings["Channel Directory"] = "Kanalkatalog"; -$a->strings["Matrix"] = "Matris"; -$a->strings["Your matrix"] = "Din matris"; -$a->strings["Mark all matrix notifications seen"] = "Märk alla matrisnotifieringar som lästa"; -$a->strings["Channel Home"] = "Kanalhem"; -$a->strings["Channel home"] = "Kanalhem"; -$a->strings["Mark all channel notifications seen"] = "Märk alla kanalnotifieringar som lästa"; -$a->strings["Connections"] = "Kontakter"; -$a->strings["Notices"] = "Meddelanden"; -$a->strings["Notifications"] = "Notifieringar"; -$a->strings["See all notifications"] = "Se alla notifieringar"; -$a->strings["Mark all system notifications seen"] = "Märk alla systemnotifieringar som lästa"; -$a->strings["Mail"] = "Privat meddelande"; -$a->strings["Private mail"] = "Privat meddelande"; -$a->strings["See all private messages"] = "Se alla privata meddelanden"; -$a->strings["Mark all private messages seen"] = "Märk alla privata meddelanden som lästa"; -$a->strings["Inbox"] = "Inkorg"; -$a->strings["Outbox"] = "Utkorg"; -$a->strings["New Message"] = "Nytt meddelande"; -$a->strings["Events"] = "Händelser"; -$a->strings["Event Calendar"] = "Kalender"; -$a->strings["See all events"] = "Se alla händelser"; -$a->strings["Mark all events seen"] = "Märk alla händelser som lästa"; -$a->strings["Channel Manager"] = "Kanalhanterare"; -$a->strings["Manage Your Channels"] = "Hantera dina kanaler"; -$a->strings["Settings"] = "Inställningar"; -$a->strings["Account/Channel Settings"] = "Konto-/kanalinställningar"; -$a->strings["Admin"] = "Administration"; -$a->strings["Site Setup and Configuration"] = "Serverinställning och -konfiguration"; -$a->strings["Please wait..."] = "Vänta..."; $a->strings["view full size"] = "visa full storlek"; -$a->strings["Default"] = "Standard"; -$a->strings["Frequently"] = "Ofta"; -$a->strings["Hourly"] = "Varje timme"; -$a->strings["Twice daily"] = "Två gånger dagligen"; -$a->strings["Daily"] = "Dagligen"; -$a->strings["Weekly"] = "Varje vecka"; -$a->strings["Monthly"] = "Varje månad"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-post"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Unable to obtain identity information from database"] = "Kunde inte hämta från databasen"; -$a->strings["Empty name"] = "Tomt namn"; -$a->strings["Name too long"] = "För långt namn"; -$a->strings["No account identifier"] = "Ingen kontoidentifierare"; -$a->strings["Nickname is required."] = "Smeknamn måste anges."; -$a->strings["Reserved nickname. Please choose another."] = "Reserverat smeknamn. Välj ett annat."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Smeknamnet innehåller otillåtna tecken eller är redan upptaget på den här servern."; -$a->strings["Unable to retrieve created identity"] = "Kunde inte hämta den skapade identiteten"; -$a->strings["Default Profile"] = "Standardprofil"; -$a->strings["Friends"] = "Vänner"; -$a->strings["Requested channel is not available."] = "Den begärda kanalen är inte tillgänglig"; -$a->strings["Requested profile is not available."] = "Begärd profil är inte tillgänglig."; -$a->strings["Change profile photo"] = "Bytprofilfoto"; -$a->strings["Profiles"] = "Profiler"; -$a->strings["Manage/edit profiles"] = "Hantera/redigera profiler"; -$a->strings["Create New Profile"] = "Skapa ny profil"; -$a->strings["Profile Image"] = "Profilbild"; -$a->strings["visible to everybody"] = "synlig för alla"; -$a->strings["Edit visibility"] = "Redigera synlighet"; -$a->strings["Gender:"] = "Kön:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Hemsida:"; -$a->strings["Online Now"] = "Online nu"; -$a->strings["g A l F d"] = "l j F \\k\\l G"; -$a->strings["F d"] = "j F"; -$a->strings["[today]"] = "[i dag]"; -$a->strings["Birthday Reminders"] = "Födelsedagspåminnelser"; -$a->strings["Birthdays this week:"] = "Födelsedagar den här veckan:"; -$a->strings["[No description]"] = "[Ingen beskrivning]"; -$a->strings["Event Reminders"] = "Händelsepåminnelser"; -$a->strings["Events this week:"] = "Händelser den här veckan:"; -$a->strings["Profile"] = "Profil"; -$a->strings["Full Name:"] = "Fullständigt namn:"; -$a->strings["Like this channel"] = "Gilla den här kanalen"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "gillar detta", - 1 => "gillar detta", -); -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Födelsedag:"; -$a->strings["Age:"] = "Ålder:"; -$a->strings["for %1\$d %2\$s"] = "i %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Sexuell preferens:"; -$a->strings["Hometown:"] = "Hemort:"; -$a->strings["Tags:"] = "Taggar:"; -$a->strings["Political Views:"] = "Politisk åskådning:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["About:"] = "Om:"; -$a->strings["Hobbies/Interests:"] = "Fritidssysselsättning/intressen:"; -$a->strings["Likes:"] = "Gillar:"; -$a->strings["Dislikes:"] = "Ogillar:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformation och sociala nätverk:"; -$a->strings["My other channels:"] = "Mina andra kanaler:"; -$a->strings["Musical interests:"] = "Musikintressen:"; -$a->strings["Books, literature:"] = "Böcker, litteratur:"; -$a->strings["Television:"] = "Tv:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underhållning:"; -$a->strings["Love/Romance:"] = "Kärlek/romantik:"; -$a->strings["Work/employment:"] = "Arbete/sysselsättning:"; -$a->strings["School/education:"] = "Skola/utbildning:"; -$a->strings["Like this thing"] = "Gilla den här saken"; -$a->strings["Image/photo"] = "Bild/foto"; -$a->strings["Encrypted content"] = "Krypterat innehåll"; -$a->strings["Install design element: "] = "Installera designelement: "; -$a->strings["QR code"] = "QR-kod"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev följande %2\$s %3\$s"; -$a->strings["post"] = "post"; -$a->strings["$1 spoiler"] = "$1 spoiler"; -$a->strings["$1 wrote:"] = "$1 skrev:"; -$a->strings["Miscellaneous"] = "Övrigt"; -$a->strings["YYYY-MM-DD or MM-DD"] = "ÅÅÅÅ-MM-DD eller MM-DD"; -$a->strings["never"] = "aldrig"; -$a->strings["less than a second ago"] = "mindre än en sekund sedan"; -$a->strings["year"] = "år"; -$a->strings["years"] = "år"; -$a->strings["month"] = "månad"; -$a->strings["months"] = "månader"; -$a->strings["week"] = "vecka"; -$a->strings["weeks"] = "veckor"; -$a->strings["day"] = "dag"; -$a->strings["days"] = "dagar"; -$a->strings["hour"] = "timme"; -$a->strings["hours"] = "timmar"; -$a->strings["minute"] = "minut"; -$a->strings["minutes"] = "minuter"; -$a->strings["second"] = "sekund"; -$a->strings["seconds"] = "sekunder"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sedan"; -$a->strings["%1\$s's birthday"] = "%1\$ss födelsedag"; -$a->strings["Happy Birthday %1\$s"] = "Grattis på födelsedagen %1\$s"; -$a->strings["Invalid data packet"] = "Ogiltigt datapaket"; -$a->strings["Unable to verify channel signature"] = "Kunde inte bekräfta kanalsignatur"; -$a->strings["Unable to verify site signature for %s"] = "Kunde inte bekräfta signatur för servern %s"; +$a->strings["Can view my normal stream and posts"] = "Kan se mina normala strömmar och inlägg"; +$a->strings["Can view my default channel profile"] = "Kan se min standardkanalprofil"; +$a->strings["Can view my photo albums"] = "Kan se mina fotoalbum"; +$a->strings["Can view my connections"] = "Kan se mina kontakter"; +$a->strings["Can view my file storage"] = "Kan se mitt filutrymme"; +$a->strings["Can view my webpages"] = "Kan se mina webbsidor"; +$a->strings["Can send me their channel stream and posts"] = "Kan skicka sina kanalströmmar och inlägg till mig"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kan posta inlägg på min kanalsida (\"vägg\")"; +$a->strings["Can comment on or like my posts"] = "Kan kommentera eller gilla mina inlägg"; +$a->strings["Can send me private mail messages"] = "Kan skicka privata meddelanden till mig"; +$a->strings["Can post photos to my photo albums"] = "Kan lägga till foton i mitt fotoalbum"; +$a->strings["Can like/dislike stuff"] = "Kan gilla/ogilla saker"; +$a->strings["Profiles and things other than posts/comments"] = "Profiler och annat än inlägg/kommentarer"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan vidarebefordra till alla mina kanalkontakter genom @omnämnanden"; +$a->strings["Advanced - useful for creating group forum channels"] = "Avancerat - användbart för att skapa kanaler för gruppforum"; +$a->strings["Can chat with me (when available)"] = "Kan chatta med mig (när tillgänglig)"; +$a->strings["Can write to my file storage"] = "Har skrivrättigheter i mitt filutrymme"; +$a->strings["Can edit my webpages"] = "Kan redigera mina webbsidor"; +$a->strings["Can source my public posts in derived channels"] = "Kan använda mina offentliga inlägg i kanaler nedströms"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Ganska avancerat - väldigt användbart i öppna gemenskaper"; +$a->strings["Can administer my channel resources"] = "Kan administrera mina kanalresurser"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremt avancerat. Låt detta vara om du inte vet vad du gör"; +$a->strings["Social Networking"] = "Socialt nätverkande"; +$a->strings["Mostly Public"] = "Mestadels offentligt"; +$a->strings["Restricted"] = "Begränsat"; +$a->strings["Private"] = "Privat"; +$a->strings["Community Forum"] = "Gemenskapsforum"; +$a->strings["Feed Republish"] = "Vidarepublicering av flöde"; +$a->strings["Special Purpose"] = "Särskilt syfte"; +$a->strings["Celebrity/Soapbox"] = "Kändis/talarstol"; +$a->strings["Group Repository"] = "Gruppförråd"; +$a->strings["Other"] = "Annat"; +$a->strings["Custom/Expert Mode"] = "Anpassat/expertläge"; +$a->strings["created a new post"] = "skapade ett nytt inlägg"; +$a->strings["commented on %s's post"] = "kommenterade %ss inlägg"; $a->strings["Tags"] = "Taggar"; +$a->strings["Categories"] = "Kategorier"; $a->strings["Keywords"] = "Nyckelord"; $a->strings["have"] = "har"; $a->strings["has"] = "har"; @@ -403,65 +76,40 @@ $a->strings["like"] = "gilla"; $a->strings["likes"] = "gillar"; $a->strings["dislike"] = "ogilla"; $a->strings["dislikes"] = "ogillar"; -$a->strings["Public Timeline"] = "Offentlig tidslinje"; -$a->strings["Directory Options"] = "Katalogalternativ"; -$a->strings["Alphabetic"] = "Alfabetisk"; -$a->strings["Reverse Alphabetic"] = "Omvänd alfabetisk"; -$a->strings["Newest to Oldest"] = "Nyast till äldst"; -$a->strings["Public Forums Only"] = "Endast offentliga forum"; -$a->strings["Enable Safe Search"] = "Aktivera säker sökning"; -$a->strings["Disable Safe Search"] = "Avaktivera säker sökning"; -$a->strings["Safe Mode"] = "Säkert läge"; -$a->strings["Red Matrix Notification"] = "Red Matrix-meddelande"; -$a->strings["redmatrix"] = "redmatrix"; -$a->strings["Thank You,"] = "Tack,"; -$a->strings["%s Administrator"] = "Administratören för %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Meddelande] Nytt meddelande på %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s skickade ett nytt privat meddelande till dig på %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s skickade %2\$s till dig."; -$a->strings["a private message"] = "ett privat meddelande"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Besök %s för att visa och/eller svara på dina privata meddelanden."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]ett %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]%4\$ss %5\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]ditt %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Meddelande] Kommentar till konversation #%1\$d av %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterade en sak/konversation du har följt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Besök %s för att visa och/eller svara på konversationen."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Meddelande] %s postade till din profilvägg"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s postade till din profilvägg på %3\$s"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s postade till [zrl=%3\$s]din vägg[/zrl]"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Meddelande] %s taggade dig"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s taggade dig på %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]taggade dig[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Meddelande] %1\$s puffade dig"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s puffade dig på %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]puffade dig[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Meddelande] %s taggade ditt inlägg"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s taggade ditt inlägg på %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s taggade [zrl=%3\$s]ditt inlägg[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Meddelande] Presentation mottagen"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har fått en ny kontaktförfrågan från '%2\$s' på %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du har fått [zrl=%2\$s]en ny kontaktförfrågan[/zrl] från %3\$s."; -$a->strings["You may visit their profile at %s"] = "Du kan besöka deras profil på %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Besök %s för att bevilja eller avslå kontaktförfrågan."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Meddelande] Vänförslag mottaget"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har fått ett vänförslag från '%2\$s' på %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har fått [zrl=%2\$s]ett vänförslag[/zrl] angående %3\$s från %4\$s."; -$a->strings["Name:"] = "Namn:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Besök %s för att bevilja eller avslå förslaget."; -$a->strings["[Red:Notify]"] = "[Red:Notifiering]"; -$a->strings["This event has been added to your calendar."] = "Händelsen har lagts till i din kalender."; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En borttagen grupp med det här namnet återskapades. Befintliga rättigheter till saker kan gälla för den här gruppen och alla framtida medlemmar. Om det här inte är vad du avsåg, skapa i stället en annan grupp med ett annat namn."; -$a->strings["Default privacy group for new contacts"] = "Förvald integritetsgrupp för nya kontakter"; -$a->strings["All Channels"] = "Alla kanaler"; -$a->strings["edit"] = "redigera"; -$a->strings["Collections"] = "Kretsar"; -$a->strings["Edit collection"] = "Redigera krets"; -$a->strings["Create a new collection"] = "Skapa en ny krets"; -$a->strings["Channels not in any collection"] = "Kanaler inte i någon krets"; -$a->strings["add"] = "lägg till"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "gillar detta", + 1 => "gillar detta", +); +$a->strings["New Page"] = "Ny sida"; +$a->strings["View"] = "Visa"; +$a->strings["Preview"] = "Förhandsgranska"; +$a->strings["Actions"] = "Åtgärder"; +$a->strings["Page Link"] = "Länk"; +$a->strings["Title"] = "Titel"; +$a->strings["Created"] = "Skapad"; +$a->strings["Edited"] = "Ändrad"; +$a->strings["Embedded content"] = "Inbäddat innehåll"; +$a->strings["Embedding disabled"] = "Inbäddning inaktiverat"; +$a->strings["Logged out."] = "Utloggad."; +$a->strings["Failed authentication"] = "Inloggning misslyckades"; +$a->strings["Login failed."] = "Inloggning misslyckades."; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild överskrider webbplatsens storleksbegränsning på %lu byte"; +$a->strings["Image file is empty."] = "Bildfil är tom."; +$a->strings["Unable to process image"] = "Kunde inte bearbeta bild"; +$a->strings["Photo storage failed."] = "Fotolagring misslyckades."; +$a->strings["Photo Albums"] = "Fotoalbum"; +$a->strings["Upload New Photos"] = "Ladda upp nya foton"; +$a->strings[" and "] = " och "; +$a->strings["public profile"] = "offentlig profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ändrade %2\$s till "%3\$s""; +$a->strings["Visit %1\$s's %2\$s"] = "Besök %1\$ss %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har en uppdaterad %2\$s (har ändrat %3\$s)."; +$a->strings["Attachments:"] = "Bilagor:"; +$a->strings["l F d, Y \\@ g:i A"] = "l j F Y \\k\\l. H.i"; +$a->strings["Redmatrix event notification:"] = "Händelsenotifiering från Redmatrix:"; +$a->strings["Starts:"] = "Börjar:"; +$a->strings["Finishes:"] = "Slutar:"; +$a->strings["Location:"] = "Plats:"; $a->strings["General Features"] = "Allmänna funktioner"; $a->strings["Content Expiration"] = "Tidsbegränsat innehåll"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Ta bort inlägg/kommentarer och/eller privata meddelanden efter en tid"; @@ -486,8 +134,6 @@ $a->strings["Allows you to set restrictions and terms on those that connect with $a->strings["Post Composition Features"] = "Skrivfunktioner"; $a->strings["Use Markdown"] = "Använd Markdown"; $a->strings["Allow use of \"Markdown\" to format posts"] = "Tillåt att \"Markdown\" används för att formatera inlägg"; -$a->strings["Post Preview"] = "Förhandsgranskning"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Tillåt förhandsgranskning av inlägg och kommentarer innan de publiceras"; $a->strings["Channel Sources"] = "Kanalkällor"; $a->strings["Automatically import channel content from other channels or feeds"] = "Importera kanalinnehåll från andra kanaler eller flöden automatiskt"; $a->strings["Even More Encryption"] = "Ytterligare kryptering"; @@ -510,12 +156,11 @@ $a->strings["Filter stream activity by depth of relationships"] = "Filtrera str $a->strings["Suggest Channels"] = "Föreslå kanaler"; $a->strings["Show channel suggestions"] = "Visa förslag på kanaler"; $a->strings["Post/Comment Tools"] = "Inläggs-/kommentarsverktyg"; -$a->strings["Edit Sent Posts"] = "Redigera sända inlägg"; -$a->strings["Edit and correct posts and comments after sending"] = "Redigera och korrigera inlägg och kommentarer efter att de skickats"; $a->strings["Tagging"] = "Taggning"; $a->strings["Ability to tag existing posts"] = "Möjlighet att tagga befintliga inlägg"; $a->strings["Post Categories"] = "Inläggskategorier"; $a->strings["Add categories to your posts"] = "Lägg till kategorier till dina inlägg"; +$a->strings["Saved Folders"] = "Sparade mappar"; $a->strings["Ability to file posts under folders"] = "Möjlighet att lägga inlägg i mappar"; $a->strings["Dislike Posts"] = "Ogilla inlägg"; $a->strings["Ability to dislike posts/comments"] = "Möjlighet att ogilla inlägg/kommentarer"; @@ -523,6 +168,60 @@ $a->strings["Star Posts"] = "Märk inlägg"; $a->strings["Ability to mark special posts with a star indicator"] = "Möjlighet att märka speciella inlägg med en stjärna"; $a->strings["Tag Cloud"] = "Taggmoln"; $a->strings["Provide a personal tag cloud on your channel page"] = "Tillhandahåll ett personligt taggmoln på din kanalsida"; +$a->strings["parent"] = "en nivå upp"; +$a->strings["Collection"] = "Samling"; +$a->strings["Principal"] = "Bas"; +$a->strings["Addressbook"] = "Adressbok"; +$a->strings["Calendar"] = "Kalender"; +$a->strings["Schedule Inbox"] = "Schemainkorg"; +$a->strings["Schedule Outbox"] = "Schemautkorg"; +$a->strings["Unknown"] = "Okända"; +$a->strings["%1\$s used"] = "%1\$s använt"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s använt av %2\$s (%3\$s%)"; +$a->strings["Files"] = "Filer"; +$a->strings["Total"] = "Totalt"; +$a->strings["Name"] = "Namn"; +$a->strings["Type"] = "Typ"; +$a->strings["Size"] = "Storlek"; +$a->strings["Last Modified"] = "Senast ändrad"; +$a->strings["Delete"] = "Ta bort"; +$a->strings["Create new folder"] = "Skapa ny mapp"; +$a->strings["Create"] = "Skapa"; +$a->strings["Upload file"] = "Ladda upp fil"; +$a->strings["Upload"] = "Ladda upp"; +$a->strings["%1\$s's bookmarks"] = "%1\$ss bokmärken"; +$a->strings["Directory Options"] = "Katalogalternativ"; +$a->strings["Alphabetic"] = "Alfabetisk"; +$a->strings["Reverse Alphabetic"] = "Omvänd alfabetisk"; +$a->strings["Newest to Oldest"] = "Nyast till äldst"; +$a->strings["Oldest to Newest"] = "Äldst till nyast"; +$a->strings["Public Forums Only"] = "Endast offentliga forum"; +$a->strings["Sort"] = "Ordning"; +$a->strings["Enable Safe Search"] = "Aktivera säker sökning"; +$a->strings["Disable Safe Search"] = "Avaktivera säker sökning"; +$a->strings["Safe Mode"] = "Säkert läge"; +$a->strings["Default"] = "Standard"; +$a->strings["Frequently"] = "Ofta"; +$a->strings["Hourly"] = "Varje timme"; +$a->strings["Twice daily"] = "Två gånger dagligen"; +$a->strings["Daily"] = "Dagligen"; +$a->strings["Weekly"] = "Varje vecka"; +$a->strings["Monthly"] = "Varje månad"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-post"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Visible to your default audience"] = "Kan ses av förinställda mottagare"; +$a->strings["Show"] = "Visa"; +$a->strings["Don't show"] = "Visa inte"; +$a->strings["Permissions"] = "Behörighet"; +$a->strings["Close"] = "Stäng"; $a->strings["prev"] = "föregående"; $a->strings["first"] = "första"; $a->strings["last"] = "sista"; @@ -535,8 +234,10 @@ $a->strings["%d Connection"] = array( 1 => "%d kontakter", ); $a->strings["View Connections"] = "Visa kontakter"; +$a->strings["Search"] = "Sök"; $a->strings["Save"] = "Spara"; $a->strings["poke"] = "puffa"; +$a->strings["poked"] = "puffade"; $a->strings["ping"] = "pinga"; $a->strings["pinged"] = "pingade"; $a->strings["prod"] = "stöt till"; @@ -597,12 +298,146 @@ $a->strings["Select a page layout: "] = "Välj en sidlayout: "; $a->strings["default"] = "standard"; $a->strings["Page content type: "] = "Typ av sidinnehåll: "; $a->strings["Select an alternate language"] = "Välj ett alternativt språk"; +$a->strings["photo"] = "foto"; +$a->strings["event"] = "händelse"; +$a->strings["status"] = "status"; +$a->strings["comment"] = "kommentar"; $a->strings["activity"] = "aktivitet"; $a->strings["Design"] = "Design"; $a->strings["Blocks"] = "Block"; $a->strings["Menus"] = "Menyer"; $a->strings["Layouts"] = "Layouter"; $a->strings["Pages"] = "Sidor"; +$a->strings["%d invitation available"] = array( + 0 => "%d inbjudan tillgänglig", + 1 => "%d inbjudningar tillgängliga", +); +$a->strings["Advanced"] = "Avancerat"; +$a->strings["Find Channels"] = "Hitta kanaler"; +$a->strings["Enter name or interest"] = "Ange namn eller intresse"; +$a->strings["Connect/Follow"] = "Ta kontakt/följ"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exempel: Robert Morgenstein, Fiske"; +$a->strings["Find"] = "Sök"; +$a->strings["Channel Suggestions"] = "Kanalförslag"; +$a->strings["Random Profile"] = "Slumpvald profil"; +$a->strings["Invite Friends"] = "Bjud in vänner"; +$a->strings["Advanced example: name=fred and country=iceland"] = "Avancerat exempel: name=fred and country=iceland"; +$a->strings["Everything"] = "Allt"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemensam kontakt", + 1 => "%d gemensamma kontakter", +); +$a->strings["show more"] = "visa fler"; +$a->strings["Red Matrix Notification"] = "Red Matrix-meddelande"; +$a->strings["redmatrix"] = "redmatrix"; +$a->strings["Thank You,"] = "Tack,"; +$a->strings["%s Administrator"] = "Administratören för %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Meddelande] Nytt meddelande på %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s skickade ett nytt privat meddelande till dig på %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s skickade %2\$s till dig."; +$a->strings["a private message"] = "ett privat meddelande"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Besök %s för att visa och/eller svara på dina privata meddelanden."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]ett %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]%4\$ss %5\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]ditt %4\$s[/zrl]"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Meddelande] Kommentar till konversation #%1\$d av %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterade en sak/konversation du har följt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Besök %s för att visa och/eller svara på konversationen."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Meddelande] %s postade till din profilvägg"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s postade till din profilvägg på %3\$s"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s postade till [zrl=%3\$s]din vägg[/zrl]"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Meddelande] %s taggade dig"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s taggade dig på %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]taggade dig[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Meddelande] %1\$s puffade dig"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s puffade dig på %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]puffade dig[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Meddelande] %s taggade ditt inlägg"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s taggade ditt inlägg på %3\$s"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s taggade [zrl=%3\$s]ditt inlägg[/zrl]"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Meddelande] Presentation mottagen"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har fått en ny kontaktförfrågan från '%2\$s' på %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du har fått [zrl=%2\$s]en ny kontaktförfrågan[/zrl] från %3\$s."; +$a->strings["You may visit their profile at %s"] = "Du kan besöka deras profil på %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Besök %s för att bevilja eller avslå kontaktförfrågan."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Meddelande] Vänförslag mottaget"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har fått ett vänförslag från '%2\$s' på %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har fått [zrl=%2\$s]ett vänförslag[/zrl] angående %3\$s från %4\$s."; +$a->strings["Name:"] = "Namn:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Besök %s för att bevilja eller avslå förslaget."; +$a->strings["[Red:Notify]"] = "[Red:Notifiering]"; +$a->strings["This event has been added to your calendar."] = "Händelsen har lagts till i din kalender."; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En borttagen grupp med det här namnet återskapades. Befintliga rättigheter till saker kan gälla för den här gruppen och alla framtida medlemmar. Om det här inte är vad du avsåg, skapa i stället en annan grupp med ett annat namn."; +$a->strings["Default privacy group for new contacts"] = "Förvald integritetsgrupp för nya kontakter"; +$a->strings["All Channels"] = "Alla kanaler"; +$a->strings["edit"] = "redigera"; +$a->strings["Collections"] = "Kretsar"; +$a->strings["Edit collection"] = "Redigera krets"; +$a->strings["Create a new collection"] = "Skapa en ny krets"; +$a->strings["Channels not in any collection"] = "Kanaler inte i någon krets"; +$a->strings["add"] = "lägg till"; +$a->strings["Unable to obtain identity information from database"] = "Kunde inte hämta från databasen"; +$a->strings["Empty name"] = "Tomt namn"; +$a->strings["Name too long"] = "För långt namn"; +$a->strings["No account identifier"] = "Ingen kontoidentifierare"; +$a->strings["Nickname is required."] = "Smeknamn måste anges."; +$a->strings["Reserved nickname. Please choose another."] = "Reserverat smeknamn. Välj ett annat."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Smeknamnet innehåller otillåtna tecken eller är redan upptaget på den här servern."; +$a->strings["Unable to retrieve created identity"] = "Kunde inte hämta den skapade identiteten"; +$a->strings["Default Profile"] = "Standardprofil"; +$a->strings["Friends"] = "Vänner"; +$a->strings["Requested channel is not available."] = "Den begärda kanalen är inte tillgänglig"; +$a->strings["Requested profile is not available."] = "Begärd profil är inte tillgänglig."; +$a->strings["Connect"] = "Ta kontakt"; +$a->strings["Change profile photo"] = "Bytprofilfoto"; +$a->strings["Profiles"] = "Profiler"; +$a->strings["Manage/edit profiles"] = "Hantera/redigera profiler"; +$a->strings["Create New Profile"] = "Skapa ny profil"; +$a->strings["Edit Profile"] = "Redigera profil"; +$a->strings["Profile Image"] = "Profilbild"; +$a->strings["visible to everybody"] = "synlig för alla"; +$a->strings["Edit visibility"] = "Redigera synlighet"; +$a->strings["Gender:"] = "Kön:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Hemsida:"; +$a->strings["Online Now"] = "Online nu"; +$a->strings["g A l F d"] = "l j F \\k\\l G"; +$a->strings["F d"] = "j F"; +$a->strings["[today]"] = "[i dag]"; +$a->strings["Birthday Reminders"] = "Födelsedagspåminnelser"; +$a->strings["Birthdays this week:"] = "Födelsedagar den här veckan:"; +$a->strings["[No description]"] = "[Ingen beskrivning]"; +$a->strings["Event Reminders"] = "Händelsepåminnelser"; +$a->strings["Events this week:"] = "Händelser den här veckan:"; +$a->strings["Profile"] = "Profil"; +$a->strings["Full Name:"] = "Fullständigt namn:"; +$a->strings["Like this channel"] = "Gilla den här kanalen"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Födelsedag:"; +$a->strings["Age:"] = "Ålder:"; +$a->strings["for %1\$d %2\$s"] = "i %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexuell preferens:"; +$a->strings["Hometown:"] = "Hemort:"; +$a->strings["Tags:"] = "Taggar:"; +$a->strings["Political Views:"] = "Politisk åskådning:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["About:"] = "Om:"; +$a->strings["Hobbies/Interests:"] = "Fritidssysselsättning/intressen:"; +$a->strings["Likes:"] = "Gillar:"; +$a->strings["Dislikes:"] = "Ogillar:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformation och sociala nätverk:"; +$a->strings["My other channels:"] = "Mina andra kanaler:"; +$a->strings["Musical interests:"] = "Musikintressen:"; +$a->strings["Books, literature:"] = "Böcker, litteratur:"; +$a->strings["Television:"] = "Tv:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underhållning:"; +$a->strings["Love/Romance:"] = "Kärlek/romantik:"; +$a->strings["Work/employment:"] = "Arbete/sysselsättning:"; +$a->strings["School/education:"] = "Skola/utbildning:"; +$a->strings["Like this thing"] = "Gilla den här saken"; $a->strings["Not a valid email address"] = "Inte en giltig e-postadress"; $a->strings["Your email domain is not among those allowed on this site"] = "Din e-postdomän är inte bland de som tillåts på den här servern"; $a->strings["Your email address is already registered at this site."] = "Din e-postadress är redan registrerad på den här servern."; @@ -621,61 +456,150 @@ $a->strings["Account verified. Please login."] = "Konto bekräftat. Du kan nu lo $a->strings["Click here to upgrade."] = "Klicka här för att uppgradera."; $a->strings["This action exceeds the limits set by your subscription plan."] = "Den här funktionen går utanför vad som anges i ditt avtal."; $a->strings["This action is not available under your subscription plan."] = "Den här funktionen är inte tillgänglig med ditt avtal."; -$a->strings["Can view my normal stream and posts"] = "Kan se mina normala strömmar och inlägg"; -$a->strings["Can view my default channel profile"] = "Kan se min standardkanalprofil"; -$a->strings["Can view my photo albums"] = "Kan se mina fotoalbum"; -$a->strings["Can view my connections"] = "Kan se mina kontakter"; -$a->strings["Can view my file storage"] = "Kan se mitt filutrymme"; -$a->strings["Can view my webpages"] = "Kan se mina webbsidor"; -$a->strings["Can send me their channel stream and posts"] = "Kan skicka sina kanalströmmar och inlägg till mig"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kan posta inlägg på min kanalsida (\"vägg\")"; -$a->strings["Can comment on or like my posts"] = "Kan kommentera eller gilla mina inlägg"; -$a->strings["Can send me private mail messages"] = "Kan skicka privata meddelanden till mig"; -$a->strings["Can post photos to my photo albums"] = "Kan lägga till foton i mitt fotoalbum"; -$a->strings["Can like/dislike stuff"] = "Kan gilla/ogilla saker"; -$a->strings["Profiles and things other than posts/comments"] = "Profiler och annat än inlägg/kommentarer"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan vidarebefordra till alla mina kanalkontakter genom @omnämnanden"; -$a->strings["Advanced - useful for creating group forum channels"] = "Avancerat - användbart för att skapa kanaler för gruppforum"; -$a->strings["Can chat with me (when available)"] = "Kan chatta med mig (när tillgänglig)"; -$a->strings["Can write to my file storage"] = "Har skrivrättigheter i mitt filutrymme"; -$a->strings["Can edit my webpages"] = "Kan redigera mina webbsidor"; -$a->strings["Can source my public posts in derived channels"] = "Kan använda mina offentliga inlägg i kanaler nedströms"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Ganska avancerat - väldigt användbart i öppna gemenskaper"; -$a->strings["Can administer my channel resources"] = "Kan administrera mina kanalresurser"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremt avancerat. Låt detta vara om du inte vet vad du gör"; -$a->strings["Social Networking"] = "Socialt nätverkande"; -$a->strings["Mostly Public"] = "Mestadels offentligt"; -$a->strings["Restricted"] = "Begränsat"; -$a->strings["Private"] = "Privat"; -$a->strings["Community Forum"] = "Gemenskapsforum"; -$a->strings["Feed Republish"] = "Vidarepublicering av flöde"; -$a->strings["Special Purpose"] = "Särskilt syfte"; -$a->strings["Celebrity/Soapbox"] = "Kändis/talarstol"; -$a->strings["Group Repository"] = "Gruppförråd"; -$a->strings["Other"] = "Annat"; -$a->strings["Custom/Expert Mode"] = "Anpassat/expertläge"; -$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild överskrider webbplatsens storleksbegränsning på %lu byte"; -$a->strings["Image file is empty."] = "Bildfil är tom."; -$a->strings["Unable to process image"] = "Kunde inte bearbeta bild"; -$a->strings["Photo storage failed."] = "Fotolagring misslyckades."; -$a->strings["Upload New Photos"] = "Ladda upp nya foton"; -$a->strings["Permission denied"] = "Behörighet saknas"; -$a->strings["(Unknown)"] = "(Okänt)"; -$a->strings["Visible to anybody on the internet."] = "Kan ses av vem som helst på Internet."; -$a->strings["Visible to you only."] = "Kan bara ses av dig."; -$a->strings["Visible to anybody in this network."] = "Kan ses av alla på det här nätverket."; -$a->strings["Visible to anybody authenticated."] = "Kan ses av alla inloggade."; -$a->strings["Visible to anybody on %s."] = "Kan ses av alla på %s."; -$a->strings["Visible to all connections."] = "Kan ses av alla kontakter."; -$a->strings["Visible to approved connections."] = "Kan ses av godkända kontakter."; -$a->strings["Visible to specific connections."] = "Kan ses av valda kontakter."; -$a->strings["Item not found."] = "Posten hittades inte."; -$a->strings["Collection not found."] = "Kretsen hittades inte."; -$a->strings["Collection is empty."] = "Kretsen är tom."; -$a->strings["Collection: %s"] = "Krets: %s"; -$a->strings["Connection: %s"] = "Kontakt: %s"; -$a->strings["Connection not found."] = "Kontakten hittades inte."; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades."; +$a->strings["Channel is blocked on this site."] = "Kanalen är blockerad på den här servern."; +$a->strings["Channel location missing."] = "Kanalplats saknas."; +$a->strings["Response from remote channel was incomplete."] = "Svar från den andra kanalen var ofullständigt."; +$a->strings["Channel was deleted and no longer exists."] = "Kanalen har tagits bort och finns inte längre."; +$a->strings["Protocol disabled."] = "Protokoll inaktiverat."; +$a->strings["Channel discovery failed."] = "Kanalsökning misslyckades."; +$a->strings["local account not found."] = "hittade inte lokalt konto."; +$a->strings["Cannot connect to yourself."] = "Du kan inte kontakta dig själv."; +$a->strings["Public Timeline"] = "Offentlig tidslinje"; +$a->strings["Item was not found."] = "Posten hittades inte."; +$a->strings["No source file."] = "Ingen källfil."; +$a->strings["Cannot locate file to replace"] = "Kan inte hitta fil att ersätta"; +$a->strings["Cannot locate file to revise/update"] = "Kan inte hitta fil att revidera/uppdatera"; +$a->strings["File exceeds size limit of %d"] = "Filen överskrider storleksbegränsningen %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd."; +$a->strings["Stored file could not be verified. Upload failed."] = "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad."; +$a->strings["Path not available."] = "Sökväg inte tillgänglig."; +$a->strings["Empty pathname"] = "Tom sökväg"; +$a->strings["duplicate filename or path"] = "filnamn eller sökväg finns redan"; +$a->strings["Path not found."] = "Sökväg hittas inte."; +$a->strings["mkdir failed."] = "mkdir misslyckades."; +$a->strings["database storage failed."] = "databaslagring misslyckades."; +$a->strings["Missing room name"] = "Rumsnamn saknas"; +$a->strings["Duplicate room name"] = "Rumsnamnet finns redan"; +$a->strings["Invalid room specifier."] = "Ogiltig rumsbeskrivning."; +$a->strings["Room not found."] = "Rummet hittades inte."; +$a->strings["Room is full"] = "Rummet är fullt"; +$a->strings["Image/photo"] = "Bild/foto"; +$a->strings["Encrypted content"] = "Krypterat innehåll"; +$a->strings["Install design element: "] = "Installera designelement: "; +$a->strings["QR code"] = "QR-kod"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev följande %2\$s %3\$s"; +$a->strings["post"] = "post"; +$a->strings["$1 spoiler"] = "$1 spoiler"; +$a->strings["$1 wrote:"] = "$1 skrev:"; +$a->strings["channel"] = "kanal"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gillar %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gillar inte %2\$ss %3\$s"; +$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s har nu kontakt med %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s puffade %2\$s"; +$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s är %2\$s"; +$a->strings["Select"] = "Välj"; +$a->strings["Private Message"] = "Privat meddelande"; +$a->strings["Message signature validated"] = "Meddelandesignatur bekräftad"; +$a->strings["Message signature incorrect"] = "Meddelandesignatur felaktig"; +$a->strings["View %s's profile @ %s"] = "Visa %ss profil på %s"; +$a->strings["Categories:"] = "Kategorier:"; +$a->strings["Filed under:"] = "Postat under:"; +$a->strings[" from %s"] = "från %s"; +$a->strings["last edited: %s"] = "senast redigerat: %s"; +$a->strings["Expires: %s"] = "Upphör: %s"; +$a->strings["View in context"] = "Visa sammanhang"; +$a->strings["Please wait"] = "Vänta"; +$a->strings["remove"] = "ta bort"; +$a->strings["Loading..."] = "Laddar..."; +$a->strings["Delete Selected Items"] = "Ta bort valda poster"; +$a->strings["View Source"] = "Visa källa"; +$a->strings["Follow Thread"] = "Följ tråd"; +$a->strings["View Status"] = "Visa status"; +$a->strings["View Profile"] = "Visa profil"; +$a->strings["View Photos"] = "Visa foton"; +$a->strings["Matrix Activity"] = "Matrisaktivitet"; +$a->strings["Edit Contact"] = "Redigera kontakt"; +$a->strings["Send PM"] = "Skicka meddelande"; +$a->strings["Poke"] = "Puffa"; +$a->strings["%s likes this."] = "%s gillar det här."; +$a->strings["%s doesn't like this."] = "%s gillar inte det här."; +$a->strings["%2\$d people like this."] = array( + 0 => "%2\$d person gillar det här.", + 1 => "%2\$d personer gillar det här.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "%2\$d person gillar inte det här.", + 1 => "%2\$d personer gillar inte det här.", +); +$a->strings["and"] = "och"; +$a->strings[", and %d other people"] = array( + 0 => ", och %d annan person", + 1 => ", och %d andra personer", +); +$a->strings["%s like this."] = "%s gillar det här."; +$a->strings["%s don't like this."] = "%s gillar inte det här."; +$a->strings["Visible to everybody"] = "Kan ses av alla"; +$a->strings["Please enter a link URL:"] = "Ange en länkadress:"; +$a->strings["Please enter a video link/URL:"] = "Ange en videolänkadress:"; +$a->strings["Please enter an audio link/URL:"] = "Ange en ljudlänkadress"; +$a->strings["Tag term:"] = "Tagguttryck"; +$a->strings["Save to Folder:"] = "Spara i mapp:"; +$a->strings["Where are you right now?"] = "Var är du just nu?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Upphör YYYY-MM-DD HH:MM"; +$a->strings["Share"] = "Dela"; +$a->strings["Page link title"] = "Titel på sidlänk"; +$a->strings["Post as"] = "Posta som"; +$a->strings["Upload photo"] = "Ladda upp foto"; +$a->strings["upload photo"] = "ladda upp foto"; +$a->strings["Attach file"] = "Bifoga fil"; +$a->strings["attach file"] = "bifoga fil"; +$a->strings["Insert web link"] = "Infoga webblänk"; +$a->strings["web link"] = "webblänk"; +$a->strings["Insert video link"] = "Infoga videolänk"; +$a->strings["video link"] = "videolänk"; +$a->strings["Insert audio link"] = "Infoga ljudlänk"; +$a->strings["audio link"] = "ljudlänk"; +$a->strings["Set your location"] = "Ange din plats"; +$a->strings["set location"] = "ange plats"; +$a->strings["Clear browser location"] = "Rensa webbläsarplats"; +$a->strings["clear location"] = "rensa plats"; +$a->strings["Title (optional)"] = "Titel (frivilligt)"; +$a->strings["Categories (optional, comma-separated list)"] = "Kategorier (frivilligt, kommaseparerad lista)"; +$a->strings["Permission settings"] = "Behörighetsinställningar"; +$a->strings["permissions"] = "behörighet"; +$a->strings["Public post"] = "Offentligt inlägg"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Exempel: bob@example.com, mary@example.com"; +$a->strings["Set expiration date"] = "Ange utgångsdatum"; +$a->strings["Encrypt text"] = "Kryptera text"; +$a->strings["OK"] = "OK"; +$a->strings["Cancel"] = "Avbryt"; +$a->strings["Discover"] = "Upptäck"; +$a->strings["Imported public streams"] = "Importerade offentliga strömmar"; +$a->strings["Commented Order"] = "Kommentarsordning"; +$a->strings["Sort by Comment Date"] = "Ordna efter kommentarsdatum"; +$a->strings["Posted Order"] = "Inläggsordning"; +$a->strings["Sort by Post Date"] = "Ordna efter när inlägget skrevs"; +$a->strings["Personal"] = "Personligt"; +$a->strings["Posts that mention or involve you"] = "Inlägg som nämner eller berör dig"; +$a->strings["New"] = "Nytt"; +$a->strings["Activity Stream - by date"] = "Aktivitetsström - efter datum"; +$a->strings["Starred"] = "Märkt"; +$a->strings["Favourite Posts"] = "Favoritinlägg"; +$a->strings["Spam"] = "Skräp"; +$a->strings["Posts flagged as SPAM"] = "Inlägg markerade som SKRÄP"; +$a->strings["Channel"] = "Kanal"; +$a->strings["Status Messages and Posts"] = "Statusmeddelanden och inlägg"; +$a->strings["About"] = "Om"; +$a->strings["Profile Details"] = "Profildetaljer"; +$a->strings["Photos"] = "Foton"; +$a->strings["Files and Storage"] = "Filer och lagring"; +$a->strings["Chatrooms"] = "Chattrum"; +$a->strings["Bookmarks"] = "Bokmärken"; +$a->strings["Saved Bookmarks"] = "Sparade bokmärken"; +$a->strings["Webpages"] = "Webbsidor"; +$a->strings["Manage Webpages"] = "Hantera webbsidor"; +$a->strings["Apps"] = "Appar"; $a->strings["System"] = "System"; $a->strings["Create Personal App"] = "Skapa personlig app"; $a->strings["Edit Personal App"] = "Redigera personlig app"; @@ -703,21 +627,108 @@ $a->strings["Feature settings"] = "Funktionsinställningar"; $a->strings["Display settings"] = "Utseende"; $a->strings["Connected apps"] = "Anslutna appar"; $a->strings["Export channel"] = "Exportera kanal"; -$a->strings["Export content"] = "Exportera innehåll"; $a->strings["Connection Default Permissions"] = "Standardbehörighet för kontakt"; $a->strings["Premium Channel Settings"] = "Inställningar för premiumkanal"; +$a->strings["Settings"] = "Inställningar"; $a->strings["Messages"] = "Meddelanden"; $a->strings["Check Mail"] = "Hämta meddelanden"; +$a->strings["New Message"] = "Nytt meddelande"; $a->strings["Chat Rooms"] = "Chattrum"; $a->strings["Bookmarked Chatrooms"] = "Bokmärkta chattrum"; $a->strings["Suggested Chatrooms"] = "Föreslagna chattrum"; $a->strings["photo/image"] = "foto/bild"; +$a->strings["Invalid data packet"] = "Ogiltigt datapaket"; +$a->strings["Unable to verify channel signature"] = "Kunde inte bekräfta kanalsignatur"; +$a->strings["Unable to verify site signature for %s"] = "Kunde inte bekräfta signatur för servern %s"; +$a->strings["Save to Folder"] = "Spara i mapp"; +$a->strings["View all"] = "Visa alla"; +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "ogillar detta", + 1 => "ogillar detta", +); +$a->strings["Add Star"] = "Märk"; +$a->strings["Remove Star"] = "Ta bort märkning"; +$a->strings["Toggle Star Status"] = "Växla märkning"; +$a->strings["starred"] = "märkt"; +$a->strings["Add Tag"] = "Lägg till en tagg"; +$a->strings["I like this (toggle)"] = "Jag gillar det här (växla)"; +$a->strings["I don't like this (toggle)"] = "Jag gillar inte det här (växla)"; +$a->strings["Share This"] = "Dela det här"; +$a->strings["share"] = "dela"; +$a->strings["%d comment"] = array( + 0 => "%d kommentar", + 1 => "%d kommentarer", +); +$a->strings["View %s's profile - %s"] = "Visa %ss profil - %s"; +$a->strings["to"] = "till"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Vägg-till-vägg"; +$a->strings["via Wall-To-Wall:"] = "via vägg-till-vägg"; +$a->strings["Save Bookmarks"] = "Spara bokmärken"; +$a->strings["Add to Calendar"] = "Lägg till kalendern"; +$a->strings["Mark all seen"] = "Märk alla som lästa"; +$a->strings["__ctx:noun__ Likes"] = "gillar detta"; +$a->strings["__ctx:noun__ Dislikes"] = "ogillar detta"; +$a->strings["[+] show all"] = "[+] visa alla"; +$a->strings["This is you"] = "Det här är du"; +$a->strings["Comment"] = "Kommentera"; +$a->strings["Submit"] = "Skicka"; +$a->strings["Bold"] = "Fet"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Understruken"; +$a->strings["Quote"] = "Citat"; +$a->strings["Code"] = "Kod"; +$a->strings["Image"] = "Bild"; +$a->strings["Link"] = "Länk"; +$a->strings["Video"] = "Video"; +$a->strings["Miscellaneous"] = "Övrigt"; +$a->strings["YYYY-MM-DD or MM-DD"] = "ÅÅÅÅ-MM-DD eller MM-DD"; +$a->strings["never"] = "aldrig"; +$a->strings["less than a second ago"] = "mindre än en sekund sedan"; +$a->strings["year"] = "år"; +$a->strings["years"] = "år"; +$a->strings["month"] = "månad"; +$a->strings["months"] = "månader"; +$a->strings["week"] = "vecka"; +$a->strings["weeks"] = "veckor"; +$a->strings["day"] = "dag"; +$a->strings["days"] = "dagar"; +$a->strings["hour"] = "timme"; +$a->strings["hours"] = "timmar"; +$a->strings["minute"] = "minut"; +$a->strings["minutes"] = "minuter"; +$a->strings["second"] = "sekund"; +$a->strings["seconds"] = "sekunder"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sedan"; +$a->strings["%1\$s's birthday"] = "%1\$ss födelsedag"; +$a->strings["Happy Birthday %1\$s"] = "Grattis på födelsedagen %1\$s"; +$a->strings["Site Admin"] = "Serveradministrator"; +$a->strings["Address Book"] = "Adressbok"; +$a->strings["Login"] = "Logga in"; +$a->strings["Channel Manager"] = "Kanalhanterare"; +$a->strings["Matrix"] = "Matris"; +$a->strings["Channel Home"] = "Kanalhem"; +$a->strings["Events"] = "Händelser"; +$a->strings["Directory"] = "Katalog"; +$a->strings["Help"] = "Hjälp"; +$a->strings["Mail"] = "Privat meddelande"; +$a->strings["Mood"] = "Sinnesstämning"; +$a->strings["Chat"] = "Chatt"; +$a->strings["Probe"] = "Sond"; +$a->strings["Suggest"] = "Föreslå"; +$a->strings["Random Channel"] = "Slumpvald kanal"; +$a->strings["Invite"] = "Bjud in"; +$a->strings["Features"] = "Funktioner"; +$a->strings["Language"] = "Språk"; +$a->strings["Post"] = "Inlägg"; +$a->strings["Profile Photo"] = "Profilfoto"; +$a->strings["Update"] = "Uppdatera"; +$a->strings["Install"] = "Installera"; +$a->strings["Purchase"] = "Köp"; $a->strings["New window"] = "Nytt fönster"; $a->strings["Open the selected location in a different window or browser tab"] = "Öppna den valda platsen i ett annat fönster eller en annan webbläsarflik"; $a->strings["User '%s' deleted"] = "Användare '%s' borttagen"; $a->strings["Delete this item?"] = "Ta bort den här posten?"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["[+] show all"] = "[+] visa alla"; $a->strings["[-] show less"] = "[-] visa färre"; $a->strings["[+] expand"] = "[+] fäll ut"; $a->strings["[-] collapse"] = "[-] fäll ihop"; @@ -802,68 +813,73 @@ $a->strings["Uncertain"] = "Osäkert"; $a->strings["It's complicated"] = "Det är komplicerat"; $a->strings["Don't care"] = "Bryr mig inte"; $a->strings["Ask me"] = "Fråga mig"; -$a->strings["Site Admin"] = "Serveradministrator"; -$a->strings["Address Book"] = "Adressbok"; -$a->strings["Mood"] = "Sinnesstämning"; -$a->strings["Probe"] = "Sond"; -$a->strings["Suggest"] = "Föreslå"; -$a->strings["Random Channel"] = "Slumpvald kanal"; -$a->strings["Invite"] = "Bjud in"; -$a->strings["Features"] = "Funktioner"; -$a->strings["Language"] = "Språk"; -$a->strings["Post"] = "Inlägg"; -$a->strings["Profile Photo"] = "Profilfoto"; -$a->strings["Update"] = "Uppdatera"; -$a->strings["Install"] = "Installera"; -$a->strings["Purchase"] = "Köp"; -$a->strings["Logged out."] = "Utloggad."; -$a->strings["Failed authentication"] = "Inloggning misslyckades"; -$a->strings["Login failed."] = "Inloggning misslyckades."; -$a->strings["Save to Folder"] = "Spara i mapp"; -$a->strings["View all"] = "Visa alla"; -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "ogillar detta", - 1 => "ogillar detta", -); -$a->strings["Add Star"] = "Märk"; -$a->strings["Remove Star"] = "Ta bort märkning"; -$a->strings["Toggle Star Status"] = "Växla märkning"; -$a->strings["starred"] = "märkt"; -$a->strings["Add Tag"] = "Lägg till en tagg"; -$a->strings["I like this (toggle)"] = "Jag gillar det här (växla)"; -$a->strings["I don't like this (toggle)"] = "Jag gillar inte det här (växla)"; -$a->strings["Share This"] = "Dela det här"; -$a->strings["share"] = "dela"; -$a->strings["%d comment"] = array( - 0 => "%d kommentar", - 1 => "%d kommentarer", -); -$a->strings["View %s's profile - %s"] = "Visa %ss profil - %s"; -$a->strings["to"] = "till"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Vägg-till-vägg"; -$a->strings["via Wall-To-Wall:"] = "via vägg-till-vägg"; -$a->strings["Save Bookmarks"] = "Spara bokmärken"; -$a->strings["Add to Calendar"] = "Lägg till kalendern"; -$a->strings["Mark all seen"] = "Märk alla som lästa"; -$a->strings["__ctx:noun__ Likes"] = "gillar detta"; -$a->strings["__ctx:noun__ Dislikes"] = "ogillar detta"; -$a->strings["This is you"] = "Det här är du"; -$a->strings["Submit"] = "Skicka"; -$a->strings["Bold"] = "Fet"; -$a->strings["Italic"] = "Kursiv"; -$a->strings["Underline"] = "Understruken"; -$a->strings["Quote"] = "Citat"; -$a->strings["Code"] = "Kod"; -$a->strings["Image"] = "Bild"; -$a->strings["Link"] = "Länk"; -$a->strings["Video"] = "Video"; -$a->strings["Missing room name"] = "Rumsnamn saknas"; -$a->strings["Duplicate room name"] = "Rumsnamnet finns redan"; -$a->strings["Invalid room specifier."] = "Ogiltig rumsbeskrivning."; -$a->strings["Room not found."] = "Rummet hittades inte."; -$a->strings["Room is full"] = "Rummet är fullt"; +$a->strings["Logout"] = "Logga ut"; +$a->strings["End this session"] = "Avsluta sessionen"; +$a->strings["Home"] = "Hem"; +$a->strings["Your posts and conversations"] = "Dina inlägg och konversationer"; +$a->strings["Your profile page"] = "Din profilsida"; +$a->strings["Edit Profiles"] = "Redigera profiler"; +$a->strings["Manage/Edit profiles"] = "Hantera/redigera profiler"; +$a->strings["Edit your profile"] = "Redigera din profil"; +$a->strings["Your photos"] = "Dina foton"; +$a->strings["Your files"] = "Dina filer"; +$a->strings["Your chatrooms"] = "Dina chattrum"; +$a->strings["Your bookmarks"] = "Dina bokmärken"; +$a->strings["Your webpages"] = "Dina webbsidor"; +$a->strings["Sign in"] = "Logga in"; +$a->strings["%s - click to logout"] = "%s - klicka för att logga ut"; +$a->strings["Remote authentication"] = "Fjärrinloggning"; +$a->strings["Click to authenticate to your home hub"] = "Klicka för att autentisera mot din hemmahubb"; +$a->strings["Home Page"] = "Hemsida"; +$a->strings["Register"] = "Skapa konto"; +$a->strings["Create an account"] = "Skapa ett konto"; +$a->strings["Help and documentation"] = "Hjälp och dokumentation"; +$a->strings["Applications, utilities, links, games"] = "Applikationer, verktyg, länkar, spel"; +$a->strings["Search site content"] = "Sök innehåll"; +$a->strings["Channel Directory"] = "Kanalkatalog"; +$a->strings["Your matrix"] = "Din matris"; +$a->strings["Mark all matrix notifications seen"] = "Märk alla matrisnotifieringar som lästa"; +$a->strings["Channel home"] = "Kanalhem"; +$a->strings["Mark all channel notifications seen"] = "Märk alla kanalnotifieringar som lästa"; +$a->strings["Connections"] = "Kontakter"; +$a->strings["Notices"] = "Meddelanden"; +$a->strings["Notifications"] = "Notifieringar"; +$a->strings["See all notifications"] = "Se alla notifieringar"; +$a->strings["Mark all system notifications seen"] = "Märk alla systemnotifieringar som lästa"; +$a->strings["Private mail"] = "Privat meddelande"; +$a->strings["See all private messages"] = "Se alla privata meddelanden"; +$a->strings["Mark all private messages seen"] = "Märk alla privata meddelanden som lästa"; +$a->strings["Inbox"] = "Inkorg"; +$a->strings["Outbox"] = "Utkorg"; +$a->strings["Event Calendar"] = "Kalender"; +$a->strings["See all events"] = "Se alla händelser"; +$a->strings["Mark all events seen"] = "Märk alla händelser som lästa"; +$a->strings["Manage Your Channels"] = "Hantera dina kanaler"; +$a->strings["Account/Channel Settings"] = "Konto-/kanalinställningar"; +$a->strings["Admin"] = "Administration"; +$a->strings["Site Setup and Configuration"] = "Serverinställning och -konfiguration"; +$a->strings["@name, #tag, content"] = "@namn, #tagg, innehåll"; +$a->strings["Please wait..."] = "Vänta..."; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades."; $a->strings["Set your current mood and tell your friends"] = "Ange din nuvarande sinnesstämning och visa för dina vänner"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Välj huruvida du accepterar användarvillkoren. Registrering misslyckades."; +$a->strings["Passwords do not match."] = "Lösenorden stämmer inte överens."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrering lyckades. Kontrollera din e-post för valideringsinstruktioner."; +$a->strings["Your registration is pending approval by the site owner."] = "Din registrering väntar på att bli godkänd av serverägaren."; +$a->strings["Your registration can not be processed."] = "Din registrering kan inte behandlas."; +$a->strings["Registration on this site/hub is by approval only."] = "Registrering på den här servern/hubben måste godkännas."; +$a->strings["Register at another affiliated site/hub"] = "Skapa konto på en annan ansluten server/hubb"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Antal dagliga registreringar som tillåts på den här servern har överskridits. Försök igen i morgon."; +$a->strings["Terms of Service"] = "användarvillkor"; +$a->strings["I accept the %s for this website"] = "Jag accepterar den här webbplatsens %s"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Jag är över 13 år och accepterar den här webbplatsens %s"; +$a->strings["Registration"] = "Registrering"; +$a->strings["Membership on this site is by invitation only."] = "Medlemskap på den här servern kan endast fås genom inbjudan."; +$a->strings["Please enter your invitation code"] = "Ange din inbjudningskod"; +$a->strings["Your email address"] = "Din e-postadress"; +$a->strings["Choose a password"] = "Välj ett lösenord"; +$a->strings["Please re-enter your password"] = "Ange lösenordet igen"; $a->strings["Menu not found."] = "Menyn hittades inte."; $a->strings["Menu element updated."] = "Menyval uppdaterat."; $a->strings["Unable to update menu element."] = "Kunde inte uppdatera menyval."; @@ -894,144 +910,6 @@ $a->strings["Menu item could not be deleted."] = "Menyval kunde inte tas bort."; $a->strings["Edit Menu Element"] = "Redigera menyval"; $a->strings["Modify"] = "Ändra"; $a->strings["Some blurb about what to do when you're new here"] = "Lite text om vad man kan göra som ny här"; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Välj huruvida du accepterar användarvillkoren. Registrering misslyckades."; -$a->strings["Passwords do not match."] = "Lösenorden stämmer inte överens."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrering lyckades. Kontrollera din e-post för valideringsinstruktioner."; -$a->strings["Your registration is pending approval by the site owner."] = "Din registrering väntar på att bli godkänd av serverägaren."; -$a->strings["Your registration can not be processed."] = "Din registrering kan inte behandlas."; -$a->strings["Registration on this site/hub is by approval only."] = "Registrering på den här servern/hubben måste godkännas."; -$a->strings["Register at another affiliated site/hub"] = "Skapa konto på en annan ansluten server/hubb"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Antal dagliga registreringar som tillåts på den här servern har överskridits. Försök igen i morgon."; -$a->strings["Terms of Service"] = "användarvillkor"; -$a->strings["I accept the %s for this website"] = "Jag accepterar den här webbplatsens %s"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Jag är över 13 år och accepterar den här webbplatsens %s"; -$a->strings["Registration"] = "Registrering"; -$a->strings["Membership on this site is by invitation only."] = "Medlemskap på den här servern kan endast fås genom inbjudan."; -$a->strings["Please enter your invitation code"] = "Ange din inbjudningskod"; -$a->strings["Your email address"] = "Din e-postadress"; -$a->strings["Choose a password"] = "Välj ett lösenord"; -$a->strings["Please re-enter your password"] = "Ange lösenordet igen"; -$a->strings["- select -"] = "- välj -"; -$a->strings["Invalid profile identifier."] = "Ogiltigt profil-ID."; -$a->strings["Profile Visibility Editor"] = "Redigera profilsynlighet"; -$a->strings["Click on a contact to add or remove."] = "Klicka på en kontakt för att lägga till eller ta bort."; -$a->strings["Visible To"] = "Kan ses av"; -$a->strings["All Connections"] = "Alla kontakter"; -$a->strings["Failed to create source. No channel selected."] = "Misslyckades att skapa källa. Ingen kanal vald."; -$a->strings["Source created."] = "Källa skapad."; -$a->strings["Source updated."] = "Källa uppdaterad."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Hantera fjärrkällor med innehåll för din kanal."; -$a->strings["New Source"] = "Ny källa"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importera allt eller valt innehåll från följande kanal till den här kanalen och distribuera det enligt dina kanalinställningar."; -$a->strings["Only import content with these words (one per line)"] = "Importera endast innehåll med de här orden (ett per rad)"; -$a->strings["Leave blank to import all public content"] = "Lämna blankt för att importera allt offentligt innehåll"; -$a->strings["Channel Name"] = "Kanalnamn"; -$a->strings["Source not found."] = "Källa hittades inte."; -$a->strings["Edit Source"] = "Redigera källa"; -$a->strings["Delete Source"] = "Ta bort källa"; -$a->strings["Source removed"] = "Källa borttagen"; -$a->strings["Unable to remove source."] = "Kunde inte ta bort källa."; -$a->strings["Poke/Prod"] = "Puffa/stöt till"; -$a->strings["poke, prod or do other things to somebody"] = "puffa, stöt till eller gör andra saker mot någon"; -$a->strings["Recipient"] = "Mottagare"; -$a->strings["Choose what you wish to do to recipient"] = "Välj vad du önskar göra med mottagaren"; -$a->strings["Make this post private"] = "Gör det här inlägget privat"; -$a->strings["Authorize application connection"] = "Tillåt anslutning av applikation"; -$a->strings["Return to your app and insert this Securty Code:"] = "Återgå till din applikation och ange den här säkerhetskoden:"; -$a->strings["Please login to continue."] = "Logga in för att fortsätta."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?"; -$a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nej"; -$a->strings["Public access denied."] = "Offentlig behörighet saknas."; -$a->strings["Item not available."] = "Post inte tillgänglig."; -$a->strings["Fetching URL returns error: %1\$s"] = "Hämtning av URL returnerade fel: %1\$s"; -$a->strings["Invalid item."] = "Ogiltig post."; -$a->strings["Channel not found."] = "Kanalen hittas inte."; -$a->strings["Page not found."] = "Sidan hittas inte."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s följer %2\$ss %3\$s"; -$a->strings["Block Name"] = "Blocknamn"; -$a->strings["Red Matrix Server - Setup"] = "Red Matrix-server - inställningar"; -$a->strings["Could not connect to database."] = "Kunde inte ansluta till databasen."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Kunde inte ansluta till den angivna server-URL:en. Möjligt problem med SSL-certifikat eller DNS."; -$a->strings["Could not create table."] = "Kunde inte skapa tabell."; -$a->strings["Your site database has been installed."] = "Din serverdatabas har installerats."; -$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du kan behöva importera filen \"install/schema_xxx.sql\" manuellt med en databasklient."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Se filen \"install/INSTALL.txt\"."; -$a->strings["System check"] = "Systemkontroll"; -$a->strings["Next"] = "Nästa"; -$a->strings["Check again"] = "Kontrollera igen"; -$a->strings["Database connection"] = "Databasanslutning"; -$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "För att kunna installera Red Matrix behöver vi veta hur databasen ska anslutas."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Kontakta din servervärd eller administratör om du har frågor om de här inställningarna."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du anger nedan måste finnas. Om den inte gör det, skapa den innan du fortsätter."; -$a->strings["Database Server Name"] = "Databasserver"; -$a->strings["Default is localhost"] = "Standard är localhost"; -$a->strings["Database Port"] = "Databasport"; -$a->strings["Communication port number - use 0 for default"] = "Kommunikationsportnummer - använd 0 för standardinställning"; -$a->strings["Database Login Name"] = "Loginnamn till databas"; -$a->strings["Database Login Password"] = "Lösenord till databas"; -$a->strings["Database Name"] = "Databasnamn"; -$a->strings["Database Type"] = "Databastyp"; -$a->strings["Site administrator email address"] = "Serveradministratörens e-postadress"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ditt kontos e-postadress måste stämma med den här för att webbgränssnittet för administration ska kunna användas."; -$a->strings["Website URL"] = "Webbplatsens URL"; -$a->strings["Please use SSL (https) URL if available."] = "Ange en URL med SSL (https) om tillgängligt"; -$a->strings["Please select a default timezone for your website"] = "Välj en standardtidszon för din webbplats"; -$a->strings["Site settings"] = "Serverinställningar"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kunde inte hitta en kommandoradsversion av PHP i webbserverns PATH."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Om du inte har en kommandoradsversion av PHP installerad på servern kommer du inte att kunna köra bakgrundshämtning via cron."; -$a->strings["PHP executable path"] = "Sökväg till PHP-programmet"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Ange hela sökvägen till php-programfilen. Du kan lämna det här blankt för att fortsätta installationen."; -$a->strings["Command line PHP"] = "Kommandorads-PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandoradsversionen av PHP på ditt system har inte \"register_argc_argv\" aktiverat."; -$a->strings["This is required for message delivery to work."] = "Det här behövs för att meddelandeleverans ska fungera."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fel: \"openssl_pkey_new\"-funktionen på det här systemet kan inte generera kryptonycklar"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Om systemet kör Windows, se \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generera kryptonycklar"; -$a->strings["libCurl PHP module"] = "PHP-modulen libCurl"; -$a->strings["GD graphics PHP module"] = "PHP-modulen GD graphics"; -$a->strings["OpenSSL PHP module"] = "PHP-modulen OpenSSL"; -$a->strings["mysqli or postgres PHP module"] = "PHP-modulen mysqli eller postgres"; -$a->strings["mb_string PHP module"] = "PHP-modulen mb_string"; -$a->strings["mcrypt PHP module"] = "PHP-modulen mcrypt"; -$a->strings["Apache mod_rewrite module"] = "Apache-modulen mod_rewrite"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fel: Apache-webbserverns mod-rewrite-modul krävs men är inte installerad."; -$a->strings["proc_open"] = "proc_open"; -$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fel: proc_open krävs men är antingen inte installerad eller har inaktiverats i php.ini"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fel: PHP-modulen libCURL krävs men är inte installerad."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fel: PHP-modulen GD graphics med JPEG-stöd krävs men är inte installerad."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fel: PHP-modulen openssl krävs men är inte installerad."; -$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fel: en av PHP-modulerna mysqli eller postgres krävs men är inte installerad."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fel: PHP-modulen mb_string krävs men är inte installerad."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Fel: PHP-modulen mcrypt krävs men är inte installerad."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Webbinstallationen måste kunna skapa filen \".htconfig.php\" i toppkatalogen på din webbserver men kan inte göra det."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Det är ofta en behörighetsinställning som gör att webbservern inte kan skriva filer i din katalog - även om du kan."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Efter den här proceduren kommer vi att ge dig en text att spara i filen .htconfig.php i Reds toppkatalog."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativt kan du hoppa över den här proceduren och göra en manuell installation. För instruktioner, se filen \"install/INSTALL.txt\"."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php är skrivbar"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red använder mallmotorn Smarty3 för att rendera webbvyerna. Smarty3 kompilerar mallar till PHP för att snabba upp renderingen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "För att spara de här kompilerade mallarna behöver webbservern ha skrivrättigheter till katalogen %s under Reds toppkatalog."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Försäkra dig om att användaren som din webbserver kör som (t.ex. www-data) har skrivrättigheter till den här katalogen."; -$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Observera: som en säkerhetsåtgärd bör du ge webbservern skrivrättighet endast för %s - inte för mallfilerna (.tpl) som finns där."; -$a->strings["%s is writable"] = "%s är skrivbar"; -$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red använder katalogen store för att spara uppladdade filer. Webbservern behöver ha skrivrättigheter till katalogen store under Reds toppkatalog."; -$a->strings["store is writable"] = "store är skrivbar"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-certifikatet kan inte valideras. Fixa certifikatet eller inaktivera https-åtkomst till den här servern."; -$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Om du har https-åtkomst till din webbplats eller tillåter anslutningar till TCP-port 443 (https-porten) MÅSTE du använda ett certifikat som kan verifieras av webbläsare. Du FÅR INTE använda självsignerade certifikat!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Restriktionen finns eftersom offentliga inlägg från dig kan innehålla till exempel referenser till bilder på din egen hubb."; -$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Om ditt certifikat inte känns igen kommer medlemmar på andra webbplatser (som själv kan ha giltiga certifikat) att få en varning på sin egen webbplats om säkerhetsproblem."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Detta kan orsaka problem med användbarheten (inte bara på din egen server) så vi måste trycka på det här kravet."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Det finns leverantörer som utfärdar gratis certifikat som känns igen av webbläsare."; -$a->strings["SSL certificate validation"] = "SSL-certifikatvalidering"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite i .htaccess fungerar inte. Kolla din serverkonfiguration. Test: "; -$a->strings["Url rewrite is working"] = "URL rewrite fungerar"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databaskonfigurationsfilen \".htconfig.php\" kunde inte skrivas. Använd den bifogade texten för att skapa en konfigurationsfil i din webbservers rot."; -$a->strings["Errors encountered creating database tables."] = "Fel inträffade när databastabeller skulle skapas."; -$a->strings["

What next

"] = "

Nästa steg

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIGT: Du behöver ställa in en schemalagd för hämtningsrutinen [manuellt]"; $a->strings["Name is required"] = "Namn är obligatoriskt"; $a->strings["Key and Secret are required"] = "Nyckel och kod är obligatoriska"; $a->strings["Passwords do not match. Password unchanged."] = "Lösenorden stämmer inte överens. Lösenordet har inte ändrats."; @@ -1073,6 +951,7 @@ $a->strings["Additional Features"] = "Ytterligare funktioner"; $a->strings["Connector Settings"] = "Anslutningsinställningar"; $a->strings["No special theme for mobile devices"] = "Inget särskilt tema för mobila enheter"; $a->strings["%s - (Experimental)"] = "%s - (experimentellt)"; +$a->strings["mobile"] = "mobilt"; $a->strings["Display Settings"] = "Utseende"; $a->strings["Display Theme:"] = "Tema för utseende:"; $a->strings["Mobile Theme:"] = "Mobilt tema:"; @@ -1099,6 +978,8 @@ $a->strings["Anybody in this network"] = "Vem som helst i det här nätverket"; $a->strings["Anybody authenticated"] = "Vem som helst som har autentiserat sig"; $a->strings["Anybody on the internet"] = "Vem som helst på Internet"; $a->strings["Publish your default profile in the network directory"] = "Publicera din standardprofil i nätverkskatalogen"; +$a->strings["No"] = "Nej"; +$a->strings["Yes"] = "Ja"; $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Tillåt oss att föreslå dig som möjlig vän för nya medlemmar"; $a->strings["or"] = "eller"; $a->strings["Your channel address is"] = "Din kanaladress är"; @@ -1166,6 +1047,159 @@ $a->strings["Please enable expert mode (in Setting $a->strings["Miscellaneous Settings"] = "Diverse inställningar"; $a->strings["Personal menu to display in your channel pages"] = "Personlig meny att visa i dina kanalsidor"; $a->strings["Remove this channel"] = "Ta bort den här kanalen"; +$a->strings["Collection created."] = "Krets skapad."; +$a->strings["Could not create collection."] = "Kunde inte skapa krets."; +$a->strings["Collection updated."] = "Kretsen uppdaterad."; +$a->strings["Create a collection of channels."] = "Skapa en krets av kanaler."; +$a->strings["Collection Name: "] = "Namn på krets: "; +$a->strings["Members are visible to other channels"] = "Medlemmar kan ses av andra kanaler"; +$a->strings["Collection removed."] = "Krets borttagen."; +$a->strings["Unable to remove collection."] = "Kunde inte ta bort krets."; +$a->strings["Collection Editor"] = "Redigera krets"; +$a->strings["Members"] = "Medlemmar"; +$a->strings["All Connected Channels"] = "Alla anslutna kanaler"; +$a->strings["Click on a channel to add or remove."] = "Klicka på en kanal för att lägga till eller ta bort."; +$a->strings["Public access denied."] = "Offentlig behörighet saknas."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s följer %2\$ss %3\$s"; +$a->strings["Poke/Prod"] = "Puffa/stöt till"; +$a->strings["poke, prod or do other things to somebody"] = "puffa, stöt till eller gör andra saker mot någon"; +$a->strings["Recipient"] = "Mottagare"; +$a->strings["Choose what you wish to do to recipient"] = "Välj vad du önskar göra med mottagaren"; +$a->strings["Make this post private"] = "Gör det här inlägget privat"; +$a->strings["Authorize application connection"] = "Tillåt anslutning av applikation"; +$a->strings["Return to your app and insert this Securty Code:"] = "Återgå till din applikation och ange den här säkerhetskoden:"; +$a->strings["Please login to continue."] = "Logga in för att fortsätta."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?"; +$a->strings["Red Matrix Server - Setup"] = "Red Matrix-server - inställningar"; +$a->strings["Could not connect to database."] = "Kunde inte ansluta till databasen."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Kunde inte ansluta till den angivna server-URL:en. Möjligt problem med SSL-certifikat eller DNS."; +$a->strings["Could not create table."] = "Kunde inte skapa tabell."; +$a->strings["Your site database has been installed."] = "Din serverdatabas har installerats."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du kan behöva importera filen \"install/schema_xxx.sql\" manuellt med en databasklient."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Se filen \"install/INSTALL.txt\"."; +$a->strings["System check"] = "Systemkontroll"; +$a->strings["Next"] = "Nästa"; +$a->strings["Check again"] = "Kontrollera igen"; +$a->strings["Database connection"] = "Databasanslutning"; +$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "För att kunna installera Red Matrix behöver vi veta hur databasen ska anslutas."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Kontakta din servervärd eller administratör om du har frågor om de här inställningarna."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du anger nedan måste finnas. Om den inte gör det, skapa den innan du fortsätter."; +$a->strings["Database Server Name"] = "Databasserver"; +$a->strings["Default is localhost"] = "Standard är localhost"; +$a->strings["Database Port"] = "Databasport"; +$a->strings["Communication port number - use 0 for default"] = "Kommunikationsportnummer - använd 0 för standardinställning"; +$a->strings["Database Login Name"] = "Loginnamn till databas"; +$a->strings["Database Login Password"] = "Lösenord till databas"; +$a->strings["Database Name"] = "Databasnamn"; +$a->strings["Database Type"] = "Databastyp"; +$a->strings["Site administrator email address"] = "Serveradministratörens e-postadress"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ditt kontos e-postadress måste stämma med den här för att webbgränssnittet för administration ska kunna användas."; +$a->strings["Website URL"] = "Webbplatsens URL"; +$a->strings["Please use SSL (https) URL if available."] = "Ange en URL med SSL (https) om tillgängligt"; +$a->strings["Please select a default timezone for your website"] = "Välj en standardtidszon för din webbplats"; +$a->strings["Site settings"] = "Serverinställningar"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kunde inte hitta en kommandoradsversion av PHP i webbserverns PATH."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Om du inte har en kommandoradsversion av PHP installerad på servern kommer du inte att kunna köra bakgrundshämtning via cron."; +$a->strings["PHP executable path"] = "Sökväg till PHP-programmet"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Ange hela sökvägen till php-programfilen. Du kan lämna det här blankt för att fortsätta installationen."; +$a->strings["Command line PHP"] = "Kommandorads-PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandoradsversionen av PHP på ditt system har inte \"register_argc_argv\" aktiverat."; +$a->strings["This is required for message delivery to work."] = "Det här behövs för att meddelandeleverans ska fungera."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fel: \"openssl_pkey_new\"-funktionen på det här systemet kan inte generera kryptonycklar"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Om systemet kör Windows, se \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generera kryptonycklar"; +$a->strings["libCurl PHP module"] = "PHP-modulen libCurl"; +$a->strings["GD graphics PHP module"] = "PHP-modulen GD graphics"; +$a->strings["OpenSSL PHP module"] = "PHP-modulen OpenSSL"; +$a->strings["mysqli or postgres PHP module"] = "PHP-modulen mysqli eller postgres"; +$a->strings["mb_string PHP module"] = "PHP-modulen mb_string"; +$a->strings["mcrypt PHP module"] = "PHP-modulen mcrypt"; +$a->strings["Apache mod_rewrite module"] = "Apache-modulen mod_rewrite"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fel: Apache-webbserverns mod-rewrite-modul krävs men är inte installerad."; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fel: proc_open krävs men är antingen inte installerad eller har inaktiverats i php.ini"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fel: PHP-modulen libCURL krävs men är inte installerad."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fel: PHP-modulen GD graphics med JPEG-stöd krävs men är inte installerad."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fel: PHP-modulen openssl krävs men är inte installerad."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fel: en av PHP-modulerna mysqli eller postgres krävs men är inte installerad."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fel: PHP-modulen mb_string krävs men är inte installerad."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Fel: PHP-modulen mcrypt krävs men är inte installerad."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webbinstallationen måste kunna skapa filen \".htconfig.php\" i toppkatalogen på din webbserver men kan inte göra det."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Det är ofta en behörighetsinställning som gör att webbservern inte kan skriva filer i din katalog - även om du kan."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Efter den här proceduren kommer vi att ge dig en text att spara i filen .htconfig.php i Reds toppkatalog."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativt kan du hoppa över den här proceduren och göra en manuell installation. För instruktioner, se filen \"install/INSTALL.txt\"."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php är skrivbar"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red använder mallmotorn Smarty3 för att rendera webbvyerna. Smarty3 kompilerar mallar till PHP för att snabba upp renderingen."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "För att spara de här kompilerade mallarna behöver webbservern ha skrivrättigheter till katalogen %s under Reds toppkatalog."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Försäkra dig om att användaren som din webbserver kör som (t.ex. www-data) har skrivrättigheter till den här katalogen."; +$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Observera: som en säkerhetsåtgärd bör du ge webbservern skrivrättighet endast för %s - inte för mallfilerna (.tpl) som finns där."; +$a->strings["%s is writable"] = "%s är skrivbar"; +$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red använder katalogen store för att spara uppladdade filer. Webbservern behöver ha skrivrättigheter till katalogen store under Reds toppkatalog."; +$a->strings["store is writable"] = "store är skrivbar"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-certifikatet kan inte valideras. Fixa certifikatet eller inaktivera https-åtkomst till den här servern."; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Om du har https-åtkomst till din webbplats eller tillåter anslutningar till TCP-port 443 (https-porten) MÅSTE du använda ett certifikat som kan verifieras av webbläsare. Du FÅR INTE använda självsignerade certifikat!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Restriktionen finns eftersom offentliga inlägg från dig kan innehålla till exempel referenser till bilder på din egen hubb."; +$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Om ditt certifikat inte känns igen kommer medlemmar på andra webbplatser (som själv kan ha giltiga certifikat) att få en varning på sin egen webbplats om säkerhetsproblem."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Detta kan orsaka problem med användbarheten (inte bara på din egen server) så vi måste trycka på det här kravet."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Det finns leverantörer som utfärdar gratis certifikat som känns igen av webbläsare."; +$a->strings["SSL certificate validation"] = "SSL-certifikatvalidering"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite i .htaccess fungerar inte. Kolla din serverkonfiguration. Test: "; +$a->strings["Url rewrite is working"] = "URL rewrite fungerar"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databaskonfigurationsfilen \".htconfig.php\" kunde inte skrivas. Använd den bifogade texten för att skapa en konfigurationsfil i din webbservers rot."; +$a->strings["Errors encountered creating database tables."] = "Fel inträffade när databastabeller skulle skapas."; +$a->strings["

What next

"] = "

Nästa steg

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIGT: Du behöver ställa in en schemalagd för hämtningsrutinen [manuellt]"; +$a->strings["Item not available."] = "Post inte tillgänglig."; +$a->strings["Fetching URL returns error: %1\$s"] = "Hämtning av URL returnerade fel: %1\$s"; +$a->strings["Invalid item."] = "Ogiltig post."; +$a->strings["Channel not found."] = "Kanalen hittas inte."; +$a->strings["Page not found."] = "Sidan hittas inte."; +$a->strings["Export Channel"] = "Exportera kanal"; +$a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "Exportera kanalens basinformation till en liten fil. Denna fungerar som en säkerhetskopia av dina anslutningar, behörigheter, profil, och grundläggande data, och kan användas för att importera dina data till en ny hubb, men tar inte med ditt innehåll."; +$a->strings["Export Content"] = "Exportera innehåll"; +$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportera din kanalinformation och allt innehåll till en säkerhetskopia i JSON-format. Detta kopierar alla dina anslutningar, behörigheter, profildata och allt ditt innehåll, men är generellt inte lämpligt för att importera en kanal till en ny hubb, eftersom filen kan vara VÄLDIGT stor. Ha tålamod - det kan ta flera minuter innan nedladdningen börjar."; +$a->strings["No potential page delegates located."] = "Inga potentiella sid-ombud funna."; +$a->strings["Delegate Page Management"] = "Delegera sidhantering"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på."; +$a->strings["Existing Page Managers"] = "Befintliga sid-ansvariga"; +$a->strings["Existing Page Delegates"] = "Befintliga sid-ombud"; +$a->strings["Potential Delegates"] = "Potentiella ombud"; +$a->strings["Remove"] = "Ta bort"; +$a->strings["Add"] = "Lägg till"; +$a->strings["No entries."] = "Inga poster."; +$a->strings["Version %s"] = "Version %s"; +$a->strings["Installed plugins/addons/apps:"] = "Installerade tillägg/moduler/appar:"; +$a->strings["No installed plugins/addons/apps"] = "Inga installerade tillägg/moduler/appar"; +$a->strings["Red"] = "Red"; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Det här är en hubb som ingår i Red Matrix - ett globalt samverkande nätverk av decentraliserade webbplatser med bättre integritetskydd."; +$a->strings["Tag: "] = "Tagg: "; +$a->strings["Last background fetch: "] = "Senaste bakgrundshämtning: "; +$a->strings["Running at web location"] = "Kör på webbutrymmet"; +$a->strings["Please visit
RedMatrix.me to learn more about the Red Matrix."] = "Besök RedMatrix.me för att lära dig mer om Red Matrix."; +$a->strings["Bug reports and issues: please visit"] = "Buggrapporter och problem: besök"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Förslag, uppskattning, etc. - maila \"redmatrix\" at librelist - dot com"; +$a->strings["Site Administrators"] = "Serveradministratörer"; +$a->strings["Failed to create source. No channel selected."] = "Misslyckades att skapa källa. Ingen kanal vald."; +$a->strings["Source created."] = "Källa skapad."; +$a->strings["Source updated."] = "Källa uppdaterad."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Hantera fjärrkällor med innehåll för din kanal."; +$a->strings["New Source"] = "Ny källa"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importera allt eller valt innehåll från följande kanal till den här kanalen och distribuera det enligt dina kanalinställningar."; +$a->strings["Only import content with these words (one per line)"] = "Importera endast innehåll med de här orden (ett per rad)"; +$a->strings["Leave blank to import all public content"] = "Lämna blankt för att importera allt offentligt innehåll"; +$a->strings["Channel Name"] = "Kanalnamn"; +$a->strings["Source not found."] = "Källa hittades inte."; +$a->strings["Edit Source"] = "Redigera källa"; +$a->strings["Delete Source"] = "Ta bort källa"; +$a->strings["Source removed"] = "Källa borttagen"; +$a->strings["Unable to remove source."] = "Kunde inte ta bort källa."; +$a->strings["Invalid profile identifier."] = "Ogiltigt profil-ID."; +$a->strings["Profile Visibility Editor"] = "Redigera profilsynlighet"; +$a->strings["Click on a contact to add or remove."] = "Klicka på en kontakt för att lägga till eller ta bort."; +$a->strings["Visible To"] = "Kan ses av"; +$a->strings["All Connections"] = "Alla kontakter"; $a->strings["Event can not end before it has started."] = "Händelser kan inte sluta innan de börjat."; $a->strings["Event title and start time are required."] = "Händelsen behöver titel och starttid."; $a->strings["Event not found."] = "Händelsen hittades inte."; @@ -1176,6 +1210,7 @@ $a->strings["Previous"] = "Föregående"; $a->strings["Export"] = "Exportera"; $a->strings["Event details"] = "Detaljer för händelse"; $a->strings["Starting date and Title are required."] = "Startdatum och titel är obligatoriska."; +$a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparerad lista)"; $a->strings["Event Starts:"] = "Händelsen börjar:"; $a->strings["Required"] = "Behövs"; $a->strings["Finish date/time is not known or not relevant"] = "Slutdatum/tid är okänt eller inte relevant"; @@ -1206,28 +1241,16 @@ $a->strings["Bookmark this room"] = "Bokmärk det här rummet"; $a->strings["New Chatroom"] = "Nytt chattrum"; $a->strings["Chatroom Name"] = "Namn på chattrum"; $a->strings["%1\$s's Chatrooms"] = "%1\$ss chattrum"; -$a->strings["Version %s"] = "Version %s"; -$a->strings["Installed plugins/addons/apps:"] = "Installerade tillägg/moduler/appar:"; -$a->strings["No installed plugins/addons/apps"] = "Inga installerade tillägg/moduler/appar"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Det här är en hubb som ingår i Red Matrix - ett globalt samverkande nätverk av decentraliserade webbplatser med bättre integritetskydd."; -$a->strings["Running at web location"] = "Kör på webbutrymmet"; -$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Besök GetZot.com lära dig mer om Red Matrix."; -$a->strings["Bug reports and issues: please visit"] = "Buggrapporter och problem: besök"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Förslag, uppskattning, etc. - maila \"redmatrix\" at librelist - dot com"; -$a->strings["Site Administrators"] = "Serveradministratörer"; $a->strings["Away"] = "Borta"; $a->strings["Online"] = "Online"; $a->strings["Please login."] = "Logga in."; -$a->strings["Continue"] = "Fortsätt"; -$a->strings["Premium Channel Setup"] = "Inställning av premiumkanal"; -$a->strings["Enable premium channel connection restrictions"] = "Aktivera kontaktrestriktioner för premiumkanal"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Ange dina restriktioner och villkor, som Paypal-kvitto, användarriktlinjer, etc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Den här kanalen kan kräva ytterligare steg eller godkännande av följande villkor innan anslutning:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentiella kontakter kommer sedan att se följande text innan de går vidare:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Genom att fortsätta intygar jag att jag har följt alla instruktioner som ges på den här sidan."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Inga specifika instruktioner har givits av kanalägaren.)"; -$a->strings["Restricted or Premium Channel"] = "Begränsad kanal eller premiumkanal"; +$a->strings["Item not found"] = "Posten hittas inte"; +$a->strings["Item is not editable"] = "Posten går ej att redigera"; +$a->strings["Edit post"] = "Redigera inlägg"; +$a->strings["Delete item?"] = "Ta bort posten?"; +$a->strings["Insert YouTube video"] = "Infoga Youtube-video"; +$a->strings["Insert Vorbis [.ogg] video"] = "Infoga Vorbis [.ogg]-video"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Infoga Vorbis [.ogg]-ljud"; $a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Borttagning av kanal tillåts inte inom 48 timmar efter att kontolösenordet har ändrats."; $a->strings["Remove This Channel"] = "Ta bort den här kanalen"; $a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Det här kommer att ta bort den här kanalen helt från nätverket. När det är gjort går det inte att återställa den."; @@ -1244,17 +1267,22 @@ $a->strings["Authentication failed."] = "Inloggning misslyckades."; $a->strings["Remote Authentication"] = "Fjärrinloggning"; $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Ange din kanaladress (t.ex. kanal@example.com)"; $a->strings["Authenticate"] = "Autentisera"; -$a->strings["Like/Dislike"] = "Gilla/ogilla"; -$a->strings["This action is restricted to members."] = "Den här åtgärden fungerar bara för medlemmar."; -$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Logga in med ditt RedMatrix-ID eller registrera dig som ny RedMatrix medlem för att fortsätta."; -$a->strings["Invalid request."] = "Ogiltig begäran."; -$a->strings["thing"] = "sak"; -$a->strings["Channel unavailable."] = "Kanalen kan ej nås."; -$a->strings["Previous action reversed."] = "Föregående åtgärd återställdes."; -$a->strings["Action completed."] = "Åtgärden slutfördes."; -$a->strings["Thank you."] = "Tack."; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjärrinloggning blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen."; -$a->strings["Welcome %s. Remote authentication successful."] = "Välkommen %s. Fjärrinloggning lyckades."; +$a->strings["No valid account found."] = "Inget giltigt konto hittades."; +$a->strings["Password reset request issued. Check your email."] = "Lösenordsåterställning har skickats. Kontrollera din e-post."; +$a->strings["Site Member (%s)"] = "Servermedlem (%s)"; +$a->strings["Password reset requested at %s"] = "Lösenordsåterställning begärd på %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades."; +$a->strings["Password Reset"] = "Lösenordsåterställning"; +$a->strings["Your password has been reset as requested."] = "Ditt lösenord har återställts som begärt."; +$a->strings["Your new password is"] = "Ditt nya lösenord är"; +$a->strings["Save or copy your new password - and then"] = "Spara eller kopiera ditt nya lösenord - "; +$a->strings["click here to login"] = "klicka sedan här för att logga in"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Ditt lösenord kan bytas från sidan Inställningar när du är inloggad."; +$a->strings["Your password has changed at %s"] = "Ditt lösenord byttes på %s"; +$a->strings["Forgot your Password?"] = "Glömt lösenordet?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Ange din e-postadress och skicka för att återställa ditt lösenord. Kontrollera sedan din e-post för vidare instruktioner."; +$a->strings["Email Address"] = "E-postadress"; +$a->strings["Reset"] = "Återställ"; $a->strings["Could not access contact record."] = "Kunde inte komma åt kontaktuppgifter."; $a->strings["Could not locate selected profile."] = "Kunde inte hitta vald profil."; $a->strings["Connection updated."] = "Kontakt uppdaterad."; @@ -1278,8 +1306,9 @@ $a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; $a->strings["Edit connection"] = "Redigera kontakt"; $a->strings["Search your connections"] = "Sök bland dina kontakter"; $a->strings["Finding: "] = "Sökning efter: "; -$a->strings["OpenID protocol error. No ID returned."] = "Protokollfel för OpenID. Inget ID returnerades."; -$a->strings["Edit post"] = "Redigera inlägg"; +$a->strings["sent you a private message"] = "skickade ett privat meddelande till dig"; +$a->strings["added your channel"] = "lade till din kanal"; +$a->strings["posted an event"] = "skapade en händelse"; $a->strings["is now connected to"] = "har nu kontakt med"; $a->strings["Could not access address book record."] = "Kunde inte komma åt adressboksuppgifter."; $a->strings["Refresh failed - channel is currently unavailable."] = "Uppdatering misslyckades - kanalen är inte tillgänglig."; @@ -1353,6 +1382,113 @@ $a->strings["Currently archived"] = "Arkiverad"; $a->strings["Currently pending"] = "Inväntar svar"; $a->strings["Hide this contact from others"] = "Dölj den här kontakten för andra"; $a->strings["Replies/likes to your public posts may still be visible"] = "Svar/gilla-reaktioner på dina offentliga inlägg kan fortfarande synas"; +$a->strings["Unable to lookup recipient."] = "Kunde inte hitta mottagare."; +$a->strings["Unable to communicate with requested channel."] = "Kunde inte kommunicera med den begärda kanalen."; +$a->strings["Cannot verify requested channel."] = "Kan inte bekräfta den begärda kanalen."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka."; +$a->strings["Message deleted."] = "Meddelande borttaget."; +$a->strings["Message recalled."] = "Meddelande återkallat."; +$a->strings["Send Private Message"] = "Skicka privat meddelande."; +$a->strings["To:"] = "Till:"; +$a->strings["Subject:"] = "Ämne:"; +$a->strings["Your message:"] = "Ditt meddelande:"; +$a->strings["Send"] = "Skicka"; +$a->strings["Message not found."] = "Meddelandet hittades inte."; +$a->strings["Delete message"] = "Ta bort meddelande"; +$a->strings["Recall message"] = "Återkalla meddelande"; +$a->strings["Message has been recalled."] = "Meddelandet har återkallats."; +$a->strings["Private Conversation"] = "Privat konversation"; +$a->strings["Delete conversation"] = "Ta bort konversation"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida."; +$a->strings["Send Reply"] = "Skicka svar"; +$a->strings["Page owner information could not be retrieved."] = "Information om sidans ägare kunde inte hittas."; +$a->strings["Album not found."] = "Albumet hittades inte."; +$a->strings["Delete Album"] = "Ta bort album"; +$a->strings["Delete Photo"] = "Ta bort foto"; +$a->strings["No photos selected"] = "Inga foton valda"; +$a->strings["Access to this item is restricted."] = "Åtkomst till den här posten är begränsat."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB fotolagring använt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB fotolagring använt."; +$a->strings["Upload Photos"] = "Ladda upp foton"; +$a->strings["Enter a new album name"] = "Ange ett nytt albumnamn"; +$a->strings["or select an existing one (doubleclick)"] = "eller välj ett befintligt (dubbelklicka)"; +$a->strings["Do not show a status post for this upload"] = "Visa inte en statusuppdatering för den här uppladdningen"; +$a->strings["Album name could not be decoded"] = "Albumnamn kunde inte tolkas"; +$a->strings["Contact Photos"] = "Kontaktfoton"; +$a->strings["Show Newest First"] = "Visa nyast först"; +$a->strings["Show Oldest First"] = "Visa äldst först"; +$a->strings["View Photo"] = "Visa foto"; +$a->strings["Edit Album"] = "Redigera album"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Behörighet saknas. Åtkomst till den här posten kan vara begränsat."; +$a->strings["Photo not available"] = "Foto inte tillgängligt"; +$a->strings["Use as profile photo"] = "Använd som profilfoto"; +$a->strings["Private Photo"] = "Privat foto"; +$a->strings["View Full Size"] = "Visa fullstorlek"; +$a->strings["Edit photo"] = "Redigera foto"; +$a->strings["Rotate CW (right)"] = "Rotera medurs (höger)"; +$a->strings["Rotate CCW (left)"] = "Rotera moturs (vänster)"; +$a->strings["Caption"] = "Bildtext"; +$a->strings["Add a Tag"] = "Lägg till en tagg"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exempel: @bob, @Barbara_Jensen, @jim@example.com"; +$a->strings["Flag as adult in album view"] = "Flagga som olämpligt för barn i albumvyn"; +$a->strings["In This Photo:"] = "På fotot:"; +$a->strings["View Album"] = "Visa album"; +$a->strings["Recent Photos"] = "Nya foton"; +$a->strings["Bookmark added"] = "Bokmärke tillagt"; +$a->strings["My Bookmarks"] = "Mina bokmärken"; +$a->strings["My Connections Bookmarks"] = "Mina kontakters bokmärken"; +$a->strings["This site is not a directory server"] = "Den här servern är inte en katalogserver"; +$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - Gäster: Användarnamn {din e-postadress}, Lösenord: +++"; +$a->strings["network"] = "nätverk"; +$a->strings["Block Name"] = "Blocknamn"; +$a->strings["Edit Block"] = "Redigera block"; +$a->strings["Delete block?"] = "Ta bort block?"; +$a->strings["Delete Block"] = "Ta bort block"; +$a->strings["Layout updated."] = "Layout uppdaterad."; +$a->strings["Edit System Page Description"] = "Redigera systemsidbeskrivning"; +$a->strings["Layout not found."] = "Layout hittas inte."; +$a->strings["Module Name:"] = "Modulnamn:"; +$a->strings["Layout Help"] = "Layouthjälp"; +$a->strings["Edit Layout"] = "Redigera layout"; +$a->strings["Delete layout?"] = "Ta bort layout?"; +$a->strings["Delete Layout"] = "Ta bort layout"; +$a->strings["Red Matrix - "The Network""] = "Red Matrix - "Nätverket""; +$a->strings["Welcome to %s"] = "Välkommen till %s"; +$a->strings["Edit Webpage"] = "Redigera webbsida"; +$a->strings["Delete webpage?"] = "Ta bort webbsida?"; +$a->strings["Delete Webpage"] = "Ta bort webbsida"; +$a->strings["webpage"] = "webbsida"; +$a->strings["block"] = "block"; +$a->strings["layout"] = "layout"; +$a->strings["%s element installed"] = "%selement installerat"; +$a->strings["Image uploaded but image cropping failed."] = "Bilden laddades upp men beskärning misslyckades."; +$a->strings["Image resize failed."] = "Ändring av bildstorlek misslyckades."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt."; +$a->strings["Image exceeds size limit of %d"] = "Bilden överskrider storleksbegränsningen %d"; +$a->strings["Unable to process image."] = "Kunde inte behandla bilden."; +$a->strings["Photo not available."] = "Fotot är inte tillgängligt."; +$a->strings["Upload File:"] = "Ladda upp fil:"; +$a->strings["Select a profile:"] = "Välj en profil:"; +$a->strings["Upload Profile Photo"] = "Ladda upp profilfoto"; +$a->strings["skip this step"] = "hoppa över det här steget"; +$a->strings["select a photo from your photo albums"] = "välj ett foto från dina fotoalbum"; +$a->strings["Crop Image"] = "Beskär bild"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Justera bildens beskärning för bästa utseende."; +$a->strings["Done Editing"] = "Klar med redigering"; +$a->strings["Image uploaded successfully."] = "Bilduppladdning lyckades."; +$a->strings["Image upload failed."] = "Bilduppladdning misslyckades."; +$a->strings["Image size reduction [%s] failed."] = "Krympning av bilden [%s] misslyckades."; +$a->strings["Like/Dislike"] = "Gilla/ogilla"; +$a->strings["This action is restricted to members."] = "Den här åtgärden fungerar bara för medlemmar."; +$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Logga in med ditt RedMatrix-ID eller registrera dig som ny RedMatrix medlem för att fortsätta."; +$a->strings["Invalid request."] = "Ogiltig begäran."; +$a->strings["thing"] = "sak"; +$a->strings["Channel unavailable."] = "Kanalen kan ej nås."; +$a->strings["Previous action reversed."] = "Föregående åtgärd återställdes."; +$a->strings["Action completed."] = "Åtgärden slutfördes."; +$a->strings["Thank you."] = "Tack."; +$a->strings["Help:"] = "Hjälp:"; +$a->strings["Not Found"] = "Hittas inte"; $a->strings["Thing updated"] = "Föremål uppdaterat"; $a->strings["Object store: failed"] = "Objektlagring: misslyckades"; $a->strings["Thing added"] = "Föremål tillagt"; @@ -1367,27 +1503,66 @@ $a->strings["Name of thing e.g. something"] = "Namn på föremål, t.ex. någont $a->strings["URL of thing (optional)"] = "URL för föremål (frivilligt)"; $a->strings["URL for photo of thing (optional)"] = "URL för foto på föremål (frivilligt)"; $a->strings["Add Thing to your Profile"] = "Lägg till föremål till din profil"; -$a->strings["No valid account found."] = "Inget giltigt konto hittades."; -$a->strings["Password reset request issued. Check your email."] = "Lösenordsåterställning har skickats. Kontrollera din e-post."; -$a->strings["Site Member (%s)"] = "Servermedlem (%s)"; -$a->strings["Password reset requested at %s"] = "Lösenordsåterställning begärd på %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades."; -$a->strings["Password Reset"] = "Lösenordsåterställning"; -$a->strings["Your password has been reset as requested."] = "Ditt lösenord har återställts som begärt."; -$a->strings["Your new password is"] = "Ditt nya lösenord är"; -$a->strings["Save or copy your new password - and then"] = "Spara eller kopiera ditt nya lösenord - "; -$a->strings["click here to login"] = "klicka sedan här för att logga in"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Ditt lösenord kan bytas från sidan Inställningar när du är inloggad."; -$a->strings["Your password has changed at %s"] = "Ditt lösenord byttes på %s"; -$a->strings["Forgot your Password?"] = "Glömt lösenordet?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Ange din e-postadress och skicka för att återställa ditt lösenord. Kontrollera sedan din e-post för vidare instruktioner."; -$a->strings["Email Address"] = "E-postadress"; -$a->strings["Reset"] = "Återställ"; -$a->strings["Bookmark added"] = "Bokmärke tillagt"; -$a->strings["My Bookmarks"] = "Mina bokmärken"; -$a->strings["My Connections Bookmarks"] = "Mina kontakters bokmärken"; -$a->strings["This site is not a directory server"] = "Den här servern är inte en katalogserver"; -$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - Gäster: Användarnamn {din e-postadress}, Lösenord: +++"; +$a->strings["Contact not found."] = "Kontakten hittades inte."; +$a->strings["Friend suggestion sent."] = "Vänförfrågan skickad."; +$a->strings["Suggest Friends"] = "Föreslå vänner"; +$a->strings["Suggest a friend for %s"] = "Föreslå en vän för %s"; +$a->strings["Permission Denied."] = "Behörighet saknas."; +$a->strings["File not found."] = "Filen hittas inte."; +$a->strings["Edit file permissions"] = "Redigera filrättigheter"; +$a->strings["Set/edit permissions"] = "Ställ in/ändra behörigheter"; +$a->strings["Include all files and sub folders"] = "Inkludera alla filer och underkataloger"; +$a->strings["Return to file list"] = "Återgå till fillistan"; +$a->strings["Copy/paste this code to attach file to a post"] = "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida"; +$a->strings["Continue"] = "Fortsätt"; +$a->strings["Premium Channel Setup"] = "Inställning av premiumkanal"; +$a->strings["Enable premium channel connection restrictions"] = "Aktivera kontaktrestriktioner för premiumkanal"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Ange dina restriktioner och villkor, som Paypal-kvitto, användarriktlinjer, etc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Den här kanalen kan kräva ytterligare steg eller godkännande av följande villkor innan anslutning:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentiella kontakter kommer sedan att se följande text innan de går vidare:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Genom att fortsätta intygar jag att jag har följt alla instruktioner som ges på den här sidan."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Inga specifika instruktioner har givits av kanalägaren.)"; +$a->strings["Restricted or Premium Channel"] = "Begränsad kanal eller premiumkanal"; +$a->strings["- select -"] = "- välj -"; +$a->strings["Location not found."] = "Platsen hittades inte."; +$a->strings["Primary location cannot be removed."] = "Huvudplatsen kan inte tas bort."; +$a->strings["No locations found."] = "Inga platser hittades."; +$a->strings["Manage Channel Locations"] = "Hantera kanalplatser"; +$a->strings["Location (address)"] = "Plats (adress)"; +$a->strings["Primary Location"] = "Huvudplats"; +$a->strings["Drop location"] = "Ta bort plats"; +$a->strings["Channel added."] = "Kanal tillagd."; +$a->strings["Your service plan only allows %d channels."] = "Din tjänstenivå tillåter bara %d kanaler."; +$a->strings["Nothing to import."] = "Inget att importera."; +$a->strings["Unable to download data from old server"] = "Kunde inte ladda ner data från den gamla servern"; +$a->strings["Imported file is empty."] = "Den importerade filen är tom."; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades."; +$a->strings["Unable to create a unique channel address. Import failed."] = "Kan inte skapa en unik kanaladress. Import misslyckades."; +$a->strings["Channel clone failed. Import failed."] = "Kloning av kanalen misslyckades. Import misslyckades."; +$a->strings["Cloned channel not found. Import failed."] = "Den klonade kanalen hittas inte. Import misslyckades."; +$a->strings["Import completed."] = "Import slutförd."; +$a->strings["You must be logged in to use this feature."] = "Du måste vara inloggad för att kunna använda den här funktionen."; +$a->strings["Import Channel"] = "Importera kanal"; +$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte."; +$a->strings["File to Upload"] = "Fil att ladda upp"; +$a->strings["Or provide the old server/hub details"] = "Eller ge uppgifter om den gamla servern/hubben"; +$a->strings["Your old identity address (xyz@example.com)"] = "Din gamla identitetsadress (xyz@example.com)"; +$a->strings["Your old login email address"] = "Din gamla e-postadress för inloggning"; +$a->strings["Your old login password"] = "Ditt gamla inloggningslösenord"; +$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media."; +$a->strings["Make this hub my primary location"] = "Gör den här hubben till min primära plats"; +$a->strings["Import existing posts if possible"] = "Importera befintliga inlägg om möjligt"; +$a->strings["Unable to locate original post."] = "Kunde inte hitta originalinlägget."; +$a->strings["Empty post discarded."] = "Tomt inlägg förkastat."; +$a->strings["Executable content type not permitted to this channel."] = "Körbart innehåll tillåts inte i den här kanalen."; +$a->strings["System error. Post not saved."] = "Systemfel. Inlägget inte sparat."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du har nått din gräns på %1$.0f toppnivåinlägg."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Du har nått din gräns på %1$.0f webbsidor."; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar."; +$a->strings["Help with this feature"] = "Hjälp för den här funktionen"; +$a->strings["Layout Name"] = "Layoutnamn"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s taggade%2\$ss %3\$s med %4\$s"; $a->strings["Profile not found."] = "Profil hittades inte."; $a->strings["Profile deleted."] = "Profil borttagen."; $a->strings["Profile-"] = "Profil-"; @@ -1452,113 +1627,6 @@ $a->strings["Age: "] = "Ålder:"; $a->strings["Edit/Manage Profiles"] = "Redigera/hantera profiler"; $a->strings["Add profile things"] = "Lägg till profilsaker"; $a->strings["Include desirable objects in your profile"] = "Inkludera fina prylar i din profil"; -$a->strings["Item not found"] = "Posten hittas inte"; -$a->strings["Edit Block"] = "Redigera block"; -$a->strings["Delete block?"] = "Ta bort block?"; -$a->strings["Insert YouTube video"] = "Infoga Youtube-video"; -$a->strings["Insert Vorbis [.ogg] video"] = "Infoga Vorbis [.ogg]-video"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Infoga Vorbis [.ogg]-ljud"; -$a->strings["Delete Block"] = "Ta bort block"; -$a->strings["Layout updated."] = "Layout uppdaterad."; -$a->strings["Edit System Page Description"] = "Redigera systemsidbeskrivning"; -$a->strings["Layout not found."] = "Layout hittas inte."; -$a->strings["Module Name:"] = "Modulnamn:"; -$a->strings["Layout Help"] = "Layouthjälp"; -$a->strings["Edit Layout"] = "Redigera layout"; -$a->strings["Delete layout?"] = "Ta bort layout?"; -$a->strings["Delete Layout"] = "Ta bort layout"; -$a->strings["Item is not editable"] = "Posten går ej att redigera"; -$a->strings["Delete item?"] = "Ta bort posten?"; -$a->strings["Edit Webpage"] = "Redigera webbsida"; -$a->strings["Delete webpage?"] = "Ta bort webbsida?"; -$a->strings["Delete Webpage"] = "Ta bort webbsida"; -$a->strings["webpage"] = "webbsida"; -$a->strings["block"] = "block"; -$a->strings["layout"] = "layout"; -$a->strings["%s element installed"] = "%selement installerat"; -$a->strings["Image uploaded but image cropping failed."] = "Bilden laddades upp men beskärning misslyckades."; -$a->strings["Image resize failed."] = "Ändring av bildstorlek misslyckades."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt."; -$a->strings["Image exceeds size limit of %d"] = "Bilden överskrider storleksbegränsningen %d"; -$a->strings["Unable to process image."] = "Kunde inte behandla bilden."; -$a->strings["Photo not available."] = "Fotot är inte tillgängligt."; -$a->strings["Upload File:"] = "Ladda upp fil:"; -$a->strings["Select a profile:"] = "Välj en profil:"; -$a->strings["Upload Profile Photo"] = "Ladda upp profilfoto"; -$a->strings["skip this step"] = "hoppa över det här steget"; -$a->strings["select a photo from your photo albums"] = "välj ett foto från dina fotoalbum"; -$a->strings["Crop Image"] = "Beskär bild"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Justera bildens beskärning för bästa utseende."; -$a->strings["Done Editing"] = "Klar med redigering"; -$a->strings["Image uploaded successfully."] = "Bilduppladdning lyckades."; -$a->strings["Image upload failed."] = "Bilduppladdning misslyckades."; -$a->strings["Image size reduction [%s] failed."] = "Krympning av bilden [%s] misslyckades."; -$a->strings["Unable to locate original post."] = "Kunde inte hitta originalinlägget."; -$a->strings["Empty post discarded."] = "Tomt inlägg förkastat."; -$a->strings["Executable content type not permitted to this channel."] = "Körbart innehåll tillåts inte i den här kanalen."; -$a->strings["System error. Post not saved."] = "Systemfel. Inlägget inte sparat."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du har nått din gräns på %1$.0f toppnivåinlägg."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Du har nått din gräns på %1$.0f webbsidor."; -$a->strings["Contact not found."] = "Kontakten hittades inte."; -$a->strings["Friend suggestion sent."] = "Vänförfrågan skickad."; -$a->strings["Suggest Friends"] = "Föreslå vänner"; -$a->strings["Suggest a friend for %s"] = "Föreslå en vän för %s"; -$a->strings["Permission Denied."] = "Behörighet saknas."; -$a->strings["File not found."] = "Filen hittas inte."; -$a->strings["Edit file permissions"] = "Redigera filrättigheter"; -$a->strings["Set/edit permissions"] = "Ställ in/ändra behörigheter"; -$a->strings["Include all files and sub folders"] = "Inkludera alla filer och underkataloger"; -$a->strings["Return to file list"] = "Återgå till fillistan"; -$a->strings["Copy/paste this code to attach file to a post"] = "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida"; -$a->strings["Help:"] = "Hjälp:"; -$a->strings["Not Found"] = "Hittas inte"; -$a->strings["network"] = "nätverk"; -$a->strings["No potential page delegates located."] = "Inga potentiella sid-ombud funna."; -$a->strings["Delegate Page Management"] = "Delegera sidhantering"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på."; -$a->strings["Existing Page Managers"] = "Befintliga sid-ansvariga"; -$a->strings["Existing Page Delegates"] = "Befintliga sid-ombud"; -$a->strings["Potential Delegates"] = "Potentiella ombud"; -$a->strings["Remove"] = "Ta bort"; -$a->strings["Add"] = "Lägg till"; -$a->strings["No entries."] = "Inga poster."; -$a->strings["Channel added."] = "Kanal tillagd."; -$a->strings["Collection created."] = "Krets skapad."; -$a->strings["Could not create collection."] = "Kunde inte skapa krets."; -$a->strings["Collection updated."] = "Kretsen uppdaterad."; -$a->strings["Create a collection of channels."] = "Skapa en krets av kanaler."; -$a->strings["Collection Name: "] = "Namn på krets: "; -$a->strings["Members are visible to other channels"] = "Medlemmar kan ses av andra kanaler"; -$a->strings["Collection removed."] = "Krets borttagen."; -$a->strings["Unable to remove collection."] = "Kunde inte ta bort krets."; -$a->strings["Collection Editor"] = "Redigera krets"; -$a->strings["Members"] = "Medlemmar"; -$a->strings["All Connected Channels"] = "Alla anslutna kanaler"; -$a->strings["Click on a channel to add or remove."] = "Klicka på en kanal för att lägga till eller ta bort."; -$a->strings["Red Matrix - "The Network""] = "Red Matrix - "Nätverket""; -$a->strings["Welcome to %s"] = "Välkommen till %s"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar."; -$a->strings["Your service plan only allows %d channels."] = "Din tjänstenivå tillåter bara %d kanaler."; -$a->strings["Nothing to import."] = "Inget att importera."; -$a->strings["Unable to download data from old server"] = "Kunde inte ladda ner data från den gamla servern"; -$a->strings["Imported file is empty."] = "Den importerade filen är tom."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades."; -$a->strings["Channel clone failed. Import failed."] = "Kloning av kanalen misslyckades. Import misslyckades."; -$a->strings["Cloned channel not found. Import failed."] = "Den klonade kanalen hittas inte. Import misslyckades."; -$a->strings["Import completed."] = "Import slutförd."; -$a->strings["You must be logged in to use this feature."] = "Du måste vara inloggad för att kunna använda den här funktionen."; -$a->strings["Import Channel"] = "Importera kanal"; -$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte."; -$a->strings["File to Upload"] = "Fil att ladda upp"; -$a->strings["Or provide the old server/hub details"] = "Eller ge uppgifter om den gamla servern/hubben"; -$a->strings["Your old identity address (xyz@example.com)"] = "Din gamla identitetsadress (xyz@example.com)"; -$a->strings["Your old login email address"] = "Din gamla e-postadress för inloggning"; -$a->strings["Your old login password"] = "Ditt gamla inloggningslösenord"; -$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media."; -$a->strings["Make this hub my primary location"] = "Gör den här hubben till min primära plats"; -$a->strings["Import existing posts if possible"] = "Importera befintliga inlägg om möjligt"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s taggade%2\$ss %3\$s med %4\$s"; $a->strings["Tag removed"] = "Tagg borttagen"; $a->strings["Remove Item Tag"] = "Ta bort innehållstagg"; $a->strings["Select a tag to remove: "] = "Välj en tagg att ta bort: "; @@ -1582,7 +1650,6 @@ $a->strings["Pending registrations"] = "Pågående registreringar"; $a->strings["Version"] = "Version"; $a->strings["Active plugins"] = "Aktiva tillägg"; $a->strings["Site settings updated."] = "Serverinställningar uppdaterade."; -$a->strings["mobile"] = "mobilt"; $a->strings["experimental"] = "experimentellt"; $a->strings["unsupported"] = "stöds ej"; $a->strings["Yes - with approval"] = "Ja - med godkännande"; @@ -1719,78 +1786,12 @@ $a->strings["Help text"] = "Hjälptext"; $a->strings["Additional info (optional)"] = "Ytterligare info (frivilligt)"; $a->strings["Field definition not found"] = "Fältdefinition hittades inte"; $a->strings["Edit Profile Field"] = "Redigera profilfält"; -$a->strings["Location not found."] = "Platsen hittades inte."; -$a->strings["Primary location cannot be removed."] = "Huvudplatsen kan inte tas bort."; -$a->strings["No locations found."] = "Inga platser hittades."; -$a->strings["Manage Channel Locations"] = "Hantera kanalplatser"; -$a->strings["Location (address)"] = "Plats (adress)"; -$a->strings["Primary Location"] = "Huvudplats"; -$a->strings["Drop location"] = "Ta bort plats"; -$a->strings["Unable to lookup recipient."] = "Kunde inte hitta mottagare."; -$a->strings["Unable to communicate with requested channel."] = "Kunde inte kommunicera med den begärda kanalen."; -$a->strings["Cannot verify requested channel."] = "Kan inte bekräfta den begärda kanalen."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka."; -$a->strings["Message deleted."] = "Meddelande borttaget."; -$a->strings["Message recalled."] = "Meddelande återkallat."; -$a->strings["Send Private Message"] = "Skicka privat meddelande."; -$a->strings["To:"] = "Till:"; -$a->strings["Subject:"] = "Ämne:"; -$a->strings["Your message:"] = "Ditt meddelande:"; -$a->strings["Send"] = "Skicka"; -$a->strings["Message not found."] = "Meddelandet hittades inte."; -$a->strings["Delete message"] = "Ta bort meddelande"; -$a->strings["Recall message"] = "Återkalla meddelande"; -$a->strings["Message has been recalled."] = "Meddelandet har återkallats."; -$a->strings["Private Conversation"] = "Privat konversation"; -$a->strings["Delete conversation"] = "Ta bort konversation"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida."; -$a->strings["Send Reply"] = "Skicka svar"; -$a->strings["Total invitation limit exceeded."] = "Gränsen för totalt antal inbjudningar överskriden."; -$a->strings["%s : Not a valid email address."] = "%s: Inte en giltig e-postadress."; -$a->strings["Please join us on Red"] = "Gå med oss i Red"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Inbjudningsgränsen överskriden. Kontakta din serveradministratör."; -$a->strings["%s : Message delivery failed."] = "%s : Leverans av meddelande misslyckades."; -$a->strings["%d message sent."] = array( - 0 => "%d meddelande sänt.", - 1 => "%d meddelanden sända.", -); -$a->strings["You have no more invitations available"] = "Du har inga fler inbjudningar kvar"; -$a->strings["Send invitations"] = "Skicka inbjudan"; -$a->strings["Enter email addresses, one per line:"] = "Ange e-postadresser, en per rad:"; -$a->strings["Please join my community on RedMatrix."] = "Gå med mig i gemenskapen på RedMatrix."; -$a->strings["You will need to supply this invitation code: "] = "Du kommer att behöva den här inbjudningskoden: "; -$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Skapa konto på en RedMatrix-server (alla är ihopkopplade)"; -$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Ange min RedMatrix-adress i webbplatsens sökruta."; -$a->strings["or visit "] = "eller besök "; -$a->strings["3. Click [Connect]"] = "3. Klicka [Ta kontakt]"; $a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har skapat %1$.0f av %2$.0f tillåtna kanaler."; $a->strings["Create a new channel"] = "Skapa en ny kanal"; $a->strings["Current Channel"] = "Nuvarande kanal"; $a->strings["Attach to one of your channels by selecting it."] = "Anslut till en av dina kanaler genom att välja den."; $a->strings["Default Channel"] = "Standardkanal"; $a->strings["Make Default"] = "Gör till standard"; -$a->strings["[Embedded content - reload page to view]"] = "[Inbäddat innehåll - ladda om sidan för att visa]"; -$a->strings["Help with this feature"] = "Hjälp för den här funktionen"; -$a->strings["Layout Name"] = "Layoutnamn"; -$a->strings["Remote privacy information not available."] = "Icke-lokal integritetsinformation är inte tillgänglig"; -$a->strings["Visible to:"] = "Kan ses av:"; -$a->strings["No connections."] = "Inga kontakter."; -$a->strings["Visit %s's profile [%s]"] = "Besök %ss profil [%s]"; -$a->strings["View Connnections"] = "Visa kontakter"; -$a->strings["Hub not found."] = "Hubb hittades inte."; -$a->strings["Total votes"] = "Totalt antal röster"; -$a->strings["Average Rating"] = "Genomsnittsbetyg"; -$a->strings["No such group"] = "Ingen sådan grupp"; -$a->strings["Search Results For:"] = "Sökresultat för:"; -$a->strings["Collection is empty"] = "Kretsen är tom"; -$a->strings["Collection: "] = "Krets: "; -$a->strings["Connection: "] = "Kontakt:"; -$a->strings["Invalid connection."] = "Ogiltig kontakt."; -$a->strings["Wall Photos"] = "Väggfoton"; -$a->strings["Profile Match"] = "Profilträff"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil."; -$a->strings["is interested in:"] = "är intresserad av:"; -$a->strings["No matches"] = "Inga träffar"; $a->strings["Menu updated."] = "Meny uppdaterad."; $a->strings["Unable to update menu."] = "Kunde inte uppdatera meny."; $a->strings["Menu created."] = "Meny skapad."; @@ -1813,6 +1814,50 @@ $a->strings["Menu deleted."] = "Meny borttagen."; $a->strings["Menu could not be deleted."] = "Menyn kunde inte tas bort."; $a->strings["Edit Menu"] = "Redigera meny"; $a->strings["Add or remove entries to this menu"] = "Lägg till eller ta bort menyval"; +$a->strings["Total invitation limit exceeded."] = "Gränsen för totalt antal inbjudningar överskriden."; +$a->strings["%s : Not a valid email address."] = "%s: Inte en giltig e-postadress."; +$a->strings["Please join us on Red"] = "Gå med oss i Red"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Inbjudningsgränsen överskriden. Kontakta din serveradministratör."; +$a->strings["%s : Message delivery failed."] = "%s : Leverans av meddelande misslyckades."; +$a->strings["%d message sent."] = array( + 0 => "%d meddelande sänt.", + 1 => "%d meddelanden sända.", +); +$a->strings["You have no more invitations available"] = "Du har inga fler inbjudningar kvar"; +$a->strings["Send invitations"] = "Skicka inbjudan"; +$a->strings["Enter email addresses, one per line:"] = "Ange e-postadresser, en per rad:"; +$a->strings["Please join my community on RedMatrix."] = "Gå med mig i gemenskapen på RedMatrix."; +$a->strings["You will need to supply this invitation code: "] = "Du kommer att behöva den här inbjudningskoden: "; +$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Skapa konto på en RedMatrix-server (alla är ihopkopplade)"; +$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Ange min RedMatrix-adress i webbplatsens sökruta."; +$a->strings["or visit "] = "eller besök "; +$a->strings["3. Click [Connect]"] = "3. Klicka [Ta kontakt]"; +$a->strings["No such group"] = "Ingen sådan grupp"; +$a->strings["Search Results For:"] = "Sökresultat för:"; +$a->strings["Collection is empty"] = "Kretsen är tom"; +$a->strings["Collection: "] = "Krets: "; +$a->strings["Connection: "] = "Kontakt:"; +$a->strings["Invalid connection."] = "Ogiltig kontakt."; +$a->strings["Invalid request identifier."] = "Ogiltigt ID på förfrågan."; +$a->strings["Discard"] = "Förkasta"; +$a->strings["No more system notifications."] = "Inga fler systemnotifieringar."; +$a->strings["System Notifications"] = "Systemnotifieringar"; +$a->strings["[Embedded content - reload page to view]"] = "[Inbäddat innehåll - ladda om sidan för att visa]"; +$a->strings["Remote privacy information not available."] = "Icke-lokal integritetsinformation är inte tillgänglig"; +$a->strings["Visible to:"] = "Kan ses av:"; +$a->strings["No connections."] = "Inga kontakter."; +$a->strings["Visit %s's profile [%s]"] = "Besök %ss profil [%s]"; +$a->strings["View Connnections"] = "Visa kontakter"; +$a->strings["Hub not found."] = "Hubb hittades inte."; +$a->strings["Total votes"] = "Totalt antal röster"; +$a->strings["Average Rating"] = "Genomsnittsbetyg"; +$a->strings["OpenID protocol error. No ID returned."] = "Protokollfel för OpenID. Inget ID returnerades."; +$a->strings["Welcome %s. Remote authentication successful."] = "Välkommen %s. Fjärrinloggning lyckades."; +$a->strings["Wall Photos"] = "Väggfoton"; +$a->strings["Profile Match"] = "Profilträff"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil."; +$a->strings["is interested in:"] = "är intresserad av:"; +$a->strings["No matches"] = "Inga träffar"; $a->strings["Conversation removed."] = "Konversation borttagen."; $a->strings["No messages."] = "Inga meddelanden."; $a->strings["D, d M Y - g:i A"] = "D, j M Y - H:i"; @@ -1823,11 +1868,9 @@ $a->strings["Choose a short nickname"] = "Välj ett kort smeknamn"; $a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Ditt smeknamn används för att skapa en kanaladress som är lätt att komma ihåg (som en e-postadress) som du kan dela med andra."; $a->strings["Or import an existing channel from another location"] = "Eller importera en befintlig kanal från en annan plats"; $a->strings["Channel Type"] = "Kanaltyp"; +$a->strings["?"] = "?"; +$a->strings["What is this?"] = "Vad är detta?"; $a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Välj en kanaltyp (som till exempel socialt nätverkande eller gemenskapsforum) och integritetskrav, så kan vi välja de bästa behörigheterna åt dig"; -$a->strings["Invalid request identifier."] = "Ogiltigt ID på förfrågan."; -$a->strings["Discard"] = "Förkasta"; -$a->strings["No more system notifications."] = "Inga fler systemnotifieringar."; -$a->strings["System Notifications"] = "Systemnotifieringar"; $a->strings["Xchan Lookup"] = "Xchan-sökning"; $a->strings["Lookup xchan beginning with (or webbie): "] = "Sök efter xchan som börjar med (eller webbie): "; $a->strings["invalid target signature"] = "ogiltig målsignatur"; @@ -1844,42 +1887,7 @@ $a->strings["Finding:"] = "Sökning efter:"; $a->strings["next page"] = "nästa sida"; $a->strings["previous page"] = "föregående sida"; $a->strings["No entries (some entries may be hidden)."] = "Inga resultat (vissa resultat kan vara dolda)."; -$a->strings["Page owner information could not be retrieved."] = "Information om sidans ägare kunde inte hittas."; -$a->strings["Album not found."] = "Albumet hittades inte."; -$a->strings["Delete Album"] = "Ta bort album"; -$a->strings["Delete Photo"] = "Ta bort foto"; -$a->strings["No photos selected"] = "Inga foton valda"; -$a->strings["Access to this item is restricted."] = "Åtkomst till den här posten är begränsat."; -$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB fotolagring använt."; -$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB fotolagring använt."; -$a->strings["Upload Photos"] = "Ladda upp foton"; -$a->strings["Enter a new album name"] = "Ange ett nytt albumnamn"; -$a->strings["or select an existing one (doubleclick)"] = "eller välj ett befintligt (dubbelklicka)"; -$a->strings["Do not show a status post for this upload"] = "Visa inte en statusuppdatering för den här uppladdningen"; -$a->strings["Album name could not be decoded"] = "Albumnamn kunde inte tolkas"; -$a->strings["Contact Photos"] = "Kontaktfoton"; -$a->strings["Show Newest First"] = "Visa nyast först"; -$a->strings["Show Oldest First"] = "Visa äldst först"; -$a->strings["View Photo"] = "Visa foto"; -$a->strings["Edit Album"] = "Redigera album"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Behörighet saknas. Åtkomst till den här posten kan vara begränsat."; -$a->strings["Photo not available"] = "Foto inte tillgängligt"; -$a->strings["Use as profile photo"] = "Använd som profilfoto"; -$a->strings["Private Photo"] = "Privat foto"; -$a->strings["View Full Size"] = "Visa fullstorlek"; -$a->strings["Edit photo"] = "Redigera foto"; -$a->strings["Rotate CW (right)"] = "Rotera medurs (höger)"; -$a->strings["Rotate CCW (left)"] = "Rotera moturs (vänster)"; -$a->strings["Caption"] = "Bildtext"; -$a->strings["Add a Tag"] = "Lägg till en tagg"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exempel: @bob, @Barbara_Jensen, @jim@example.com"; -$a->strings["Flag as adult in album view"] = "Flagga som olämpligt för barn i albumvyn"; -$a->strings["In This Photo:"] = "På fotot:"; -$a->strings["View Album"] = "Visa album"; -$a->strings["Recent Photos"] = "Nya foton"; -$a->strings["sent you a private message"] = "skickade ett privat meddelande till dig"; -$a->strings["added your channel"] = "lade till din kanal"; -$a->strings["posted an event"] = "skapade en händelse"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjärrinloggning blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen."; $a->strings["App installed."] = "App installerad."; $a->strings["Malformed app."] = "Felaktig app."; $a->strings["Embed code"] = "Bädda in kod";