From d94e61a7b627381715751fb6cb6c0cecf7ece3f9 Mon Sep 17 00:00:00 2001 From: Template builder Date: Sun, 5 Jul 2015 16:27:08 -0400 Subject: Creating template --- .openshift/README.md | 5 + .openshift/action_hooks/README.md | 3 + .openshift/cron/README.cron | 27 ++++ .openshift/cron/daily/.gitignore | 0 .openshift/cron/hourly/.gitignore | 0 .openshift/cron/minutely/.gitignore | 0 .openshift/cron/monthly/.gitignore | 0 .openshift/cron/weekly/README | 16 +++ .openshift/cron/weekly/chrono.dat | 1 + .openshift/cron/weekly/chronograph | 3 + .openshift/cron/weekly/jobs.allow | 12 ++ .openshift/cron/weekly/jobs.deny | 7 + .openshift/markers/README.md | 4 + .openshift/pear.txt | 0 index.php | 274 ++++++++++++++++++++++++++++++++++++ 15 files changed, 352 insertions(+) create mode 100644 .openshift/README.md create mode 100644 .openshift/action_hooks/README.md create mode 100644 .openshift/cron/README.cron create mode 100644 .openshift/cron/daily/.gitignore create mode 100644 .openshift/cron/hourly/.gitignore create mode 100644 .openshift/cron/minutely/.gitignore create mode 100644 .openshift/cron/monthly/.gitignore create mode 100644 .openshift/cron/weekly/README create mode 100644 .openshift/cron/weekly/chrono.dat create mode 100755 .openshift/cron/weekly/chronograph create mode 100644 .openshift/cron/weekly/jobs.allow create mode 100644 .openshift/cron/weekly/jobs.deny create mode 100644 .openshift/markers/README.md create mode 100644 .openshift/pear.txt create mode 100644 index.php diff --git a/.openshift/README.md b/.openshift/README.md new file mode 100644 index 000000000..68061ca57 --- /dev/null +++ b/.openshift/README.md @@ -0,0 +1,5 @@ +The OpenShift `php` cartridge documentation can be found at: +http://openshift.github.io/documentation/oo_cartridge_guide.html#php + +For information about .openshift directory, consult the documentation: +http://openshift.github.io/documentation/oo_user_guide.html#the-openshift-directory diff --git a/.openshift/action_hooks/README.md b/.openshift/action_hooks/README.md new file mode 100644 index 000000000..541319581 --- /dev/null +++ b/.openshift/action_hooks/README.md @@ -0,0 +1,3 @@ +For information about action hooks, consult the documentation: + +http://openshift.github.io/documentation/oo_user_guide.html#action-hooks diff --git a/.openshift/cron/README.cron b/.openshift/cron/README.cron new file mode 100644 index 000000000..ac77f7872 --- /dev/null +++ b/.openshift/cron/README.cron @@ -0,0 +1,27 @@ +Run scripts or jobs on a periodic basis +======================================= +Any scripts or jobs added to the minutely, hourly, daily, weekly or monthly +directories will be run on a scheduled basis (frequency is as indicated by the +name of the directory) using run-parts. + +run-parts ignores any files that are hidden or dotfiles (.*) or backup +files (*~ or *,) or named *.{rpmsave,rpmorig,rpmnew,swp,cfsaved} + +The presence of two specially named files jobs.deny and jobs.allow controls +how run-parts executes your scripts/jobs. + jobs.deny ===> Prevents specific scripts or jobs from being executed. + jobs.allow ===> Only execute the named scripts or jobs (all other/non-named + scripts that exist in this directory are ignored). + +The principles of jobs.deny and jobs.allow are the same as those of cron.deny +and cron.allow and are described in detail at: + http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/ch-Automating_System_Tasks.html#s2-autotasks-cron-access + +See: man crontab or above link for more details and see the the weekly/ + directory for an example. + +PLEASE NOTE: The Cron cartridge must be installed in order to run the configured jobs. + +For more information about cron, consult the documentation: +http://openshift.github.io/documentation/oo_cartridge_guide.html#cron +http://openshift.github.io/documentation/oo_user_guide.html#cron diff --git a/.openshift/cron/daily/.gitignore b/.openshift/cron/daily/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/.openshift/cron/hourly/.gitignore b/.openshift/cron/hourly/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/.openshift/cron/minutely/.gitignore b/.openshift/cron/minutely/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/.openshift/cron/monthly/.gitignore b/.openshift/cron/monthly/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/.openshift/cron/weekly/README b/.openshift/cron/weekly/README new file mode 100644 index 000000000..7c3e659fe --- /dev/null +++ b/.openshift/cron/weekly/README @@ -0,0 +1,16 @@ +Run scripts or jobs on a weekly basis +===================================== +Any scripts or jobs added to this directory will be run on a scheduled basis +(weekly) using run-parts. + +run-parts ignores any files that are hidden or dotfiles (.*) or backup +files (*~ or *,) or named *.{rpmsave,rpmorig,rpmnew,swp,cfsaved} and handles +the files named jobs.deny and jobs.allow specially. + +In this specific example, the chronograph script is the only script or job file +executed on a weekly basis (due to white-listing it in jobs.allow). And the +README and chrono.dat file are ignored either as a result of being black-listed +in jobs.deny or because they are NOT white-listed in the jobs.allow file. + +For more details, please see ../README.cron file. + diff --git a/.openshift/cron/weekly/chrono.dat b/.openshift/cron/weekly/chrono.dat new file mode 100644 index 000000000..fc4abb87c --- /dev/null +++ b/.openshift/cron/weekly/chrono.dat @@ -0,0 +1 @@ +Time And Relative D...n In Execution (Open)Shift! diff --git a/.openshift/cron/weekly/chronograph b/.openshift/cron/weekly/chronograph new file mode 100755 index 000000000..61de949f4 --- /dev/null +++ b/.openshift/cron/weekly/chronograph @@ -0,0 +1,3 @@ +#!/bin/bash + +echo "`date`: `cat $(dirname \"$0\")/chrono.dat`" diff --git a/.openshift/cron/weekly/jobs.allow b/.openshift/cron/weekly/jobs.allow new file mode 100644 index 000000000..8d32abc70 --- /dev/null +++ b/.openshift/cron/weekly/jobs.allow @@ -0,0 +1,12 @@ +# +# Script or job files listed in here (one entry per line) will be +# executed on a weekly-basis. +# +# Example: The chronograph script will be executed weekly but the README +# and chrono.dat files in this directory will be ignored. +# +# The README file is actually ignored due to the entry in the +# jobs.deny which is checked before jobs.allow (this file). +# +chronograph + diff --git a/.openshift/cron/weekly/jobs.deny b/.openshift/cron/weekly/jobs.deny new file mode 100644 index 000000000..73c945008 --- /dev/null +++ b/.openshift/cron/weekly/jobs.deny @@ -0,0 +1,7 @@ +# +# Any script or job files listed in here (one entry per line) will NOT be +# executed (read as ignored by run-parts). +# + +README + diff --git a/.openshift/markers/README.md b/.openshift/markers/README.md new file mode 100644 index 000000000..8daca526c --- /dev/null +++ b/.openshift/markers/README.md @@ -0,0 +1,4 @@ +For information about markers, consult the documentation: + +http://openshift.github.io/documentation/oo_user_guide.html#markers +http://openshift.github.io/documentation/oo_cartridge_guide.html#php-markers diff --git a/.openshift/pear.txt b/.openshift/pear.txt new file mode 100644 index 000000000..e69de29bb diff --git a/index.php b/index.php new file mode 100644 index 000000000..258a6ce31 --- /dev/null +++ b/index.php @@ -0,0 +1,274 @@ + + + + + + Welcome to OpenShift + + + + + + +
+
+

Welcome to your PHP application on OpenShift

+
+ + +
+
+
+

Deploying code changes

+

OpenShift uses the Git version control system for your source code, and grants you access to it via the Secure Shell (SSH) protocol. In order to upload and download code to your application you need to give us your public SSH key. You can upload it within the web console or install the RHC command line tool and run rhc setup to generate and upload your key automatically.

+ +

Working in your local Git repository

+

If you created your application from the command line and uploaded your SSH key, rhc will automatically download a copy of that source code repository (Git calls this 'cloning') to your local system.

+ +

If you created the application from the web console, you'll need to manually clone the repository to your local system. Copy the application's source code Git URL and then run:

+ +
$ git clone <git_url> <directory_to_create>
+
+# Within your project directory
+# Commit your changes and push to OpenShift
+
+$ git commit -a -m 'Some commit message'
+$ git push
+ + + +
+ +
+
+ +

Managing your application

+ +

Web Console

+

You can use the OpenShift web console to enable additional capabilities via cartridges, add collaborator access authorizations, designate custom domain aliases, and manage domain memberships.

+ +

Command Line Tools

+

Installing the OpenShift RHC client tools allows you complete control of your cloud environment. Read more on how to manage your application from the command line in our User Guide. +

+ +

Development Resources

+ + + +
+
+ + +
+ +
+
+ + + -- cgit v1.2.3 From b51bcba26398a90f9d29d7ced2615a88040a6aac Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Sun, 5 Jul 2015 23:38:10 +0200 Subject: Added cron script to exexute poller every 5 minutes --- .openshift/cron/minutely/poller | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 .openshift/cron/minutely/poller diff --git a/.openshift/cron/minutely/poller b/.openshift/cron/minutely/poller new file mode 100755 index 000000000..e1ebdb751 --- /dev/null +++ b/.openshift/cron/minutely/poller @@ -0,0 +1,10 @@ +#!/bin/bash +if [ ! -f $OPENSHIFT_DATA_DIR/last_run ]; then + touch $OPENSHIFT_DATA_DIR/last_run +fi +if [[ $(find $OPENSHIFT_DATA_DIR/last_run -mmin +4) ]]; then #run every 5 mins + rm -f $OPENSHIFT_DATA_DIR/last_run + touch $OPENSHIFT_DATA_DIR/last_run + # The command(s) that you want to run every 5 minutes +cd /var/lib/openshift/55999305e0b8cd838f000053/app-root/repo; /opt/rh/php54/root/usr/bin/php include/poller.php +fi -- cgit v1.2.3 From 2b1e6723168665039cdccb951e29c4220351367a Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Mon, 3 Aug 2015 22:29:22 +0200 Subject: Hubzilla addons added --- zot | 1 + 1 file changed, 1 insertion(+) create mode 160000 zot diff --git a/zot b/zot new file mode 160000 index 000000000..d94e61a7b --- /dev/null +++ b/zot @@ -0,0 +1 @@ +Subproject commit d94e61a7b627381715751fb6cb6c0cecf7ece3f9 -- cgit v1.2.3 From fad9594b31629c697bf7ddab9e01d92f4868e605 Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Tue, 1 Sep 2015 18:44:37 +0200 Subject: Added openshift-hubzilla-deploy to .openshift/action_hooks/deploy --- .openshift/action_hooks/deploy | 110 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100755 .openshift/action_hooks/deploy diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy new file mode 100755 index 000000000..b7f095ccd --- /dev/null +++ b/.openshift/action_hooks/deploy @@ -0,0 +1,110 @@ +#!/bin/bash +# This deploy hook gets executed after dependencies are resolved and the +# build hook has been run but before the application has been started back +# up again. This script gets executed directly, so it could be python, php, +# ruby, etc. + +# Bash help: http://www.panix.com/~elflord/unix/bash-tute.html + +# For information about action hooks supported by OpenShift, consult the documentation: +# http://openshift.github.io/documentation/oo_user_guide.html#the-openshift-directory + +#### + +# Hubzilla specific deploy script + +# Place this file in /.openshift/action_hooks/ (The .openshift folder will be in the root of your repo) +# The file name should be "deploy" such that you have: +# .openshift/action_hooks/deploy + +# Conventions: Vars in curley braces have the slash after implied so no need to add it. +# e.g. ${OPENSHIFT_REPO_DIR}php/foobar = /repo/php/foobar +# See all OpenShift vars here: +# https://www.openshift.com/developers/openshift-environment-variables + +# HME - NOTE - leftover from original openshift-drupal-deploy +# In config.php you can leverage the enviroment variables like this: +# // Define env vars. +# if (array_key_exists('OPENSHIFT_APP_NAME', $_SERVER)) { +# $src = $_SERVER; +# } else { +# $src = $_ENV; +# } +# +# $conf["file_private_path"] = $src['OPENSHIFT_DATA_DIR'] . "private"; +# $conf["file_temporary_path"] = $src['OPENSHIFT_DATA_DIR'] . "tmp"; + + +#### + +# Start Deploy + +echo "Starting Deploy..." + +# Let's create the Hubzilla files directory in the Openshift data folder ($OPENSHIFT_DATA_DIR). + +echo "Check for the files directory called store, if not created - create it" + +if [ ! -d ${OPENSHIFT_DATA_DIR}store ]; then +mkdir -p ${OPENSHIFT_DATA_DIR}"store/[data]/smarty3" +echo "Done creating files directory" + +else + +echo "The files directory called store already exists" + +fi + +#### + +# Set permissions on the files directory. + +echo "Now chmod 777 -R files" + +chmod -R 777 ${OPENSHIFT_DATA_DIR}store + +echo "chmod done, permissions set to 777" + +#### + +# Symlink our files folder to the repo. + +# Note the "php" directory below seems to be the best way to serve OpenShift files. +# This is good as that allows us for directories one level above such as tmp and private + +echo "Create sym links for writeable directories" + +ln -sf ${OPENSHIFT_DATA_DIR}store ${OPENSHIFT_REPO_DIR}store + +echo "Files sym links created" + +#### + +# Copy config.php from the repo, rename it and place it in the data directory. +# if it's there already, skip it. + +if [ ! -f ${OPENSHIFT_DATA_DIR}config.php ]; + +then + +cp ${OPENSHIFT_REPO_DIR}config.php ${OPENSHIFT_DATA_DIR}config.php + +echo "config.php copied." + +else + +echo "Looks like the config.php file is already there, we won't overwrite it." + +fi + +#### + +# symlink the config.php file. + +echo "Create sym link for config.php" + +ln -sf ${OPENSHIFT_DATA_DIR}config.php ${OPENSHIFT_REPO_DIR}config.php + +echo "config.php symlink created" + +#### -- cgit v1.2.3 From 5cb2fa598172e8848cdb2b9f0101bff7ac97a1e1 Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Tue, 1 Sep 2015 19:25:41 +0200 Subject: Fixed deploy script --- .openshift/action_hooks/deploy | 45 ++++++++++++++++++++++++++++++++++-------- 1 file changed, 37 insertions(+), 8 deletions(-) diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy index b7f095ccd..fb3136f32 100755 --- a/.openshift/action_hooks/deploy +++ b/.openshift/action_hooks/deploy @@ -80,31 +80,60 @@ echo "Files sym links created" #### -# Copy config.php from the repo, rename it and place it in the data directory. +# Copy .htconfig.php from the repo, rename it and place it in the data directory. # if it's there already, skip it. if [ ! -f ${OPENSHIFT_DATA_DIR}config.php ]; then -cp ${OPENSHIFT_REPO_DIR}config.php ${OPENSHIFT_DATA_DIR}config.php +cp ${OPENSHIFT_REPO_DIR}.htconfig.php ${OPENSHIFT_DATA_DIR}.htconfig.php -echo "config.php copied." +echo ".htconfig.php copied." else -echo "Looks like the config.php file is already there, we won't overwrite it." +echo "Looks like the .htconfig.php file is already there, we won't overwrite it." fi #### -# symlink the config.php file. +# symlink the .htconfig.php file. -echo "Create sym link for config.php" +echo "Create sym link for .htconfig.php" -ln -sf ${OPENSHIFT_DATA_DIR}config.php ${OPENSHIFT_REPO_DIR}config.php +ln -sf ${OPENSHIFT_DATA_DIR}.htconfig.php ${OPENSHIFT_REPO_DIR}.htconfig.php -echo "config.php symlink created" +echo ".htconfig.php symlink created" #### +# Copy .htaccess from the repo, rename it and place it in the data directory. +# if it's there already, skip it. + +if [ ! -f ${OPENSHIFT_DATA_DIR}.htaccess ]; + +then + +cp ${OPENSHIFT_REPO_DIR}.htaccess ${OPENSHIFT_DATA_DIR}.htaccess + +echo ".htaccess copied." + +else + +echo "Looks like the .htaccess file is already there, we won't overwrite it." + +fi + +#### + +# symlink the .htaccess file. + +echo "Create sym link for .htaccess" + +ln -sf ${OPENSHIFT_DATA_DIR}.htaccess ${OPENSHIFT_REPO_DIR}.htaccess + +echo ".htaccess symlink created" + +#### + -- cgit v1.2.3 From 365d690d7d32926b1fb4b1e4b7150dce70343f38 Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Tue, 1 Sep 2015 20:46:14 +0200 Subject: Fix filename --- .openshift/action_hooks/deploy | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy index fb3136f32..51e0f6d94 100755 --- a/.openshift/action_hooks/deploy +++ b/.openshift/action_hooks/deploy @@ -83,7 +83,7 @@ echo "Files sym links created" # Copy .htconfig.php from the repo, rename it and place it in the data directory. # if it's there already, skip it. -if [ ! -f ${OPENSHIFT_DATA_DIR}config.php ]; +if [ ! -f ${OPENSHIFT_DATA_DIR}.htconfig.php ]; then @@ -136,4 +136,3 @@ ln -sf ${OPENSHIFT_DATA_DIR}.htaccess ${OPENSHIFT_REPO_DIR}.htaccess echo ".htaccess symlink created" #### - -- cgit v1.2.3 From d376d2a5908241082f2e91349c9100d41054f5d0 Mon Sep 17 00:00:00 2001 From: zottel Date: Wed, 2 Sep 2015 15:46:31 +0200 Subject: really fix post filtering --- include/zot.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/zot.php b/include/zot.php index 16336ad54..fb82c4873 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1638,9 +1638,10 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ } - $ab = q("select abook.* from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d - and abook_self = 0", - intval($channel['channel_id']) + $ab = q("select * from abook where abook_channel = %d + and abook_xchan = '%s'", + intval($channel['channel_id']), + $arr['owner_xchan'] ); $abook = (($ab) ? $ab[0] : null); -- cgit v1.2.3 From 1a05696a84808a7877fe52846110da77ef245c47 Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Fri, 4 Sep 2015 20:05:15 +0200 Subject: Updating OpenShift deploy script --- .openshift/action_hooks/deploy | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy index 51e0f6d94..688871d72 100755 --- a/.openshift/action_hooks/deploy +++ b/.openshift/action_hooks/deploy @@ -136,3 +136,27 @@ ln -sf ${OPENSHIFT_DATA_DIR}.htaccess ${OPENSHIFT_REPO_DIR}.htaccess echo ".htaccess symlink created" #### + +echo "Check for the poller at .openshift/cron/minutely/poller , if not created - create it" + +if [ ! -f ${OPENSHIFT_REPO_DIR}.openshift/cron/minutely/poller ]; then +printf '%s\n' '#!/bin/bash' 'if [ ! -f $OPENSHIFT_DATA_DIR/last_run ]; then' ' touch $OPENSHIFT_DATA_DIR/last_run' 'fi' 'if [[ $(find $OPENSHIFT_DATA_DIR/last_run -mmin +4) ]]; then #run every 5 mins' ' rm -f $OPENSHIFT_DATA_DIR/last_run' ' touch $OPENSHIFT_DATA_DIR/last_run' ' # The command(s) that you want to run every 5 minutes' 'cd /var/lib/openshift/${OPENSHIFT_APP_UUID}/app-root/repo; /opt/rh/php54/root/usr/bin/php include/poller.php' 'fi' >${OPENSHIFT_REPO_DIR}.openshift/cron/minutely/poller +echo "Done creating file .openshift/cron/minutely/poller" + +else + +echo "The poller already exists" + +fi + +#### + +# Set permissions on the poller script to make it executable. + +echo "Now chmod 777 -R poller" + +chmod -R 777 ${OPENSHIFT_REPO}.openshift/cron/minutely/poller + +echo "chmod done, permissions set to 777 on poller script." + +#### -- cgit v1.2.3 From 2f73d24ab134391c3b3a69d5cbfede42e028b5ed Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Fri, 4 Sep 2015 21:42:27 +0200 Subject: Removed old poller --- .openshift/cron/minutely/poller | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100755 .openshift/cron/minutely/poller diff --git a/.openshift/cron/minutely/poller b/.openshift/cron/minutely/poller deleted file mode 100755 index e1ebdb751..000000000 --- a/.openshift/cron/minutely/poller +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -if [ ! -f $OPENSHIFT_DATA_DIR/last_run ]; then - touch $OPENSHIFT_DATA_DIR/last_run -fi -if [[ $(find $OPENSHIFT_DATA_DIR/last_run -mmin +4) ]]; then #run every 5 mins - rm -f $OPENSHIFT_DATA_DIR/last_run - touch $OPENSHIFT_DATA_DIR/last_run - # The command(s) that you want to run every 5 minutes -cd /var/lib/openshift/55999305e0b8cd838f000053/app-root/repo; /opt/rh/php54/root/usr/bin/php include/poller.php -fi -- cgit v1.2.3 From 438cb1d7e0f1518dd35a3a377dfd9a9fd885f80c Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Fri, 18 Sep 2015 18:51:03 +0200 Subject: Added hot_deploy to deploy script --- .openshift/action_hooks/deploy | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy index 688871d72..d6ba6940d 100755 --- a/.openshift/action_hooks/deploy +++ b/.openshift/action_hooks/deploy @@ -160,3 +160,19 @@ chmod -R 777 ${OPENSHIFT_REPO}.openshift/cron/minutely/poller echo "chmod done, permissions set to 777 on poller script." #### + +echo "Check for the hot deploy marker at .openshift/markers/hot_deploy , if not created - create it" + +if [ ! -f ${OPENSHIFT_REPO_DIR}.openshift/markers/hot_deploy ]; then + +touch ${OPENSHIFT_REPO_DIR}.openshift/markers/hot_deploy + +echo "Done creating file .openshift/cron/minutely/poller" + +else + +echo "The hot deploy marker already exists" + +fi + +#### -- cgit v1.2.3 From 525a0478b00cbfde53fa8d7a91c04c92cb85e8b5 Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Fri, 18 Sep 2015 18:55:56 +0200 Subject: Added hot_deploy to deploy script - fixed echo --- .openshift/action_hooks/deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy index d6ba6940d..29b3ab9c7 100755 --- a/.openshift/action_hooks/deploy +++ b/.openshift/action_hooks/deploy @@ -167,7 +167,7 @@ if [ ! -f ${OPENSHIFT_REPO_DIR}.openshift/markers/hot_deploy ]; then touch ${OPENSHIFT_REPO_DIR}.openshift/markers/hot_deploy -echo "Done creating file .openshift/cron/minutely/poller" +echo "Done creating file .openshift/markers/hot_deploy" else -- cgit v1.2.3 From 1bd1050160efd88483a50c3a2a239e2160048924 Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Fri, 18 Sep 2015 18:58:43 +0200 Subject: Added hot_deploy directly to .openshift/makers/hot_deploy --- .openshift/markers/hot_deploy | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .openshift/markers/hot_deploy diff --git a/.openshift/markers/hot_deploy b/.openshift/markers/hot_deploy new file mode 100644 index 000000000..e69de29bb -- cgit v1.2.3 From 4f6506657208ebf3eadce3109d1bcd8407c7bdaf Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Sun, 20 Sep 2015 23:06:25 +0200 Subject: Removed hot_deploy --- .openshift/markers/hot_deploy | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .openshift/markers/hot_deploy diff --git a/.openshift/markers/hot_deploy b/.openshift/markers/hot_deploy deleted file mode 100644 index e69de29bb..000000000 -- cgit v1.2.3 From d66715648a986652d61db7881cf843c644004c68 Mon Sep 17 00:00:00 2001 From: zottel Date: Wed, 30 Sep 2015 14:01:21 +0200 Subject: update German strings --- view/de/hmessages.po | 13517 +++++++++++++++++++++++++------------------------ view/de/hstrings.php | 3296 ++++++------ 2 files changed, 8663 insertions(+), 8150 deletions(-) diff --git a/view/de/hmessages.po b/view/de/hmessages.po index ef27fd162..3121c7c59 100644 --- a/view/de/hmessages.po +++ b/view/de/hmessages.po @@ -1,1030 +1,748 @@ -# Red Matrix Project -# Copyright (C) 2012-2014 the Red Matrix Project +# Hubzilla Project +# Copyright (C) 2012-2014 the Hubzilla Project # This file is distributed under the same license as the Red package. # # Translators: # Alex , 2013 -# Alex , 2013 -# Balder , 2013 # Balder , 2013 # bavatar , 2013 -# JooBee , 2014 -# Einer von Vielen , 2013 +# do.t , 2014 # Einer von Vielen , 2013 -# Ettore Atalan , 2014-2015 -# Frank Dieckmann , 2013 +# Ettore Atalan , 2015 # Frank Dieckmann , 2013 +# JooBee , 2014 # Kai , 2015 -# Oliver , 2013-2014 +# Oliver , 2015 # Phellmes , 2014 -# Steff , 2015 -# bavatar , 2013-2014 -# do.t , 2014 -# zottel , 2013-2015 # sasiflo , 2014 +# Steff , 2015 +# zottel , 2015 msgid "" msgstr "" -"Project-Id-Version: Red Matrix\n" +"Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-20 00:04-0800\n" -"PO-Revision-Date: 2015-02-27 09:55+0000\n" +"POT-Creation-Date: 2015-09-26 22:48-0700\n" +"PO-Revision-Date: 2015-09-30 11:56+0000\n" "Last-Translator: zottel \n" -"Language-Team: German (http://www.transifex.com/projects/p/red-matrix/language/de/)\n" +"Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:142 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." +msgstr "Kein Benutzername in der Importdatei gefunden." -#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 -#: ../../mod/profile_photo.php:143 ../../mod/profile_photo.php:302 -#: ../../mod/profile_photo.php:424 ../../mod/photos.php:91 -#: ../../mod/photos.php:625 -msgid "Profile Photos" -msgstr "Profilfotos" +#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." -#: ../../include/photos.php:15 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:301 -#: ../../include/attach.php:315 ../../include/attach.php:339 -#: ../../include/attach.php:532 ../../include/attach.php:606 -#: ../../include/chat.php:116 ../../include/items.php:4072 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/editblock.php:65 -#: ../../mod/manage.php:6 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/connedit.php:321 -#: ../../mod/editpost.php:13 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/network.php:12 ../../mod/events.php:219 -#: ../../mod/settings.php:560 ../../mod/group.php:9 ../../mod/setup.php:207 -#: ../../mod/common.php:35 ../../mod/suggest.php:26 -#: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 -#: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/appman.php:66 -#: ../../mod/authtest.php:13 ../../mod/editlayout.php:64 -#: ../../mod/editlayout.php:89 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:118 ../../mod/rate.php:110 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:77 -#: ../../mod/sources.php:66 ../../mod/menu.php:61 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 -#: ../../mod/filestorage.php:114 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 -#: ../../mod/webpages.php:67 ../../mod/delegate.php:6 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/regmod.php:17 ../../mod/message.php:16 ../../mod/mitem.php:106 -#: ../../mod/mood.php:111 ../../mod/layouts.php:67 ../../mod/layouts.php:74 -#: ../../mod/layouts.php:85 ../../mod/like.php:178 ../../mod/mail.php:114 -#: ../../mod/notifications.php:66 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/photos.php:68 ../../mod/page.php:28 -#: ../../mod/page.php:78 ../../mod/bookmarks.php:46 ../../mod/channel.php:90 -#: ../../mod/channel.php:199 ../../mod/channel.php:242 -#: ../../mod/register.php:72 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." -msgstr "Zugang verweigert" +#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:480 +msgid "Import completed." +msgstr "Import abgeschlossen." -#: ../../include/photos.php:105 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:265 +msgid "parent" +msgstr "Übergeordnetes Verzeichnis" -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2497 +msgid "Collection" +msgstr "Ordner" -#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" +#: ../../include/RedDAV/RedBrowser.php:134 +msgid "Principal" +msgstr "Prinzipal" -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "Foto speichern schlug fehl" +#: ../../include/RedDAV/RedBrowser.php:137 +msgid "Addressbook" +msgstr "Adressbuch" -#: ../../include/photos.php:355 ../../include/conversation.php:1589 -msgid "Photo Albums" -msgstr "Fotoalben" +#: ../../include/RedDAV/RedBrowser.php:140 +msgid "Calendar" +msgstr "Kalender" -#: ../../include/photos.php:359 -msgid "Upload New Photos" -msgstr "Lade neue Fotos hoch" +#: ../../include/RedDAV/RedBrowser.php:143 +msgid "Schedule Inbox" +msgstr "Posteingang für überwachte Kalender" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" +#: ../../include/RedDAV/RedBrowser.php:146 +msgid "Schedule Outbox" +msgstr "Postausgang für überwachte Kalender" + +#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1021 +#: ../../include/apps.php:355 ../../include/apps.php:410 +#: ../../mod/photos.php:720 ../../mod/photos.php:1159 +msgid "Unknown" +msgstr "Unbekannt" -#: ../../include/notify.php:24 +#: ../../include/RedDAV/RedBrowser.php:227 #, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" +msgid "%1$s used" +msgstr "%1$s verwendet" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" +#: ../../include/RedDAV/RedBrowser.php:232 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s von %2$s verwendet (%3$s%)" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:42 -#: ../../mod/editblock.php:143 ../../mod/blocks.php:132 -#: ../../mod/editpost.php:113 ../../mod/settings.php:645 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/thing.php:233 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 -#: ../../mod/menu.php:78 ../../mod/webpages.php:162 ../../mod/layouts.php:167 -msgid "Edit" -msgstr "Bearbeiten" +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/conversation.php:1611 +#: ../../include/apps.php:135 ../../include/nav.php:93 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Dateien" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Ansicht" +#: ../../include/RedDAV/RedBrowser.php:253 +msgid "Total" +msgstr "Summe" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1152 ../../mod/events.php:651 -#: ../../mod/webpages.php:166 ../../mod/photos.php:964 -msgid "Preview" -msgstr "Vorschau" +#: ../../include/RedDAV/RedBrowser.php:255 +msgid "Shared" +msgstr "Geteilt" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Aktionen" +#: ../../include/RedDAV/RedBrowser.php:256 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/layouts.php:175 +#: ../../mod/menu.php:114 ../../mod/new_channel.php:121 +#: ../../mod/webpages.php:180 ../../mod/blocks.php:152 +msgid "Create" +msgstr "Erstelle" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../include/RedDAV/RedBrowser.php:257 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:745 +#: ../../mod/photos.php:1278 ../../mod/profile_photo.php:450 +msgid "Upload" +msgstr "Hochladen" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Titel" +#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:948 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 +#: ../../mod/sharedwithme.php:95 +msgid "Name" +msgstr "Name" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Erstellt" +#: ../../include/RedDAV/RedBrowser.php:262 +msgid "Type" +msgstr "Typ" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Geändert" +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 +msgid "Size" +msgstr "Größe" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:255 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorien" +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 +msgid "Last Modified" +msgstr "Zuletzt geändert" -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apps" +#: ../../include/RedDAV/RedBrowser.php:266 ../../include/menu.php:108 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/apps.php:254 ../../include/ItemObject.php:100 +#: ../../mod/layouts.php:183 ../../mod/editpost.php:113 +#: ../../mod/editblock.php:135 ../../mod/menu.php:108 +#: ../../mod/webpages.php:181 ../../mod/blocks.php:153 ../../mod/thing.php:257 +#: ../../mod/settings.php:645 ../../mod/connections.php:235 +#: ../../mod/connections.php:248 ../../mod/connections.php:267 +#: ../../mod/editlayout.php:134 ../../mod/editwebpage.php:176 +msgid "Edit" +msgstr "Bearbeiten" -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/conversation.php:662 +#: ../../include/apps.php:255 ../../include/ItemObject.php:120 +#: ../../mod/connedit.php:547 ../../mod/editblock.php:181 +#: ../../mod/admin.php:783 ../../mod/admin.php:942 ../../mod/photos.php:1090 +#: ../../mod/webpages.php:183 ../../mod/blocks.php:155 ../../mod/thing.php:258 +#: ../../mod/settings.php:646 ../../mod/editlayout.php:179 +#: ../../mod/editwebpage.php:223 ../../mod/group.php:173 +msgid "Delete" +msgstr "Löschen" -#: ../../include/widgets.php:94 ../../include/conversation.php:1494 -msgid "Personal" -msgstr "Persönlich" +#: ../../include/RedDAV/RedBrowser.php:302 +msgid "Create new folder" +msgstr "Neuen Ordner anlegen" -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persönliche App erstellen" +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Upload file" +msgstr "Datei hochladen" -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persönliche App bearbeiten" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/identity.php:840 ../../include/Contact.php:107 -#: ../../include/conversation.php:940 ../../mod/suggest.php:51 -#: ../../mod/directory.php:272 ../../mod/match.php:62 -msgid "Connect" -msgstr "Verbinden" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Vorschläge" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kann meine Datei- und Bilderordner sehen" -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Mehr anzeigen …" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse des Kanals eingeben" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notizen" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" -#: ../../include/widgets.php:192 ../../include/text.php:838 -#: ../../include/text.php:850 ../../mod/filer.php:50 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/admin.php:1344 ../../mod/admin.php:1365 -msgid "Save" -msgstr "Speichern" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" -#: ../../include/widgets.php:264 -msgid "Remove term" -msgstr "Eintrag löschen" +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" -#: ../../include/widgets.php:272 ../../include/features.php:72 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" -#: ../../include/widgets.php:273 ../../include/group.php:303 -msgid "add" -msgstr "hinzufügen" +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" -#: ../../include/widgets.php:302 ../../include/features.php:84 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner schreiben" -#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Alles" +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" -#: ../../include/widgets.php:347 -msgid "Archives" -msgstr "Archive" +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" -#: ../../include/widgets.php:425 -msgid "Refresh" -msgstr "Aktualisieren" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" -#: ../../include/widgets.php:426 ../../mod/connedit.php:563 -msgid "Me" -msgstr "Ich" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" -#: ../../include/widgets.php:427 ../../mod/connedit.php:566 -msgid "Best Friends" -msgstr "Beste Freunde" +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" -#: ../../include/widgets.php:428 ../../include/identity.php:387 -#: ../../include/identity.php:388 ../../include/identity.php:395 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:567 -#: ../../mod/settings.php:335 ../../mod/settings.php:339 -#: ../../mod/settings.php:340 ../../mod/settings.php:343 -#: ../../mod/settings.php:354 -msgid "Friends" -msgstr "Freunde" +#: ../../include/permissions.php:867 +msgid "Social Networking" +msgstr "Soziales Netzwerk" -#: ../../include/widgets.php:429 -msgid "Co-workers" -msgstr "Kollegen" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" +msgstr "Weitgehend öffentlich" -#: ../../include/widgets.php:430 ../../mod/connedit.php:568 -msgid "Former Friends" -msgstr "ehem. Freunde" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" +msgstr "Beschränkt" -#: ../../include/widgets.php:431 ../../mod/connedit.php:569 -msgid "Acquaintances" -msgstr "Bekannte" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" +msgstr "Privat" -#: ../../include/widgets.php:432 -msgid "Everybody" -msgstr "Jeder" +#: ../../include/permissions.php:868 +msgid "Community Forum" +msgstr "Forum" -#: ../../include/widgets.php:466 -msgid "Account settings" -msgstr "Konto-Einstellungen" +#: ../../include/permissions.php:869 +msgid "Feed Republish" +msgstr "Teilen von Feeds" -#: ../../include/widgets.php:472 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" +#: ../../include/permissions.php:870 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" -#: ../../include/widgets.php:478 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" +msgstr "Mitteilungs-Kanal (keine Kommentare)" -#: ../../include/widgets.php:484 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" +#: ../../include/permissions.php:870 +msgid "Group Repository" +msgstr "Gruppenarchiv" -#: ../../include/widgets.php:490 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" - -#: ../../include/widgets.php:496 -msgid "Connected apps" -msgstr "Verbundene Apps" - -#: ../../include/widgets.php:502 -msgid "Export channel" -msgstr "Kanal exportieren" +#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "Andere" -#: ../../include/widgets.php:511 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "Standardzugriffsrechte für neue Verbindungen:" +#: ../../include/permissions.php:871 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Der Chatraum hat keinen Namen" -#: ../../include/widgets.php:527 ../../include/features.php:61 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanal-Quellen" +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Name des Chatraums bereits vergeben" -#: ../../include/widgets.php:535 ../../include/nav.php:210 -#: ../../include/apps.php:134 ../../mod/admin.php:956 ../../mod/admin.php:1161 -msgid "Settings" -msgstr "Einstellungen" +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Ungültiger Raumbezeichner." -#: ../../include/widgets.php:548 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Nachrichten" +#: ../../include/chat.php:122 +msgid "Room not found." +msgstr "Chatraum konnte nicht gefunden werden." -#: ../../include/widgets.php:551 -msgid "Check Mail" -msgstr "E-Mails abrufen" +#: ../../include/chat.php:133 ../../include/photos.php:26 +#: ../../include/attach.php:137 ../../include/attach.php:185 +#: ../../include/attach.php:248 ../../include/attach.php:262 +#: ../../include/attach.php:269 ../../include/attach.php:334 +#: ../../include/attach.php:348 ../../include/attach.php:355 +#: ../../include/attach.php:433 ../../include/attach.php:840 +#: ../../include/attach.php:911 ../../include/attach.php:1064 +#: ../../include/items.php:4342 ../../mod/achievements.php:30 +#: ../../mod/fsuggest.php:78 ../../mod/authtest.php:13 +#: ../../mod/bookmarks.php:48 ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/id.php:71 ../../mod/like.php:177 ../../mod/common.php:35 +#: ../../mod/mitem.php:111 ../../mod/connedit.php:348 ../../mod/mood.php:112 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 +#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 +#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 +#: ../../mod/poke.php:133 ../../mod/network.php:12 ../../mod/chat.php:91 +#: ../../mod/chat.php:96 ../../mod/message.php:16 ../../mod/channel.php:100 +#: ../../mod/channel.php:215 ../../mod/channel.php:255 +#: ../../mod/editpost.php:13 ../../mod/editblock.php:65 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:992 ../../mod/appman.php:66 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/menu.php:74 +#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 +#: ../../mod/pdledit.php:21 ../../mod/photos.php:70 ../../mod/rate.php:110 +#: ../../mod/events.php:256 ../../mod/profile_photo.php:338 +#: ../../mod/profile_photo.php:351 ../../mod/mail.php:114 +#: ../../mod/webpages.php:69 ../../mod/register.php:72 ../../mod/blocks.php:69 +#: ../../mod/blocks.php:76 ../../mod/service_limits.php:7 +#: ../../mod/sources.php:66 ../../mod/regmod.php:17 ../../mod/thing.php:271 +#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/viewsrc.php:14 +#: ../../mod/settings.php:565 ../../mod/manage.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/connections.php:29 +#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 +#: ../../mod/group.php:9 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/locs.php:82 +#: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 +#: ../../mod/suggest.php:26 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../index.php:178 ../../index.php:361 +msgid "Permission denied." +msgstr "Zugang verweigert" -#: ../../include/widgets.php:556 ../../include/nav.php:201 -msgid "New Message" -msgstr "Neue Nachricht" +#: ../../include/chat.php:143 +msgid "Room is full" +msgstr "Der Raum ist voll" -#: ../../include/widgets.php:634 -msgid "Chat Rooms" -msgstr "Chaträume" +#: ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Verschiedenes" -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" +#: ../../include/datetime.php:132 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" +#: ../../include/datetime.php:235 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 ../../mod/events.php:689 +msgid "Required" +msgstr "Benötigt" -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" -msgstr "Foto/Bild" +#: ../../include/datetime.php:262 ../../boot.php:2306 +msgid "never" +msgstr "Nie" -#: ../../include/widgets.php:954 ../../include/widgets.php:956 -msgid "Rate Me" -msgstr "Bewerte mich" +#: ../../include/datetime.php:268 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" -#: ../../include/widgets.php:960 -msgid "View Ratings" -msgstr "Bewertungen ansehen" +#: ../../include/datetime.php:271 +msgid "year" +msgstr "Jahr" -#: ../../include/widgets.php:971 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" +#: ../../include/datetime.php:271 +msgid "years" +msgstr "Jahre" -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Red Matrix Benachrichtigung" +#: ../../include/datetime.php:272 +msgid "month" +msgstr "Monat" -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" +#: ../../include/datetime.php:272 +msgid "months" +msgstr "Monate" -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Danke." +#: ../../include/datetime.php:273 +msgid "week" +msgstr "Woche" -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" +#: ../../include/datetime.php:273 +msgid "weeks" +msgstr "Wochen" -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../include/datetime.php:274 +msgid "day" +msgstr "Tag" -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" +#: ../../include/datetime.php:274 +msgid "days" +msgstr "Tage" -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." +#: ../../include/datetime.php:275 +msgid "hour" +msgstr "Stunde" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." +#: ../../include/datetime.php:275 +msgid "hours" +msgstr "Stunden" -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "eine private Nachricht" +#: ../../include/datetime.php:276 +msgid "minute" +msgstr "Minute" -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." +#: ../../include/datetime.php:276 +msgid "minutes" +msgstr "Minuten" -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" +#: ../../include/datetime.php:277 +msgid "second" +msgstr "Sekunde" -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" +#: ../../include/datetime.php:277 +msgid "seconds" +msgstr "Sekunden" -#: ../../include/enotify.php:161 +#: ../../include/datetime.php:285 #, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" -#: ../../include/enotify.php:172 +#: ../../include/datetime.php:519 #, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" -#: ../../include/enotify.php:173 +#: ../../include/datetime.php:520 #, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." +#: ../../include/features.php:38 +msgid "General Features" +msgstr "Allgemeine Funktionen" -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" +#: ../../include/features.php:40 +msgid "Content Expiration" +msgstr "Verfall von Inhalten" -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" +#: ../../include/features.php:40 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum." -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" +#: ../../include/features.php:41 +msgid "Multiple Profiles" +msgstr "Mehrfachprofile" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" +#: ../../include/features.php:41 +msgid "Ability to create multiple profiles" +msgstr "Mehrfachprofile anlegen können" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" +#: ../../include/features.php:42 +msgid "Advanced Profiles" +msgstr "Erweiterte Profile" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." +#: ../../include/features.php:42 +msgid "Additional profile sections and selections" +msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" +#: ../../include/features.php:43 +msgid "Profile Import/Export" +msgstr "Profil-Import/Export" -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" +#: ../../include/features.php:43 +msgid "Save and load profile details across sites/channels" +msgstr "Speichere Dein Profil, um es in einen anderen Kanal zu importieren" -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." +#: ../../include/features.php:44 +msgid "Web Pages" +msgstr "Webseiten" -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" +#: ../../include/features.php:44 +msgid "Provide managed web pages on your channel" +msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung" -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" +#: ../../include/features.php:45 +msgid "Private Notes" +msgstr "Private Notizen" -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" +#: ../../include/features.php:45 +msgid "Enables a tool to store notes and reminders" +msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren" -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Benachrichtigung] Vorstellung erhalten" +#: ../../include/features.php:46 +msgid "Navigation Channel Select" +msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" +#: ../../include/features.php:46 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." +#: ../../include/features.php:47 +msgid "Photo Location" +msgstr "Aufnahmeort" -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kannst Dir das Profil unter %s ansehen" +#: ../../include/features.php:47 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Aufnahmeort des Fotos auf einer Karte verlinken, falls verfügbar." -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." +#: ../../include/features.php:49 +msgid "Expert Mode" +msgstr "Expertenmodus" -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" +#: ../../include/features.php:49 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" +#: ../../include/features.php:50 +msgid "Premium Channel" +msgstr "Premium-Kanal" -#: ../../include/enotify.php:274 -#, php-format +#: ../../include/features.php:50 msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Name:" +#: ../../include/features.php:55 +msgid "Post Composition Features" +msgstr "Nachbearbeitungsfunktionen" -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" +#: ../../include/features.php:57 +msgid "Use Markdown" +msgstr "Markdown benutzen" -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." +#: ../../include/features.php:57 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen" -#: ../../include/enotify.php:499 -msgid "[Red:Notify]" -msgstr "[Red:Benachrichtigung]" +#: ../../include/features.php:58 +msgid "Large Photos" +msgstr "Große Fotos" -#: ../../include/text.php:320 -msgid "prev" -msgstr "vorherige" +#: ../../include/features.php:58 +msgid "" +"Include large (640px) photo thumbnails in posts. If not enabled, use small " +"(320px) photo thumbnails" +msgstr "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt." -#: ../../include/text.php:322 -msgid "first" -msgstr "erste" +#: ../../include/features.php:59 ../../include/widgets.php:545 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanal-Quellen" -#: ../../include/text.php:351 -msgid "last" -msgstr "letzte" +#: ../../include/features.php:59 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/text.php:354 -msgid "next" -msgstr "nächste" +#: ../../include/features.php:60 +msgid "Even More Encryption" +msgstr "Noch mehr Verschlüsselung" -#: ../../include/text.php:366 -msgid "older" -msgstr "älter" +#: ../../include/features.php:60 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)" -#: ../../include/text.php:368 -msgid "newer" -msgstr "neuer" +#: ../../include/features.php:61 +msgid "Enable voting tools" +msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/text.php:751 -msgid "No connections" -msgstr "Keine Verbindungen" +#: ../../include/features.php:61 +msgid "Provide a class of post which others can vote on" +msgstr "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" -#: ../../include/text.php:767 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Verbindung" -msgstr[1] "%d Verbindungen" +#: ../../include/features.php:67 +msgid "Network and Stream Filtering" +msgstr "Netzwerk- und Stream-Filter" -#: ../../include/text.php:780 ../../mod/viewconnections.php:86 -msgid "View Connections" -msgstr "Verbindungen anzeigen" +#: ../../include/features.php:68 +msgid "Search by Date" +msgstr "Suche nach Datum" -#: ../../include/text.php:837 ../../include/text.php:849 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:34 -msgid "Search" -msgstr "Suche" +#: ../../include/features.php:68 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/text.php:916 -msgid "poke" -msgstr "anstupsen" +#: ../../include/features.php:69 +msgid "Collections Filter" +msgstr "Filter für Sammlung" -#: ../../include/text.php:916 ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" +#: ../../include/features.php:69 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen" -#: ../../include/text.php:917 -msgid "ping" -msgstr "anpingen" +#: ../../include/features.php:70 ../../include/widgets.php:273 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" -#: ../../include/text.php:917 -msgid "pinged" -msgstr "pingte" +#: ../../include/features.php:70 +msgid "Save search terms for re-use" +msgstr "Suchbegriffe zur Wiederverwendung abspeichern" -#: ../../include/text.php:918 -msgid "prod" -msgstr "knuffen" +#: ../../include/features.php:71 +msgid "Network Personal Tab" +msgstr "Persönlicher Netzwerkreiter" -#: ../../include/text.php:918 -msgid "prodded" -msgstr "knuffte" +#: ../../include/features.php:71 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast" -#: ../../include/text.php:919 -msgid "slap" -msgstr "ohrfeigen" +#: ../../include/features.php:72 +msgid "Network New Tab" +msgstr "Netzwerkreiter Neu" -#: ../../include/text.php:919 -msgid "slapped" -msgstr "ohrfeigte" +#: ../../include/features.php:72 +msgid "Enable tab to display all new Network activity" +msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" -#: ../../include/text.php:920 -msgid "finger" -msgstr "befummeln" +#: ../../include/features.php:73 +msgid "Affinity Tool" +msgstr "Beziehungs-Tool" -#: ../../include/text.php:920 -msgid "fingered" -msgstr "befummelte" +#: ../../include/features.php:73 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" -#: ../../include/text.php:921 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" +#: ../../include/features.php:74 +msgid "Connection Filtering" +msgstr "Filter für Sammlungen" -#: ../../include/text.php:921 -msgid "rebuffed" -msgstr "zurückgewiesen" +#: ../../include/features.php:74 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtert eingehende Beiträge anhand von Schlüsselwörtern." -#: ../../include/text.php:931 -msgid "happy" -msgstr "glücklich" +#: ../../include/features.php:75 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" -#: ../../include/text.php:932 -msgid "sad" -msgstr "traurig" +#: ../../include/features.php:75 +msgid "Show channel suggestions" +msgstr "Kanalvorschläge anzeigen" -#: ../../include/text.php:933 -msgid "mellow" -msgstr "sanft" +#: ../../include/features.php:80 +msgid "Post/Comment Tools" +msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/text.php:934 -msgid "tired" -msgstr "müde" +#: ../../include/features.php:81 +msgid "Tagging" +msgstr "Verschlagworten" -#: ../../include/text.php:935 -msgid "perky" -msgstr "frech" +#: ../../include/features.php:81 +msgid "Ability to tag existing posts" +msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" -#: ../../include/text.php:936 -msgid "angry" -msgstr "sauer" +#: ../../include/features.php:82 +msgid "Post Categories" +msgstr "Beitrags-Kategorien" -#: ../../include/text.php:937 -msgid "stupified" -msgstr "verblüfft" +#: ../../include/features.php:82 +msgid "Add categories to your posts" +msgstr "Kategorien für Beiträge" -#: ../../include/text.php:938 -msgid "puzzled" -msgstr "verwirrt" +#: ../../include/features.php:83 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" -#: ../../include/text.php:939 -msgid "interested" -msgstr "interessiert" +#: ../../include/features.php:83 +msgid "Ability to file posts under folders" +msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/text.php:940 -msgid "bitter" -msgstr "verbittert" +#: ../../include/features.php:84 +msgid "Dislike Posts" +msgstr "Gefällt-mir-nicht Beiträge" -#: ../../include/text.php:941 -msgid "cheerful" -msgstr "fröhlich" +#: ../../include/features.php:84 +msgid "Ability to dislike posts/comments" +msgstr "„Gefällt mir nicht“ ermöglichen" -#: ../../include/text.php:942 -msgid "alive" -msgstr "lebendig" +#: ../../include/features.php:85 +msgid "Star Posts" +msgstr "Beiträge mit Sternchen versehen" -#: ../../include/text.php:943 -msgid "annoyed" -msgstr "verärgert" +#: ../../include/features.php:85 +msgid "Ability to mark special posts with a star indicator" +msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren" -#: ../../include/text.php:944 -msgid "anxious" -msgstr "unruhig" +#: ../../include/features.php:86 +msgid "Tag Cloud" +msgstr "Schlagwort-Wolke" -#: ../../include/text.php:945 -msgid "cranky" -msgstr "schrullig" +#: ../../include/features.php:86 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" -#: ../../include/text.php:946 -msgid "disturbed" -msgstr "verstört" +#: ../../include/comanche.php:34 ../../mod/admin.php:348 +msgid "Default" +msgstr "Standard" -#: ../../include/text.php:947 -msgid "frustrated" -msgstr "frustriert" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dieses Element löschen?" -#: ../../include/text.php:948 -msgid "depressed" -msgstr "deprimiert" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:673 +#: ../../mod/photos.php:1008 ../../mod/photos.php:1126 +msgid "Comment" +msgstr "Kommentar" -#: ../../include/text.php:949 -msgid "motivated" -msgstr "motiviert" +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:390 +msgid "[+] show all" +msgstr "[+] Alle anzeigen" -#: ../../include/text.php:950 -msgid "relaxed" -msgstr "entspannt" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] Weniger anzeigen" -#: ../../include/text.php:951 -msgid "surprised" -msgstr "überrascht" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] aufklappen" -#: ../../include/text.php:1117 -msgid "Monday" -msgstr "Montag" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] einklappen" -#: ../../include/text.php:1117 -msgid "Tuesday" -msgstr "Dienstag" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Kennwort zu kurz" -#: ../../include/text.php:1117 -msgid "Wednesday" -msgstr "Mittwoch" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Kennwörter stimmen nicht überein" -#: ../../include/text.php:1117 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1117 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1117 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1117 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1121 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1121 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1121 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1121 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1121 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1121 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1121 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1121 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1121 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1121 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1121 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1121 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1199 -msgid "unknown.???" -msgstr "unbekannt.???" - -#: ../../include/text.php:1200 -msgid "bytes" -msgstr "Bytes" - -#: ../../include/text.php:1236 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1305 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1381 ../../include/text.php:1392 -#: ../../mod/connedit.php:635 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/text.php:1540 ../../mod/events.php:444 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../include/text.php:1559 -msgid "Select a page layout: " -msgstr "Ein Seiten-Layout auswählen:" - -#: ../../include/text.php:1562 ../../include/text.php:1622 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1595 -msgid "Page content type: " -msgstr "Content-Typ der Seite:" - -#: ../../include/text.php:1634 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../include/text.php:1753 ../../include/diaspora.php:1909 -#: ../../include/conversation.php:120 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:43 ../../mod/like.php:335 -msgid "photo" -msgstr "Foto" - -#: ../../include/text.php:1756 ../../include/conversation.php:123 -#: ../../mod/tagger.php:47 ../../mod/like.php:337 -msgid "event" -msgstr "Termin" - -#: ../../include/text.php:1759 ../../include/diaspora.php:1909 -#: ../../include/conversation.php:148 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:51 ../../mod/like.php:335 -msgid "status" -msgstr "Status" - -#: ../../include/text.php:1761 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "Kommentar" - -#: ../../include/text.php:1766 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:2053 -msgid "Design" -msgstr "Design" - -#: ../../include/text.php:2056 -msgid "Blocks" -msgstr "Blöcke" - -#: ../../include/text.php:2057 -msgid "Menus" -msgstr "Menüs" - -#: ../../include/text.php:2058 -msgid "Layouts" -msgstr "Layouts" - -#: ../../include/text.php:2059 -msgid "Pages" -msgstr "Seiten" - -#: ../../include/text.php:2395 ../../include/RedDAV/RedBrowser.php:130 -msgid "Collection" -msgstr "Ordner" - -#: ../../include/attach.php:242 ../../include/attach.php:296 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:352 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../include/attach.php:369 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" - -#: ../../include/attach.php:387 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" - -#: ../../include/attach.php:398 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../include/attach.php:410 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." - -#: ../../include/attach.php:493 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:505 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:547 ../../include/attach.php:564 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:611 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:627 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:651 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:702 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:706 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dieses Element löschen?" - -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:962 ../../mod/photos.php:1080 -msgid "Comment" -msgstr "Kommentar" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" -msgstr "[+] Alle anzeigen" - -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Weniger anzeigen" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] aufklappen" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] einklappen" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Kennwort zu kurz" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Kennwörter stimmen nicht überein" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +#: ../../include/js_strings.php:13 ../../mod/photos.php:41 msgid "everybody" msgstr "alle" @@ -1052,7 +770,8 @@ msgstr "Nichts Neues hier" msgid "Rate This Channel (this is public)" msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 +#: ../../include/js_strings.php:20 ../../mod/connedit.php:667 +#: ../../mod/rate.php:156 msgid "Rating" msgstr "Bewertung" @@ -1060,1723 +779,2262 @@ msgstr "Bewertung" msgid "Describe (optional)" msgstr "Beschreibung (optional)" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/xchan.php:11 ../../mod/connedit.php:653 ../../mod/connect.php:93 -#: ../../mod/events.php:654 ../../mod/settings.php:583 -#: ../../mod/settings.php:708 ../../mod/settings.php:737 -#: ../../mod/settings.php:760 ../../mod/settings.php:842 -#: ../../mod/settings.php:1038 ../../mod/group.php:81 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../mod/thing.php:284 ../../mod/thing.php:327 -#: ../../mod/pdledit.php:58 ../../mod/appman.php:99 ../../mod/import.php:504 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/rate.php:167 -#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:155 -#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/admin.php:416 ../../mod/admin.php:728 -#: ../../mod/admin.php:864 ../../mod/admin.php:997 ../../mod/admin.php:1196 -#: ../../mod/admin.php:1283 ../../mod/mood.php:134 ../../mod/mail.php:355 -#: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:923 -#: ../../mod/photos.php:963 ../../mod/photos.php:1081 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:674 +#: ../../mod/fsuggest.php:108 ../../mod/mitem.php:231 +#: ../../mod/connedit.php:688 ../../mod/mood.php:135 ../../mod/pconfig.php:108 +#: ../../mod/filestorage.php:156 ../../mod/poke.php:171 ../../mod/chat.php:181 +#: ../../mod/chat.php:209 ../../mod/admin.php:411 ../../mod/admin.php:776 +#: ../../mod/admin.php:940 ../../mod/admin.php:1072 ../../mod/admin.php:1266 +#: ../../mod/admin.php:1351 ../../mod/appman.php:99 ../../mod/pdledit.php:58 +#: ../../mod/photos.php:598 ../../mod/photos.php:969 ../../mod/photos.php:1009 +#: ../../mod/photos.php:1127 ../../mod/rate.php:167 ../../mod/events.php:534 +#: ../../mod/events.php:710 ../../mod/mail.php:364 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/import.php:511 ../../mod/thing.php:313 +#: ../../mod/thing.php:359 ../../mod/invite.php:142 ../../mod/settings.php:583 +#: ../../mod/settings.php:695 ../../mod/settings.php:723 +#: ../../mod/settings.php:746 ../../mod/settings.php:831 +#: ../../mod/settings.php:1020 ../../mod/xchan.php:11 ../../mod/group.php:81 +#: ../../mod/connect.php:93 ../../mod/locs.php:108 ../../mod/setup.php:331 +#: ../../mod/setup.php:371 ../../mod/profiles.php:667 +#: ../../mod/import_items.php:122 ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "Bestätigen" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Gib eine URL ein:" + #: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?" + +#: ../../include/js_strings.php:26 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:27 msgid "timeago.prefixFromNow" msgstr " " -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:28 msgid "ago" msgstr "her" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:29 msgid "from now" msgstr "von jetzt" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:30 msgid "less than a minute" msgstr "weniger als eine Minute" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:31 msgid "about a minute" msgstr "ungefähr eine Minute" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:32 #, php-format msgid "%d minutes" msgstr "%d Minuten" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:33 msgid "about an hour" msgstr "ungefähr eine Stunde" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:34 #, php-format msgid "about %d hours" msgstr "ungefähr %d Stunden" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:35 msgid "a day" msgstr "ein Tag" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:36 #, php-format msgid "%d days" msgstr "%d Tage" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:37 msgid "about a month" msgstr "ungefähr ein Monat" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:38 #, php-format msgid "%d months" msgstr "%d Monate" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:39 msgid "about a year" msgstr "ungefähr ein Jahr" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:40 #, php-format msgid "%d years" msgstr "%d Jahre" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:41 msgid " " msgstr " " -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:42 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:266 -msgid "parent" -msgstr "Übergeordnetes Verzeichnis" +#: ../../include/js_strings.php:44 ../../include/text.php:1144 +msgid "January" +msgstr "Januar" -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Principal" -msgstr "Prinzipal" +#: ../../include/js_strings.php:45 ../../include/text.php:1144 +msgid "February" +msgstr "Februar" -#: ../../include/RedDAV/RedBrowser.php:136 -msgid "Addressbook" -msgstr "Adressbuch" +#: ../../include/js_strings.php:46 ../../include/text.php:1144 +msgid "March" +msgstr "März" -#: ../../include/RedDAV/RedBrowser.php:139 -msgid "Calendar" -msgstr "Kalender" +#: ../../include/js_strings.php:47 ../../include/text.php:1144 +msgid "April" +msgstr "April" -#: ../../include/RedDAV/RedBrowser.php:142 -msgid "Schedule Inbox" -msgstr "Posteingang für überwachte Kalender" +#: ../../include/js_strings.php:48 +msgctxt "long" +msgid "May" +msgstr "Mai" -#: ../../include/RedDAV/RedBrowser.php:145 -msgid "Schedule Outbox" -msgstr "Postausgang für überwachte Kalender" +#: ../../include/js_strings.php:49 ../../include/text.php:1144 +msgid "June" +msgstr "Juni" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1019 -#: ../../mod/connedit.php:570 ../../mod/photos.php:681 -#: ../../mod/photos.php:1113 -msgid "Unknown" -msgstr "Unbekannt" +#: ../../include/js_strings.php:50 ../../include/text.php:1144 +msgid "July" +msgstr "Juli" -#: ../../include/RedDAV/RedBrowser.php:225 -#, php-format -msgid "%1$s used" -msgstr "%1$s verwendet" +#: ../../include/js_strings.php:51 ../../include/text.php:1144 +msgid "August" +msgstr "August" -#: ../../include/RedDAV/RedBrowser.php:230 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s von %2$s verwendet (%3$s%)" +#: ../../include/js_strings.php:52 ../../include/text.php:1144 +msgid "September" +msgstr "September" -#: ../../include/RedDAV/RedBrowser.php:249 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1595 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Dateien" +#: ../../include/js_strings.php:53 ../../include/text.php:1144 +msgid "October" +msgstr "Oktober" -#: ../../include/RedDAV/RedBrowser.php:251 -msgid "Total" -msgstr "Summe" +#: ../../include/js_strings.php:54 ../../include/text.php:1144 +msgid "November" +msgstr "November" -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Shared" -msgstr "Geteilt" +#: ../../include/js_strings.php:55 ../../include/text.php:1144 +msgid "December" +msgstr "Dezember" -#: ../../include/RedDAV/RedBrowser.php:254 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:100 -#: ../../mod/mitem.php:169 ../../mod/new_channel.php:121 -msgid "Create" -msgstr "Erstelle" +#: ../../include/js_strings.php:56 +msgid "Jan" +msgstr "Jan" -#: ../../include/RedDAV/RedBrowser.php:255 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1228 -msgid "Upload" -msgstr "Hochladen" +#: ../../include/js_strings.php:57 +msgid "Feb" +msgstr "Feb" -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:585 -#: ../../mod/settings.php:611 ../../mod/admin.php:871 -#: ../../mod/sharedwithme.php:100 -msgid "Name" -msgstr "Name" +#: ../../include/js_strings.php:58 +msgid "Mar" +msgstr "Mär" -#: ../../include/RedDAV/RedBrowser.php:263 -msgid "Type" -msgstr "Typ" +#: ../../include/js_strings.php:59 +msgid "Apr" +msgstr "Apr" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 -msgid "Size" -msgstr "Größe" +#: ../../include/js_strings.php:60 +msgctxt "short" +msgid "May" +msgstr "Mai" -#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 -msgid "Last Modified" -msgstr "Zuletzt geändert" +#: ../../include/js_strings.php:61 +msgid "Jun" +msgstr "Jun" -#: ../../include/RedDAV/RedBrowser.php:268 ../../include/ItemObject.php:120 -#: ../../include/apps.php:255 ../../include/conversation.php:645 -#: ../../mod/connedit.php:533 ../../mod/settings.php:646 -#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:735 -#: ../../mod/admin.php:866 ../../mod/photos.php:1044 -msgid "Delete" -msgstr "Löschen" +#: ../../include/js_strings.php:62 +msgid "Jul" +msgstr "Jul" -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "Neuen Ordner anlegen" +#: ../../include/js_strings.php:63 +msgid "Aug" +msgstr "Aug" -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "Datei hochladen" +#: ../../include/js_strings.php:64 +msgid "Sep" +msgstr "Sep" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" +#: ../../include/js_strings.php:65 +msgid "Oct" +msgstr "Okt" -#: ../../include/taxonomy.php:215 ../../include/taxonomy.php:234 -msgid "Tags" -msgstr "Schlagwörter" +#: ../../include/js_strings.php:66 +msgid "Nov" +msgstr "Nov" -#: ../../include/taxonomy.php:274 -msgid "Keywords" -msgstr "Schlüsselwörter" +#: ../../include/js_strings.php:67 +msgid "Dec" +msgstr "Dez" -#: ../../include/taxonomy.php:299 -msgid "have" -msgstr "habe" +#: ../../include/js_strings.php:68 ../../include/text.php:1140 +msgid "Sunday" +msgstr "Sonntag" -#: ../../include/taxonomy.php:299 -msgid "has" -msgstr "hat" +#: ../../include/js_strings.php:69 ../../include/text.php:1140 +msgid "Monday" +msgstr "Montag" -#: ../../include/taxonomy.php:300 -msgid "want" -msgstr "will" +#: ../../include/js_strings.php:70 ../../include/text.php:1140 +msgid "Tuesday" +msgstr "Dienstag" -#: ../../include/taxonomy.php:300 -msgid "wants" -msgstr "will" +#: ../../include/js_strings.php:71 ../../include/text.php:1140 +msgid "Wednesday" +msgstr "Mittwoch" -#: ../../include/taxonomy.php:301 ../../include/ItemObject.php:254 -msgid "like" -msgstr "mag" +#: ../../include/js_strings.php:72 ../../include/text.php:1140 +msgid "Thursday" +msgstr "Donnerstag" -#: ../../include/taxonomy.php:301 -msgid "likes" -msgstr "gefällt" +#: ../../include/js_strings.php:73 ../../include/text.php:1140 +msgid "Friday" +msgstr "Freitag" -#: ../../include/taxonomy.php:302 ../../include/ItemObject.php:255 -msgid "dislike" -msgstr "verurteile" +#: ../../include/js_strings.php:74 ../../include/text.php:1140 +msgid "Saturday" +msgstr "Samstag" -#: ../../include/taxonomy.php:302 -msgid "dislikes" -msgstr "missfällt" +#: ../../include/js_strings.php:75 +msgid "Sun" +msgstr "So" -#: ../../include/taxonomy.php:385 ../../include/identity.php:1155 -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1692 -#: ../../mod/photos.php:1001 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" +#: ../../include/js_strings.php:76 +msgid "Mon" +msgstr "Mp" -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Allgemeine Funktionen" +#: ../../include/js_strings.php:77 +msgid "Tue" +msgstr "Di" -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Verfall von Inhalten" +#: ../../include/js_strings.php:78 +msgid "Wed" +msgstr "Mi" -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum." +#: ../../include/js_strings.php:79 +msgid "Thu" +msgstr "Do" -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Mehrfachprofile" +#: ../../include/js_strings.php:80 +msgid "Fri" +msgstr "Fr" -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Mehrfachprofile anlegen können" +#: ../../include/js_strings.php:81 +msgid "Sat" +msgstr "Sa" -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Erweiterte Profile" +#: ../../include/js_strings.php:82 +msgctxt "calendar" +msgid "today" +msgstr "heute" -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "month" +msgstr "Monat" -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Profil-Import/Export" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "week" +msgstr "Woche" -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Speichere Dein Profil, um es in einen anderen Kanal zu importieren" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "day" +msgstr "Tag" -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Webseiten" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "All day" +msgstr "Ganztägig" -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Häufig" -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Private Notizen" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Kanal-Auswahl in der Navigationsleiste" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Täglich" -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" -#: ../../include/features.php:50 -msgid "Extended Identity Sharing" -msgstr "Erweitertes Teilen von Identitäten" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" -#: ../../include/features.php:50 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt." +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/features.php:51 -msgid "Expert Mode" -msgstr "Expertenmodus" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/features.php:51 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/features.php:52 -msgid "Premium Channel" -msgstr "Premium-Kanal" +#: ../../include/contact_selectors.php:79 ../../mod/id.php:15 +#: ../../mod/id.php:16 ../../mod/admin.php:779 ../../mod/admin.php:788 +#: ../../boot.php:1499 +msgid "Email" +msgstr "E-Mail" -#: ../../include/features.php:52 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/features.php:57 -msgid "Post Composition Features" -msgstr "Nachbearbeitungsfunktionen" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/features.php:59 -msgid "Use Markdown" -msgstr "Markdown benutzen" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../include/features.php:59 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/features.php:60 -msgid "Large Photos" -msgstr "Große Fotos" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/features.php:60 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt." +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/features.php:61 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds" +#: ../../include/activities.php:42 +msgid " and " +msgstr "und" -#: ../../include/features.php:62 -msgid "Even More Encryption" -msgstr "Noch mehr Verschlüsselung" +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "öffentliches Profil" -#: ../../include/features.php:62 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)" +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" -#: ../../include/features.php:63 -msgid "Enable voting tools" -msgstr "Umfragewerkzeuge aktivieren" +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" -#: ../../include/features.php:63 -msgid "Provide a class of post which others can vote on" -msgstr "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." -#: ../../include/features.php:64 -msgid "Flag Adult Photos" -msgstr "Nicht jugendfreie Fotos markieren" +#: ../../include/Contact.php:101 ../../include/conversation.php:947 +#: ../../include/identity.php:941 ../../include/widgets.php:136 +#: ../../include/widgets.php:174 ../../mod/directory.php:316 +#: ../../mod/match.php:64 ../../mod/suggest.php:52 +msgid "Connect" +msgstr "Verbinden" -#: ../../include/features.php:64 -msgid "Provide photo edit option to hide adult photos from default album view" -msgstr "Stellt eine Option zum Verstecken von Fotos mit nicht jugendfreien Inhalten in der Standard-Albumansicht bereit" +#: ../../include/Contact.php:118 +msgid "New window" +msgstr "Neues Fenster" -#: ../../include/features.php:69 -msgid "Network and Stream Filtering" -msgstr "Netzwerk- und Stream-Filter" +#: ../../include/Contact.php:119 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" -#: ../../include/features.php:70 -msgid "Search by Date" -msgstr "Suche nach Datum" +#: ../../include/Contact.php:237 +#, php-format +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" -#: ../../include/features.php:70 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" +#: ../../include/dba/dba_driver.php:141 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../include/features.php:71 -msgid "Collections Filter" -msgstr "Filter für Sammlung" +#: ../../include/conversation.php:120 ../../include/text.php:1832 +#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "photo" +msgstr "Foto" -#: ../../include/features.php:71 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen" +#: ../../include/conversation.php:123 ../../include/text.php:1835 +#: ../../include/event.php:896 ../../mod/like.php:363 ../../mod/tagger.php:47 +#: ../../mod/events.php:245 +msgid "event" +msgstr "Termin" + +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "Kanal" + +#: ../../include/conversation.php:148 ../../include/text.php:1838 +#: ../../mod/like.php:361 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "status" +msgstr "Status" + +#: ../../include/conversation.php:150 ../../include/text.php:1840 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "Kommentar" + +#: ../../include/conversation.php:164 ../../mod/like.php:410 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s" + +#: ../../include/conversation.php:167 ../../mod/like.php:412 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s nicht" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ist jetzt mit %2$s verbunden" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" + +#: ../../include/conversation.php:243 ../../include/text.php:933 +msgid "poked" +msgstr "stupste" + +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" + +#: ../../include/conversation.php:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../include/conversation.php:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" + +#: ../../include/conversation.php:661 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Auswählen" + +#: ../../include/conversation.php:669 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Private Nachricht" + +#: ../../include/conversation.php:676 ../../include/ItemObject.php:227 +msgid "Message signature validated" +msgstr "Signatur überprüft" + +#: ../../include/conversation.php:677 ../../include/ItemObject.php:228 +msgid "Message signature incorrect" +msgstr "Signatur nicht korrekt" + +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" + +#: ../../include/conversation.php:709 +msgid "Categories:" +msgstr "Kategorien:" + +#: ../../include/conversation.php:710 +msgid "Filed under:" +msgstr "Gespeichert unter:" + +#: ../../include/conversation.php:718 ../../include/ItemObject.php:314 +#, php-format +msgid "from %s" +msgstr "via %s" + +#: ../../include/conversation.php:721 ../../include/ItemObject.php:317 +#, php-format +msgid "last edited: %s" +msgstr "zuletzt bearbeitet: %s" + +#: ../../include/conversation.php:722 ../../include/ItemObject.php:318 +#, php-format +msgid "Expires: %s" +msgstr "Verfällt: %s" + +#: ../../include/conversation.php:737 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" + +#: ../../include/conversation.php:739 ../../include/conversation.php:1212 +#: ../../include/ItemObject.php:366 ../../mod/editpost.php:130 +#: ../../mod/editblock.php:150 ../../mod/photos.php:990 ../../mod/mail.php:237 +#: ../../mod/mail.php:365 ../../mod/editlayout.php:148 +#: ../../mod/editwebpage.php:190 +msgid "Please wait" +msgstr "Bitte warten" + +#: ../../include/conversation.php:848 +msgid "remove" +msgstr "lösche" + +#: ../../include/conversation.php:852 ../../include/nav.php:241 +msgid "Loading..." +msgstr "Lädt ..." + +#: ../../include/conversation.php:853 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" + +#: ../../include/conversation.php:941 +msgid "View Source" +msgstr "Quelle anzeigen" + +#: ../../include/conversation.php:942 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" + +#: ../../include/conversation.php:943 +msgid "View Status" +msgstr "Status ansehen" + +#: ../../include/conversation.php:944 ../../include/nav.php:86 +#: ../../mod/connedit.php:494 +msgid "View Profile" +msgstr "Profil ansehen" + +#: ../../include/conversation.php:945 +msgid "View Photos" +msgstr "Fotos ansehen" + +#: ../../include/conversation.php:946 +msgid "Activity/Posts" +msgstr "Aktivitäten/Beiträge" + +#: ../../include/conversation.php:948 +msgid "Edit Connection" +msgstr "Verbindung bearbeiten" + +#: ../../include/conversation.php:949 +msgid "Send PM" +msgstr "Sende PN" + +#: ../../include/conversation.php:950 ../../include/apps.php:145 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../include/conversation.php:1064 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1064 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." + +#: ../../include/conversation.php:1068 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d Person gefällt das." +msgstr[1] "%2$d Leuten gefällt das." + +#: ../../include/conversation.php:1070 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d Person gefällt das nicht." +msgstr[1] "%2$d Leuten gefällt das nicht." + +#: ../../include/conversation.php:1076 +msgid "and" +msgstr "und" + +#: ../../include/conversation.php:1079 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] ", und %d andere" + +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s like this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s don't like this." +msgstr "%s gefällt das nicht." + +#: ../../include/conversation.php:1143 +msgid "Visible to everybody" +msgstr "Sichtbar für jeden" + +#: ../../include/conversation.php:1144 ../../mod/mail.php:170 +#: ../../mod/mail.php:299 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" + +#: ../../include/conversation.php:1145 +msgid "Please enter a video link/URL:" +msgstr "Gib einen Video-Link/URL ein:" + +#: ../../include/conversation.php:1146 +msgid "Please enter an audio link/URL:" +msgstr "Gib einen Audio-Link/URL ein:" + +#: ../../include/conversation.php:1147 +msgid "Tag term:" +msgstr "Schlagwort:" + +#: ../../include/conversation.php:1148 ../../mod/filer.php:48 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" + +#: ../../include/conversation.php:1149 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" + +#: ../../include/conversation.php:1150 ../../mod/editpost.php:54 +#: ../../mod/mail.php:171 ../../mod/mail.php:300 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verfällt YYYY-MM-DD HH;MM" + +#: ../../include/conversation.php:1158 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:683 ../../mod/editpost.php:150 +#: ../../mod/editblock.php:171 ../../mod/photos.php:1010 +#: ../../mod/events.php:707 ../../mod/webpages.php:188 +#: ../../mod/editwebpage.php:212 +msgid "Preview" +msgstr "Vorschau" + +#: ../../include/conversation.php:1177 ../../mod/layouts.php:184 +#: ../../mod/photos.php:989 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 +msgid "Share" +msgstr "Teilen" + +#: ../../include/conversation.php:1179 +msgid "Page link name" +msgstr "Link zur Seite" + +#: ../../include/conversation.php:1182 +msgid "Post as" +msgstr "Veröffentlichen als" + +#: ../../include/conversation.php:1184 ../../include/ItemObject.php:675 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 +msgid "Bold" +msgstr "Fett" + +#: ../../include/conversation.php:1185 ../../include/ItemObject.php:676 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:137 +#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 +msgid "Italic" +msgstr "Kursiv" + +#: ../../include/conversation.php:1186 ../../include/ItemObject.php:677 +#: ../../mod/editpost.php:116 ../../mod/editblock.php:138 +#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 +msgid "Underline" +msgstr "Unterstrichen" + +#: ../../include/conversation.php:1187 ../../include/ItemObject.php:678 +#: ../../mod/editpost.php:117 ../../mod/editblock.php:139 +#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 +msgid "Quote" +msgstr "Zitat" + +#: ../../include/conversation.php:1188 ../../include/ItemObject.php:679 +#: ../../mod/editpost.php:118 ../../mod/editblock.php:140 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 +msgid "Code" +msgstr "Code" + +#: ../../include/conversation.php:1189 ../../mod/editpost.php:119 +#: ../../mod/editblock.php:142 ../../mod/mail.php:234 ../../mod/mail.php:361 +#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:182 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: ../../include/conversation.php:1190 +msgid "upload photo" +msgstr "Foto hochladen" + +#: ../../include/conversation.php:1191 ../../mod/editpost.php:120 +#: ../../mod/editblock.php:143 ../../mod/mail.php:235 ../../mod/mail.php:362 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 +msgid "Attach file" +msgstr "Datei anhängen" + +#: ../../include/conversation.php:1192 +msgid "attach file" +msgstr "Datei anfügen" + +#: ../../include/conversation.php:1193 ../../mod/editpost.php:121 +#: ../../mod/editblock.php:144 ../../mod/mail.php:236 ../../mod/mail.php:363 +#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 +msgid "Insert web link" +msgstr "Link einfügen" + +#: ../../include/conversation.php:1194 +msgid "web link" +msgstr "Web-Link" + +#: ../../include/conversation.php:1195 +msgid "Insert video link" +msgstr "Video-Link einfügen" + +#: ../../include/conversation.php:1196 +msgid "video link" +msgstr "Video-Link" + +#: ../../include/conversation.php:1197 +msgid "Insert audio link" +msgstr "Audio-Link einfügen" + +#: ../../include/conversation.php:1198 +msgid "audio link" +msgstr "Audio-Link" + +#: ../../include/conversation.php:1199 ../../mod/editpost.php:125 +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:188 +msgid "Set your location" +msgstr "Standort" + +#: ../../include/conversation.php:1200 +msgid "set location" +msgstr "Standort" + +#: ../../include/conversation.php:1201 ../../mod/editpost.php:127 +msgid "Toggle voting" +msgstr "Umfragewerkzeug aktivieren" + +#: ../../include/conversation.php:1204 ../../mod/editpost.php:126 +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:189 +msgid "Clear browser location" +msgstr "Browser-Standort löschen" + +#: ../../include/conversation.php:1205 +msgid "clear location" +msgstr "Standort löschen" + +#: ../../include/conversation.php:1207 ../../mod/editpost.php:142 +#: ../../mod/editblock.php:162 ../../mod/editwebpage.php:205 +msgid "Title (optional)" +msgstr "Titel (optional)" + +#: ../../include/conversation.php:1211 ../../mod/editpost.php:144 +#: ../../mod/editblock.php:165 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:207 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" + +#: ../../include/conversation.php:1213 ../../mod/editpost.php:131 +#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:191 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" + +#: ../../include/conversation.php:1214 +msgid "permissions" +msgstr "Berechtigungen" + +#: ../../include/conversation.php:1222 ../../mod/editpost.php:139 +#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:200 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: ../../include/conversation.php:1224 ../../mod/editpost.php:145 +#: ../../mod/editblock.php:166 ../../mod/editlayout.php:164 +#: ../../mod/editwebpage.php:208 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Beispiel: bob@example.com, mary@example.com" + +#: ../../include/conversation.php:1237 ../../mod/editpost.php:156 +#: ../../mod/editblock.php:176 ../../mod/mail.php:241 ../../mod/mail.php:368 +#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 +msgid "Set expiration date" +msgstr "Verfallsdatum" + +#: ../../include/conversation.php:1239 ../../include/ItemObject.php:686 +#: ../../mod/editpost.php:158 ../../mod/mail.php:243 ../../mod/mail.php:370 +msgid "Encrypt text" +msgstr "Text verschlüsseln" -#: ../../include/features.php:72 -msgid "Save search terms for re-use" -msgstr "Suchbegriffe zur Wiederverwendung abspeichern" +#: ../../include/conversation.php:1241 ../../mod/editpost.php:160 +#: ../../mod/events.php:691 +msgid "OK" +msgstr "Ok" -#: ../../include/features.php:73 -msgid "Network Personal Tab" -msgstr "Persönlicher Netzwerkreiter" +#: ../../include/conversation.php:1242 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:161 +#: ../../mod/events.php:690 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +#: ../../mod/settings.php:584 ../../mod/settings.php:610 +msgid "Cancel" +msgstr "Abbrechen" -#: ../../include/features.php:73 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast" +#: ../../include/conversation.php:1485 +msgid "Discover" +msgstr "Entdecken" -#: ../../include/features.php:74 -msgid "Network New Tab" -msgstr "Netzwerkreiter Neu" +#: ../../include/conversation.php:1488 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" -#: ../../include/features.php:74 -msgid "Enable tab to display all new Network activity" -msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" +#: ../../include/conversation.php:1493 +msgid "Commented Order" +msgstr "Neueste Kommentare" -#: ../../include/features.php:75 -msgid "Affinity Tool" -msgstr "Beziehungs-Tool" +#: ../../include/conversation.php:1496 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" -#: ../../include/features.php:75 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" +#: ../../include/conversation.php:1500 +msgid "Posted Order" +msgstr "Neueste Beiträge" -#: ../../include/features.php:76 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" +#: ../../include/conversation.php:1503 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" -#: ../../include/features.php:76 -msgid "Show channel suggestions" -msgstr "Kanalvorschläge anzeigen" +#: ../../include/conversation.php:1508 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Persönlich" -#: ../../include/features.php:81 -msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" +#: ../../include/conversation.php:1511 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/features.php:82 -msgid "Tagging" -msgstr "Verschlagworten" +#: ../../include/conversation.php:1517 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" +msgstr "Neu" -#: ../../include/features.php:82 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" +#: ../../include/conversation.php:1520 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/features.php:83 -msgid "Post Categories" -msgstr "Beitrags-Kategorien" +#: ../../include/conversation.php:1526 +msgid "Starred" +msgstr "Markiert" -#: ../../include/features.php:83 -msgid "Add categories to your posts" -msgstr "Kategorien für Beiträge" +#: ../../include/conversation.php:1529 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" -#: ../../include/features.php:84 -msgid "Ability to file posts under folders" -msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" +#: ../../include/conversation.php:1536 +msgid "Spam" +msgstr "Spam" -#: ../../include/features.php:85 -msgid "Dislike Posts" -msgstr "Gefällt-mir-nicht Beiträge" +#: ../../include/conversation.php:1539 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/features.php:85 -msgid "Ability to dislike posts/comments" -msgstr "„Gefällt mir nicht“ ermöglichen" +#: ../../include/conversation.php:1583 ../../mod/admin.php:947 +msgid "Channel" +msgstr "Kanal" -#: ../../include/features.php:86 -msgid "Star Posts" -msgstr "Beiträge mit Sternchen versehen" +#: ../../include/conversation.php:1586 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" -#: ../../include/features.php:86 -msgid "Ability to mark special posts with a star indicator" -msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren" +#: ../../include/conversation.php:1595 +msgid "About" +msgstr "Über" -#: ../../include/features.php:87 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" +#: ../../include/conversation.php:1598 +msgid "Profile Details" +msgstr "Profil-Details" -#: ../../include/features.php:87 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" +#: ../../include/conversation.php:1604 ../../include/apps.php:139 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "Ausgeloggt." +#: ../../include/conversation.php:1607 ../../include/photos.php:422 +msgid "Photo Albums" +msgstr "Fotoalben" -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" +#: ../../include/conversation.php:1614 +msgid "Files and Storage" +msgstr "Dateien und Speicher" -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Login fehlgeschlagen." +#: ../../include/conversation.php:1624 ../../include/conversation.php:1627 +msgid "Chatrooms" +msgstr "Chaträume" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Häufig" +#: ../../include/conversation.php:1637 ../../include/apps.php:129 +#: ../../include/nav.php:103 +msgid "Bookmarks" +msgstr "Lesezeichen" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" +#: ../../include/conversation.php:1640 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" +#: ../../include/conversation.php:1647 ../../include/apps.php:136 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Webseiten" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Täglich" +#: ../../include/conversation.php:1650 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" +#: ../../include/conversation.php:1679 ../../include/ItemObject.php:175 +#: ../../include/ItemObject.php:187 ../../mod/photos.php:1043 +#: ../../mod/photos.php:1055 +msgid "View all" +msgstr "Alles anzeigen" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" +#: ../../include/conversation.php:1703 ../../include/taxonomy.php:403 +#: ../../include/identity.php:1252 ../../include/ItemObject.php:179 +#: ../../mod/photos.php:1047 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/conversation.php:1706 ../../include/ItemObject.php:184 +#: ../../mod/photos.php:1052 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Gefällt nicht" +msgstr[1] "Gefällt nicht" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/conversation.php:1709 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Zusage" +msgstr[1] "Zusagen" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/conversation.php:1712 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Absage" +msgstr[1] "Absagen" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 -#: ../../mod/admin.php:740 ../../boot.php:1554 -msgid "Email" -msgstr "E-Mail" +#: ../../include/conversation.php:1715 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] " Unentschlossen" +msgstr[1] "Unentschlossene" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/conversation.php:1718 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Zustimmung" +msgstr[1] "Zustimmungen" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Ablehnung" +msgstr[1] "Ablehnungen" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Enthaltung" +msgstr[1] "Enthaltungen" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/api.php:1290 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/photos.php:109 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/photos.php:116 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: ../../include/group.php:26 -msgid "" -"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." -msgstr "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen." +#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 +msgid "Unable to process image" +msgstr "Kann Bild nicht verarbeiten" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standard-Sammlung für neue Kontakte" +#: ../../include/photos.php:219 +msgid "Photo storage failed." +msgstr "Foto speichern schlug fehl" -#: ../../include/group.php:254 ../../mod/admin.php:740 -msgid "All Channels" -msgstr "Alle Kanäle" +#: ../../include/photos.php:426 +msgid "Upload New Photos" +msgstr "Lade neue Fotos hoch" -#: ../../include/group.php:276 -msgid "edit" -msgstr "Bearbeiten" +#: ../../include/enotify.php:57 ../../include/network.php:1613 +msgid "$Projectname Notification" +msgstr "$Projectname-Benachrichtigung" + +#: ../../include/enotify.php:58 ../../include/network.php:1614 +msgid "$projectname" +msgstr "$projectname" + +#: ../../include/enotify.php:60 ../../include/network.php:1616 +msgid "Thank You," +msgstr "Danke." + +#: ../../include/enotify.php:62 ../../include/network.php:1618 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" + +#: ../../include/enotify.php:96 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:100 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" + +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Sammlungen" +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Sammlung bearbeiten" +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "eine private Nachricht" -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Neue Sammlung erzeugen" +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" +#: ../../include/enotify.php:158 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" -#: ../../include/identity.php:31 ../../mod/item.php:1078 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" +#: ../../include/enotify.php:166 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" +#: ../../include/enotify.php:175 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Name ist zu lang" +#: ../../include/enotify.php:186 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Keine Account-Kennung" +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." +#: ../../include/enotify.php:190 ../../include/enotify.php:205 +#: ../../include/enotify.php:231 ../../include/enotify.php:249 +#: ../../include/enotify.php:263 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." +#: ../../include/enotify.php:196 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standard-Profil" +#: ../../include/enotify.php:224 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" -#: ../../include/identity.php:691 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/editblock.php:29 -#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/hcard.php:8 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:53 ../../mod/webpages.php:29 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "Erwünschte Profil ist nicht verfügbar." +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." -#: ../../include/identity.php:854 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Profilfoto ändern" +#: ../../include/enotify.php:238 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" -#: ../../include/identity.php:861 -msgid "Profiles" -msgstr "Profile" +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/bearbeiten" +#: ../../include/enotify.php:240 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." -#: ../../include/identity.php:862 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" +#: ../../include/enotify.php:256 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" -#: ../../include/identity.php:865 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Profile bearbeiten" +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" -#: ../../include/identity.php:878 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profilfoto:" +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" -#: ../../include/identity.php:881 -msgid "visible to everybody" -msgstr "sichtbar für jeden" +#: ../../include/enotify.php:270 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Benachrichtigung] Vorstellung erhalten" -#: ../../include/identity.php:882 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" +#: ../../include/enotify.php:271 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" -#: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 -#: ../../include/event.php:40 ../../mod/events.php:645 -#: ../../mod/directory.php:204 -msgid "Location:" -msgstr "Ort:" +#: ../../include/enotify.php:272 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." -#: ../../include/identity.php:898 ../../include/identity.php:1139 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kannst Dir das Profil unter %s ansehen" -#: ../../include/identity.php:899 ../../include/identity.php:1183 -msgid "Status:" -msgstr "Status:" +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." -#: ../../include/identity.php:900 ../../include/identity.php:1194 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../include/enotify.php:285 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" -#: ../../include/identity.php:901 -msgid "Online Now" -msgstr "gerade online" +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" -#: ../../include/identity.php:983 ../../include/identity.php:1063 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" +#: ../../include/enotify.php:287 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." -#: ../../include/identity.php:984 ../../include/identity.php:1064 -msgid "F d" -msgstr "d. F" +#: ../../include/enotify.php:293 +msgid "Name:" +msgstr "Name:" -#: ../../include/identity.php:1029 ../../include/identity.php:1104 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[Heute]" +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" -#: ../../include/identity.php:1041 -msgid "Birthday Reminders" -msgstr "Geburtstags Erinnerungen" +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." -#: ../../include/identity.php:1042 -msgid "Birthdays this week:" -msgstr "Geburtstage in dieser Woche:" +#: ../../include/enotify.php:508 +msgid "[Red:Notify]" +msgstr "[Red:Benachrichtigung]" -#: ../../include/identity.php:1097 -msgid "[No description]" -msgstr "[Keine Beschreibung]" +#: ../../include/network.php:635 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" -#: ../../include/identity.php:1115 -msgid "Event Reminders" -msgstr "Termin-Erinnerungen" +#: ../../include/network.php:1660 ../../include/account.php:314 +#: ../../include/account.php:341 ../../include/account.php:401 +msgid "Administrator" +msgstr "Administrator" -#: ../../include/identity.php:1116 -msgid "Events this week:" -msgstr "Termine in dieser Woche:" +#: ../../include/network.php:1674 +msgid "No Subject" +msgstr "Kein Betreff" -#: ../../include/identity.php:1129 ../../include/identity.php:1246 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" -#: ../../include/identity.php:1137 ../../mod/settings.php:1044 -msgid "Full Name:" -msgstr "Voller Name:" +#: ../../include/text.php:391 +msgid "prev" +msgstr "vorherige" -#: ../../include/identity.php:1144 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" +#: ../../include/text.php:393 +msgid "first" +msgstr "erste" -#: ../../include/identity.php:1168 -msgid "j F, Y" -msgstr "j. F Y" +#: ../../include/text.php:422 +msgid "last" +msgstr "letzte" -#: ../../include/identity.php:1169 -msgid "j F" -msgstr "j. F" +#: ../../include/text.php:425 +msgid "next" +msgstr "nächste" -#: ../../include/identity.php:1176 -msgid "Birthday:" -msgstr "Geburtstag:" +#: ../../include/text.php:435 +msgid "older" +msgstr "älter" -#: ../../include/identity.php:1180 -msgid "Age:" -msgstr "Alter:" +#: ../../include/text.php:437 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:775 +msgid "No connections" +msgstr "Keine Verbindungen" -#: ../../include/identity.php:1189 +#: ../../include/text.php:787 #, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d Verbindung" +msgstr[1] "%d Verbindungen" -#: ../../include/identity.php:1192 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/text.php:800 ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "Verbindungen anzeigen" -#: ../../include/identity.php:1196 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Heimatstadt:" +#: ../../include/text.php:857 ../../include/text.php:869 +#: ../../include/apps.php:147 ../../include/nav.php:159 +#: ../../mod/search.php:38 +msgid "Search" +msgstr "Suche" -#: ../../include/identity.php:1198 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/text.php:858 ../../include/text.php:870 +#: ../../include/widgets.php:191 ../../mod/filer.php:49 +#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "Speichern" -#: ../../include/identity.php:1200 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/text.php:933 +msgid "poke" +msgstr "anstupsen" -#: ../../include/identity.php:1202 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/text.php:934 +msgid "ping" +msgstr "anpingen" -#: ../../include/identity.php:1204 -msgid "About:" -msgstr "Über:" +#: ../../include/text.php:934 +msgid "pinged" +msgstr "pingte" -#: ../../include/identity.php:1206 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../include/text.php:935 +msgid "prod" +msgstr "knuffen" -#: ../../include/identity.php:1208 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../include/text.php:935 +msgid "prodded" +msgstr "knuffte" -#: ../../include/identity.php:1210 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../include/text.php:936 +msgid "slap" +msgstr "ohrfeigen" -#: ../../include/identity.php:1212 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/text.php:936 +msgid "slapped" +msgstr "ohrfeigte" -#: ../../include/identity.php:1214 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../include/text.php:937 +msgid "finger" +msgstr "befummeln" -#: ../../include/identity.php:1216 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/text.php:937 +msgid "fingered" +msgstr "befummelte" -#: ../../include/identity.php:1218 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../include/text.php:938 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" -#: ../../include/identity.php:1220 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../include/text.php:938 +msgid "rebuffed" +msgstr "zurückgewiesen" -#: ../../include/identity.php:1222 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/text.php:948 +msgid "happy" +msgstr "glücklich" -#: ../../include/identity.php:1224 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/text.php:949 +msgid "sad" +msgstr "traurig" -#: ../../include/identity.php:1226 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/text.php:950 +msgid "mellow" +msgstr "sanft" -#: ../../include/identity.php:1228 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/text.php:951 +msgid "tired" +msgstr "müde" -#: ../../include/identity.php:1248 -msgid "Like this thing" -msgstr "Gefällt mir" +#: ../../include/text.php:952 +msgid "perky" +msgstr "frech" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" +#: ../../include/text.php:953 +msgid "angry" +msgstr "sauer" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[no subject]" +#: ../../include/text.php:954 +msgid "stupified" +msgstr "verblüfft" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." +#: ../../include/text.php:955 +msgid "puzzled" +msgstr "verwirrt" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." +#: ../../include/text.php:956 +msgid "interested" +msgstr "interessiert" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " +#: ../../include/text.php:957 +msgid "bitter" +msgstr "verbittert" -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." +#: ../../include/text.php:958 +msgid "cheerful" +msgstr "fröhlich" -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." +#: ../../include/text.php:959 +msgid "alive" +msgstr "lebendig" -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." +#: ../../include/text.php:960 +msgid "annoyed" +msgstr "verärgert" -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." +#: ../../include/text.php:961 +msgid "anxious" +msgstr "unruhig" -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" +#: ../../include/text.php:962 +msgid "cranky" +msgstr "schrullig" -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "Lokales Konto nicht gefunden." +#: ../../include/text.php:963 +msgid "disturbed" +msgstr "verstört" -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." +#: ../../include/text.php:964 +msgid "frustrated" +msgstr "frustriert" -#: ../../include/comanche.php:35 ../../mod/admin.php:357 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" +#: ../../include/text.php:965 +msgid "depressed" +msgstr "deprimiert" -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Verschiedenes" +#: ../../include/text.php:966 +msgid "motivated" +msgstr "motiviert" -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" +#: ../../include/text.php:967 +msgid "relaxed" +msgstr "entspannt" -#: ../../include/datetime.php:212 ../../mod/events.php:633 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Benötigt" +#: ../../include/text.php:968 +msgid "surprised" +msgstr "überrascht" -#: ../../include/datetime.php:231 -msgid "never" -msgstr "Nie" +#: ../../include/text.php:1144 +msgid "May" +msgstr "Mai" -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" +#: ../../include/text.php:1247 +msgid "unknown.???" +msgstr "unbekannt.???" -#: ../../include/datetime.php:240 -msgid "year" -msgstr "Jahr" +#: ../../include/text.php:1248 +msgid "bytes" +msgstr "Bytes" -#: ../../include/datetime.php:240 -msgid "years" -msgstr "Jahre" +#: ../../include/text.php:1284 +msgid "remove category" +msgstr "Kategorie entfernen" -#: ../../include/datetime.php:241 -msgid "month" -msgstr "Monat" +#: ../../include/text.php:1359 +msgid "remove from file" +msgstr "aus der Datei entfernen" -#: ../../include/datetime.php:241 -msgid "months" -msgstr "Monate" +#: ../../include/text.php:1443 ../../include/text.php:1454 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/datetime.php:242 -msgid "week" -msgstr "Woche" +#: ../../include/text.php:1609 ../../mod/events.php:497 +msgid "Link to Source" +msgstr "Link zur Quelle" -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "Wochen" +#: ../../include/text.php:1630 ../../include/text.php:1701 +msgid "default" +msgstr "Standard" -#: ../../include/datetime.php:243 -msgid "day" -msgstr "Tag" +#: ../../include/text.php:1638 +msgid "Page layout" +msgstr "Seiten-Layout" -#: ../../include/datetime.php:243 -msgid "days" -msgstr "Tage" +#: ../../include/text.php:1638 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "Stunde" +#: ../../include/text.php:1679 +msgid "Page content type" +msgstr "Art des Seiteninhalts" -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "Stunden" +#: ../../include/text.php:1713 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "Minute" +#: ../../include/text.php:1845 +msgid "activity" +msgstr "Aktivität" -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "Minuten" +#: ../../include/text.php:2140 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" -#: ../../include/datetime.php:246 -msgid "second" -msgstr "Sekunde" +#: ../../include/text.php:2143 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Blöcke" -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "Sekunden" +#: ../../include/text.php:2144 ../../mod/menu.php:103 +msgid "Menus" +msgstr "Menüs" -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" +#: ../../include/text.php:2145 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Layouts" -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" +#: ../../include/text.php:2146 +msgid "Pages" +msgstr "Seiten" -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" +#: ../../include/acl_selectors.php:239 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit" -#: ../../include/bb2diaspora.php:349 -msgid "Attachments:" -msgstr "Anhänge:" +#: ../../include/acl_selectors.php:240 +msgid "Show" +msgstr "Anzeigen" -#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" +#: ../../include/acl_selectors.php:241 +msgid "Don't show" +msgstr "Nicht anzeigen" -#: ../../include/bb2diaspora.php:430 -msgid "Redmatrix event notification:" -msgstr "RedMatrix Termin-Benachrichtigung:" +#: ../../include/acl_selectors.php:247 ../../mod/filestorage.php:147 +#: ../../mod/chat.php:207 ../../mod/photos.php:592 ../../mod/photos.php:962 +#: ../../mod/events.php:708 ../../mod/thing.php:310 ../../mod/thing.php:356 +msgid "Permissions" +msgstr "Berechtigungen" -#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 -msgid "Starts:" -msgstr "Beginnt:" +#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:361 +#: ../../mod/photos.php:1179 +msgid "Close" +msgstr "Schließen" -#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Endet:" +#: ../../include/attach.php:243 ../../include/attach.php:329 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Der Chatraum hat keinen Namen" +#: ../../include/attach.php:471 +msgid "No source file." +msgstr "Keine Quelldatei." -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Name des Chatraums bereits vergeben" +#: ../../include/attach.php:489 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ungültiger Raumbezeichner." +#: ../../include/attach.php:507 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatraum konnte nicht gefunden werden." +#: ../../include/attach.php:632 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Der Raum ist voll" +#: ../../include/attach.php:645 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 -msgid "Logout" -msgstr "Abmelden" +#: ../../include/attach.php:793 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Beende diese Sitzung" +#: ../../include/attach.php:806 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Home" +#: ../../include/attach.php:854 ../../include/attach.php:870 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: ../../include/attach.php:916 ../../include/attach.php:1069 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" -#: ../../include/nav.php:91 ../../include/conversation.php:937 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "Profil ansehen" +#: ../../include/attach.php:942 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: ../../include/attach.php:965 +msgid "Path not found." +msgstr "Pfad nicht gefunden." -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" +#: ../../include/attach.php:1023 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" +#: ../../include/attach.php:1027 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Profil bearbeiten" +#: ../../include/attach.php:1075 +msgid "Empty path" +msgstr "Leere Pfadangabe" -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1586 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" +#: ../../include/import.php:23 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Deine Bilder" +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Deine Dateien" +#: ../../include/import.php:80 ../../mod/import.php:138 +msgid "Cloned channel not found. Import failed." +msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "Neuer Beitrag wurde erzeugt" -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Deine Chaträume" +#: ../../include/notify.php:21 +#, php-format +msgid "commented on %s's post" +msgstr "hat %s's Beitrag kommentiert" -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1621 -msgid "Bookmarks" -msgstr "Lesezeichen" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Neue Seite" -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" +#: ../../include/page_widgets.php:39 ../../mod/layouts.php:188 +#: ../../mod/webpages.php:187 ../../mod/blocks.php:159 +msgid "View" +msgstr "Ansicht" -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1632 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webseiten" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Aktionen" -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Deine Webseiten" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 -msgid "Login" -msgstr "Anmelden" +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Anmelden" +#: ../../include/page_widgets.php:44 ../../mod/layouts.php:181 +#: ../../mod/menu.php:110 ../../mod/webpages.php:192 ../../mod/blocks.php:150 +msgid "Created" +msgstr "Erstellt" -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" +#: ../../include/page_widgets.php:45 ../../mod/layouts.php:182 +#: ../../mod/menu.php:111 ../../mod/webpages.php:193 ../../mod/blocks.php:151 +msgid "Edited" +msgstr "Geändert" -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" +#: ../../include/photo/photo_driver.php:705 ../../mod/photos.php:94 +#: ../../mod/photos.php:660 ../../mod/profile_photo.php:146 +#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:376 +msgid "Profile Photos" +msgstr "Profilfotos" -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 +msgid "Male" +msgstr "Männlich" -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 +msgid "Female" +msgstr "Weiblich" -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 -msgid "Register" -msgstr "Registrieren" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momentan männlich" -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Erzeuge ein Konto" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momentan weiblich" -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 -msgid "Help" -msgstr "Hilfe" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Größtenteils männlich" -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Größtenteils weiblich" -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transsexuell" -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Durchsuche Seiten-Inhalt" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Zwischengeschlechtlich" -#: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:334 -msgid "Directory" -msgstr "Verzeichnis" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuell" -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Zwitter" -#: ../../include/nav.php:182 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Geschlechtslos" -#: ../../include/nav.php:182 -msgid "Your matrix" -msgstr "Deine Matrix" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "unklar" -#: ../../include/nav.php:183 -msgid "Mark all matrix notifications seen" -msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Unentschieden" -#: ../../include/nav.php:185 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Mein Kanal" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Männer" -#: ../../include/nav.php:185 -msgid "Channel home" -msgstr "Mein Kanal" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Frauen" -#: ../../include/nav.php:186 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Schwul" -#: ../../include/nav.php:189 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Verbindungen" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/nav.php:192 -msgid "Notices" -msgstr "Benachrichtigungen" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Keine Bevorzugung" -#: ../../include/nav.php:192 -msgid "Notifications" -msgstr "Benachrichtigungen" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Bisexuell" -#: ../../include/nav.php:193 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autosexuell" -#: ../../include/nav.php:194 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Enthaltsam" -#: ../../include/nav.php:196 ../../include/apps.php:143 -msgid "Mail" -msgstr "Mail" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Jungfräulich" -#: ../../include/nav.php:196 -msgid "Private mail" -msgstr "Persönliche Mail" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Abweichend" -#: ../../include/nav.php:197 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetisch" -#: ../../include/nav.php:198 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Unmengen" -#: ../../include/nav.php:199 -msgid "Inbox" -msgstr "Eingang" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Sexlos" -#: ../../include/nav.php:200 -msgid "Outbox" -msgstr "Ausgang" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Single" -#: ../../include/nav.php:204 ../../include/apps.php:140 -#: ../../mod/events.php:472 -msgid "Events" -msgstr "Termine" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Einsam" -#: ../../include/nav.php:204 -msgid "Event Calendar" -msgstr "Terminkalender" +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Verfügbar" -#: ../../include/nav.php:205 -msgid "See all events" -msgstr "Alle Termine ansehen" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Nicht verfügbar" -#: ../../include/nav.php:206 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Verguckt" -#: ../../include/nav.php:208 ../../include/apps.php:132 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanal-Manager" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Verknallt" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Lerne gerade jemanden kennen" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Treulos" + +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Sexabhängig" -#: ../../include/nav.php:218 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Administration" +#: ../../include/profile_selectors.php:80 ../../include/identity.php:390 +#: ../../include/identity.php:391 ../../include/identity.php:398 +#: ../../include/widgets.php:429 ../../mod/connedit.php:569 +#: ../../mod/settings.php:337 ../../mod/settings.php:341 +#: ../../mod/settings.php:342 ../../mod/settings.php:345 +#: ../../mod/settings.php:356 +msgid "Friends" +msgstr "Freunde" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Freunde/Begünstigte" -#: ../../include/nav.php:249 ../../include/conversation.php:842 -msgid "Loading..." -msgstr "Lädt ..." +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Lose" -#: ../../include/nav.php:254 -msgid "@name, #tag, content" -msgstr "@Name, #Schlagwort, Text" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Verlobt" -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Bitte warten..." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Verheiratet" -#: ../../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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Gewissermaßen verheiratet" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:652 -msgid "Private Message" -msgstr "Private Nachricht" +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partner" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:644 -msgid "Select" -msgstr "Auswählen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Lebensgemeinschaft" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In Ordner speichern" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Informelle Ehe" -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Ich werde teilnehmen" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Glücklich" -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Ich werde nicht teilnehmen" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Nicht Ausschau haltend" -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Ich werde vielleicht teilnehmen" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Ich stimme zu" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Betrogen" -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Ich lehne ab" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Getrennt" -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Ich enthalte mich" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Labil" -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1667 ../../mod/photos.php:997 -#: ../../mod/photos.php:1009 -msgid "View all" -msgstr "Alles anzeigen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Geschieden" -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1695 -#: ../../mod/photos.php:1006 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Gewissermaßen geschieden" -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Stern hinzufügen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Verwitwet" -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Stern entfernen" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Ungewiss" -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Markierungsstatus (Stern) umschalten" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Es ist kompliziert" -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "markiert" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Interessiert mich nicht" -#: ../../include/ItemObject.php:227 ../../include/conversation.php:659 -msgid "Message signature validated" -msgstr "Signatur überprüft" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Frag mich mal" -#: ../../include/ItemObject.php:228 ../../include/conversation.php:660 -msgid "Message signature incorrect" -msgstr "Signatur nicht korrekt" +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Tag hinzufügen" +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" -#: ../../include/ItemObject.php:254 ../../mod/photos.php:941 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" +#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" -#: ../../include/ItemObject.php:255 ../../mod/photos.php:942 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 +msgid "Starts:" +msgstr "Beginnt:" -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Teilen" +#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 +msgid "Finishes:" +msgstr "Endet:" -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "Teilen" +#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 +#: ../../include/identity.php:992 ../../mod/directory.php:302 +#: ../../mod/events.php:701 +msgid "Location:" +msgstr "Ort:" -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" +#: ../../include/event.php:766 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Schaue Dir %ss Profil an – %s" +#: ../../include/event.php:953 +msgid "Not specified" +msgstr "Keine Angabe" -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "an" +#: ../../include/event.php:954 +msgid "Needs Action" +msgstr "Aktion erforderlich" -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "via" +#: ../../include/event.php:955 +msgid "Completed" +msgstr "Abgeschlossen" -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" +#: ../../include/event.php:956 +msgid "In Process" +msgstr "In Bearbeitung" -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" +#: ../../include/event.php:957 +msgid "Cancelled" +msgstr "gestrichen" -#: ../../include/ItemObject.php:312 ../../include/conversation.php:704 -#, php-format -msgid " from %s" -msgstr "von %s" +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Hub-Administration" -#: ../../include/ItemObject.php:315 ../../include/conversation.php:707 -#, php-format -msgid "last edited: %s" -msgstr "zuletzt bearbeitet: %s" +#: ../../include/apps.php:130 +msgid "Address Book" +msgstr "Adressbuch" -#: ../../include/ItemObject.php:316 ../../include/conversation.php:708 -#, php-format -msgid "Expires: %s" -msgstr "Verfällt: %s" +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1497 +msgid "Login" +msgstr "Anmelden" -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Favoriten speichern" +#: ../../include/apps.php:132 ../../include/nav.php:200 +#: ../../mod/manage.php:160 +msgid "Channel Manager" +msgstr "Kanal-Manager" -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Zum Kalender hinzufügen" +#: ../../include/apps.php:133 +msgid "Matrix" +msgstr "Matrix" -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Alle als gelesen markieren" +#: ../../include/apps.php:134 ../../include/widgets.php:553 +#: ../../include/nav.php:202 ../../mod/admin.php:1033 ../../mod/admin.php:1233 +msgid "Settings" +msgstr "Einstellungen" -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1125 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" +#: ../../include/apps.php:137 ../../include/nav.php:177 +msgid "Channel Home" +msgstr "Mein Kanal" -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1126 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" +#: ../../include/apps.php:138 ../../include/identity.php:1226 +#: ../../include/identity.php:1343 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1131 -msgid "Close" -msgstr "Schließen" +#: ../../include/apps.php:140 ../../include/nav.php:196 +#: ../../mod/events.php:526 +msgid "Events" +msgstr "Termine" -#: ../../include/ItemObject.php:364 ../../include/conversation.php:725 -#: ../../include/conversation.php:1198 ../../mod/editblock.php:152 -#: ../../mod/editpost.php:125 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:183 ../../mod/mail.php:241 ../../mod/mail.php:356 -#: ../../mod/photos.php:944 -msgid "Please wait" -msgstr "Bitte warten" +#: ../../include/apps.php:141 ../../include/nav.php:162 +msgid "Directory" +msgstr "Verzeichnis" -#: ../../include/ItemObject.php:665 ../../mod/photos.php:960 -#: ../../mod/photos.php:1078 -msgid "This is you" -msgstr "Das bist Du" +#: ../../include/apps.php:142 ../../include/nav.php:154 ../../mod/help.php:202 +#: ../../mod/help.php:207 ../../mod/layouts.php:176 +msgid "Help" +msgstr "Hilfe" -#: ../../include/ItemObject.php:669 -msgid "Bold" -msgstr "Fett" +#: ../../include/apps.php:143 ../../include/nav.php:188 +msgid "Mail" +msgstr "Mail" -#: ../../include/ItemObject.php:670 -msgid "Italic" -msgstr "Kursiv" +#: ../../include/apps.php:144 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Laune" -#: ../../include/ItemObject.php:671 -msgid "Underline" -msgstr "Unterstrichen" +#: ../../include/apps.php:146 ../../include/nav.php:97 +msgid "Chat" +msgstr "Chat" -#: ../../include/ItemObject.php:672 -msgid "Quote" -msgstr "Zitat" +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Testen" -#: ../../include/ItemObject.php:673 -msgid "Code" -msgstr "Code" +#: ../../include/apps.php:149 +msgid "Suggest" +msgstr "Empfehlen" -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Bild" +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Zufälliger Kanal" -#: ../../include/ItemObject.php:675 -msgid "Link" -msgstr "Link" +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Einladen" -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Video" +#: ../../include/apps.php:152 +msgid "Features" +msgstr "Funktionen" -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1224 -#: ../../mod/editpost.php:152 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Text verschlüsseln" +#: ../../include/apps.php:153 ../../mod/id.php:28 +msgid "Language" +msgstr "Sprache" -#: ../../include/activities.php:39 -msgid " and " -msgstr "und" +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Beitrag" -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "öffentliches Profil" +#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 +#: ../../mod/id.php:19 +msgid "Profile Photo" +msgstr "Profilfoto" -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" +#: ../../include/apps.php:247 ../../mod/settings.php:84 +#: ../../mod/settings.php:609 +msgid "Update" +msgstr "Aktualisieren" -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" +#: ../../include/apps.php:247 +msgid "Install" +msgstr "Installieren" -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." +#: ../../include/apps.php:252 +msgid "Purchase" +msgstr "Kaufen" -#: ../../include/dir_fns.php:96 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" +#: ../../include/auth.php:131 +msgid "Logged out." +msgstr "Ausgeloggt." -#: ../../include/dir_fns.php:97 -msgid "Alphabetic" -msgstr "alphabetisch" +#: ../../include/auth.php:272 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" -#: ../../include/dir_fns.php:98 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" +#: ../../include/auth.php:286 ../../mod/openid.php:189 +msgid "Login failed." +msgstr "Login fehlgeschlagen." -#: ../../include/dir_fns.php:99 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" +msgstr "Anhänge:" -#: ../../include/dir_fns.php:100 -msgid "Oldest to Newest" -msgstr "Älteste zuerst" +#: ../../include/bb2diaspora.php:461 +msgid "$Projectname event notification:" +msgstr "$Projectname-Terminbenachrichtigung:" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:793 +#: ../../include/bbcode.php:796 ../../include/bbcode.php:801 +#: ../../include/bbcode.php:804 ../../include/bbcode.php:807 +#: ../../include/bbcode.php:810 ../../include/bbcode.php:815 +#: ../../include/bbcode.php:818 ../../include/bbcode.php:823 +#: ../../include/bbcode.php:826 ../../include/bbcode.php:829 +#: ../../include/bbcode.php:832 +msgid "Image/photo" +msgstr "Bild/Foto" -#: ../../include/dir_fns.php:101 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:843 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" -#: ../../include/dir_fns.php:103 -msgid "Sort" -msgstr "Sortieren" +#: ../../include/bbcode.php:179 +#, php-format +msgid "Install %s element: " +msgstr "Element %s installieren: " -#: ../../include/dir_fns.php:119 -msgid "Enable Safe Search" -msgstr "Sichere Suche einschalten" +#: ../../include/bbcode.php:183 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." -#: ../../include/dir_fns.php:121 -msgid "Disable Safe Search" -msgstr "Sichere Suche ausschalten" +#: ../../include/bbcode.php:193 ../../mod/impel.php:37 +msgid "webpage" +msgstr "Webseite" -#: ../../include/dir_fns.php:123 -msgid "Safe Mode" -msgstr "Sicherer Modus" +#: ../../include/bbcode.php:196 ../../mod/impel.php:47 +msgid "layout" +msgstr "Layout" -#: ../../include/items.php:382 ../../mod/subthread.php:49 -#: ../../mod/group.php:68 ../../mod/profperm.php:23 ../../mod/like.php:270 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "Keine Berechtigung" +#: ../../include/bbcode.php:199 ../../mod/impel.php:42 +msgid "block" +msgstr "Block" -#: ../../include/items.php:979 ../../include/items.php:1024 -msgid "(Unknown)" -msgstr "(Unbekannt)" +#: ../../include/bbcode.php:202 ../../mod/impel.php:54 +msgid "menu" +msgstr "Menü" -#: ../../include/items.php:1181 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." +#: ../../include/bbcode.php:257 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" -#: ../../include/items.php:1183 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." +#: ../../include/bbcode.php:259 ../../mod/tagger.php:51 +msgid "post" +msgstr "Beitrag" -#: ../../include/items.php:1185 -msgid "Visible to anybody in this network." -msgstr "Für jedes Mitglied der RedMatrix sichtbar." +#: ../../include/bbcode.php:547 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" -#: ../../include/items.php:1187 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." +#: ../../include/bbcode.php:754 +msgid "$1 spoiler" +msgstr "$1 Spoiler" -#: ../../include/items.php:1189 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." +#: ../../include/bbcode.php:781 +msgid "$1 wrote:" +msgstr "$1 schrieb:" -#: ../../include/items.php:1191 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." +#: ../../include/account.php:27 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" -#: ../../include/items.php:1193 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." +#: ../../include/account.php:29 +msgid "Your email domain is not among those allowed on this site" +msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt" -#: ../../include/items.php:1195 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." +#: ../../include/account.php:35 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." -#: ../../include/items.php:4002 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:168 ../../mod/admin.php:901 -#: ../../mod/admin.php:1104 -msgid "Item not found." -msgstr "Element nicht gefunden." +#: ../../include/account.php:67 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt" -#: ../../include/items.php:4455 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Sammlung nicht gefunden" +#: ../../include/account.php:71 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden" -#: ../../include/items.php:4470 -msgid "Collection is empty." -msgstr "Sammlung ist leer." +#: ../../include/account.php:121 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." -#: ../../include/items.php:4477 -#, php-format -msgid "Collection: %s" -msgstr "Sammlung: %s" +#: ../../include/account.php:188 +msgid "Failed to store account information." +msgstr "Speichern der Account-Informationen fehlgeschlagen" -#: ../../include/items.php:4488 +#: ../../include/account.php:246 #, php-format -msgid "Connection: %s" -msgstr "Verbindung: %s" +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" -#: ../../include/items.php:4491 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." +#: ../../include/account.php:312 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" +#: ../../include/account.php:336 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Neues Fenster" +#: ../../include/account.php:339 ../../include/account.php:399 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" +#: ../../include/account.php:408 +msgid "Account approved." +msgstr "Account bestätigt." -#: ../../include/Contact.php:215 ../../mod/admin.php:651 +#: ../../include/account.php:447 #, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" +msgid "Registration revoked for %s" +msgstr "Registrierung für %s widerrufen" -#: ../../include/network.php:613 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" +#: ../../include/account.php:492 +msgid "Account verified. Please login." +msgstr "Konto geprüft. Bitte melde Dich an!" -#: ../../include/diaspora.php:1938 ../../include/conversation.php:164 -#: ../../mod/like.php:383 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" +#: ../../include/account.php:705 ../../include/account.php:707 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/bbcode.php:115 ../../include/bbcode.php:694 -#: ../../include/bbcode.php:697 ../../include/bbcode.php:702 -#: ../../include/bbcode.php:705 ../../include/bbcode.php:708 -#: ../../include/bbcode.php:711 ../../include/bbcode.php:716 -#: ../../include/bbcode.php:719 ../../include/bbcode.php:724 -#: ../../include/bbcode.php:727 ../../include/bbcode.php:730 -#: ../../include/bbcode.php:733 -msgid "Image/photo" -msgstr "Bild/Foto" +#: ../../include/account.php:713 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" +#: ../../include/account.php:718 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../include/bbcode.php:168 -msgid "Install design element: " -msgstr "Design-Element installieren:" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " -#: ../../include/bbcode.php:174 -msgid "QR code" -msgstr "QR-Code" +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." -#: ../../include/bbcode.php:223 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." -#: ../../include/bbcode.php:225 -msgid "post" -msgstr "Beitrag" +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" +#: ../../include/follow.php:154 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." -#: ../../include/bbcode.php:662 -msgid "$1 spoiler" -msgstr "$1 Spoiler" +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" -#: ../../include/bbcode.php:682 -msgid "$1 wrote:" -msgstr "$1 schrieb:" +#: ../../include/follow.php:186 +msgid "local account not found." +msgstr "Lokales Konto nicht gefunden." + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." + +#: ../../include/security.php:345 +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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." #: ../../include/contact_widgets.php:14 #, php-format @@ -2785,7 +3043,7 @@ msgid_plural "%d invitations available" msgstr[0] "%d Einladung verfügbar" msgstr[1] "%d Einladungen verfügbar" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:420 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:415 msgid "Advanced" msgstr "Fortgeschritten" @@ -2805,13 +3063,13 @@ msgstr "Verbinden/Folgen" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Beispiele: Robert Morgenstein, Angeln" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:330 ../../mod/directory.php:335 +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 +#: ../../mod/directory.php:384 ../../mod/connections.php:266 msgid "Find" msgstr "Finde" -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:334 +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 +#: ../../mod/suggest.php:60 msgid "Channel Suggestions" msgstr "Kanal-Vorschläge" @@ -2827,3140 +3085,3141 @@ msgstr "Lade Freunde ein" msgid "Advanced example: name=fred and country=iceland" msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" -#: ../../include/contact_widgets.php:125 +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98 +#: ../../include/widgets.php:306 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:271 +#: ../../include/widgets.php:35 +msgid "Categories" +msgstr "Kategorien" + +#: ../../include/contact_widgets.php:128 #, php-format msgid "%d connection in common" msgid_plural "%d connections in common" msgstr[0] "%d gemeinsame Verbindung" msgstr[1] "%d gemeinsame Verbindungen" -#: ../../include/contact_widgets.php:130 +#: ../../include/contact_widgets.php:133 msgid "show more" msgstr "mehr zeigen" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Anzeigen" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Nicht anzeigen" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:652 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:146 -#: ../../mod/photos.php:559 ../../mod/photos.php:916 -msgid "Permissions" -msgstr "Berechtigungen" +#: ../../include/group.php:26 +msgid "" +"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." +msgstr "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen." -#: ../../include/api.php:1081 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" +#: ../../include/group.php:232 +msgid "Add new connections to this collection (privacy group)" +msgstr "Neue Verbindungen zu dieser Sammlung (Privatsphäre-Gruppe) hinzufügen" -#: ../../include/zot.php:673 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" +#: ../../include/group.php:251 ../../mod/admin.php:788 +msgid "All Channels" +msgstr "Alle Kanäle" -#: ../../include/zot.php:689 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" +#: ../../include/group.php:273 +msgid "edit" +msgstr "Bearbeiten" -#: ../../include/zot.php:1961 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +#: ../../include/group.php:295 +msgid "Collections" +msgstr "Sammlungen" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" -msgstr "Männlich" +#: ../../include/group.php:296 +msgid "Edit collection" +msgstr "Sammlung bearbeiten" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" -msgstr "Weiblich" +#: ../../include/group.php:297 +msgid "Add new collection" +msgstr "Neue Sammlung hinzufügen" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momentan männlich" +#: ../../include/group.php:298 +msgid "Channels not in any collection" +msgstr "Kanäle, die nicht in einer Sammlung sind" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momentan weiblich" +#: ../../include/group.php:300 ../../include/widgets.php:274 +msgid "add" +msgstr "hinzufügen" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Größtenteils männlich" +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" +msgstr "Schlagwörter" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Größtenteils weiblich" +#: ../../include/taxonomy.php:294 +msgid "Keywords" +msgstr "Schlüsselwörter" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transsexuell" +#: ../../include/taxonomy.php:315 +msgid "have" +msgstr "habe" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Zwischengeschlechtlich" +#: ../../include/taxonomy.php:315 +msgid "has" +msgstr "hat" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuell" +#: ../../include/taxonomy.php:316 +msgid "want" +msgstr "will" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Zwitter" +#: ../../include/taxonomy.php:316 +msgid "wants" +msgstr "will" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Geschlechtslos" +#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 +msgid "like" +msgstr "mag" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "unklar" +#: ../../include/taxonomy.php:317 +msgid "likes" +msgstr "gefällt" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:814 -msgid "Other" -msgstr "Andere" +#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "verurteile" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Unentschieden" +#: ../../include/taxonomy.php:318 +msgid "dislikes" +msgstr "missfällt" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Männer" +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Frauen" +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Sicherer Modus" -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Schwul" +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/connedit.php:631 +#: ../../mod/connedit.php:659 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:386 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:106 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 +msgid "No" +msgstr "Nein" -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:388 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:105 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 +msgid "Yes" +msgstr "Ja" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Keine Bevorzugung" +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisexuell" +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Nur dieser Hub" -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosexuell" +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Enthaltsam" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Namensfeld leer" -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Jungfräulich" +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Name ist zu lang" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Abweichend" +#: ../../include/identity.php:181 +msgid "No account identifier" +msgstr "Keine Account-Kennung" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisch" +#: ../../include/identity.php:193 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Unmengen" +#: ../../include/identity.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Sexlos" +#: ../../include/identity.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Single" +#: ../../include/identity.php:288 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Einsam" +#: ../../include/identity.php:346 +msgid "Default Profile" +msgstr "Standard-Profil" -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Verfügbar" +#: ../../include/identity.php:745 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Nicht verfügbar" +#: ../../include/identity.php:791 ../../mod/achievements.php:11 +#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29 +#: ../../mod/editblock.php:29 ../../mod/profile.php:16 +#: ../../mod/webpages.php:29 ../../mod/blocks.php:29 +#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 +#: ../../mod/connect.php:13 +msgid "Requested profile is not available." +msgstr "Erwünschte Profil ist nicht verfügbar." -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Verguckt" +#: ../../include/identity.php:954 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Profilfoto ändern" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Verknallt" +#: ../../include/identity.php:960 +msgid "Profiles" +msgstr "Profile" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Lerne gerade jemanden kennen" +#: ../../include/identity.php:960 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/bearbeiten" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Treulos" +#: ../../include/identity.php:961 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Sexabhängig" +#: ../../include/identity.php:964 ../../include/nav.php:90 +msgid "Edit Profile" +msgstr "Profile bearbeiten" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Freunde/Begünstigte" +#: ../../include/identity.php:976 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Profilfoto:" -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Lose" +#: ../../include/identity.php:979 +msgid "visible to everybody" +msgstr "sichtbar für jeden" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Verlobt" +#: ../../include/identity.php:980 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Verheiratet" +#: ../../include/identity.php:996 ../../include/identity.php:1236 +msgid "Gender:" +msgstr "Geschlecht:" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Gewissermaßen verheiratet" +#: ../../include/identity.php:997 ../../include/identity.php:1280 +msgid "Status:" +msgstr "Status:" -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partner" +#: ../../include/identity.php:998 ../../include/identity.php:1291 +msgid "Homepage:" +msgstr "Homepage:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Lebensgemeinschaft" +#: ../../include/identity.php:999 +msgid "Online Now" +msgstr "gerade online" -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Informelle Ehe" +#: ../../include/identity.php:1083 ../../include/identity.php:1161 +#: ../../mod/ping.php:318 +msgid "g A l F d" +msgstr "l, d. F, G:i \\U\\h\\r" -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Glücklich" +#: ../../include/identity.php:1084 ../../include/identity.php:1162 +msgid "F d" +msgstr "d. F" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Nicht Ausschau haltend" +#: ../../include/identity.php:1129 ../../include/identity.php:1201 +#: ../../mod/ping.php:341 +msgid "[today]" +msgstr "[Heute]" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" +#: ../../include/identity.php:1140 +msgid "Birthday Reminders" +msgstr "Geburtstags Erinnerungen" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Betrogen" +#: ../../include/identity.php:1141 +msgid "Birthdays this week:" +msgstr "Geburtstage in dieser Woche:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Getrennt" +#: ../../include/identity.php:1194 +msgid "[No description]" +msgstr "[Keine Beschreibung]" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Labil" +#: ../../include/identity.php:1212 +msgid "Event Reminders" +msgstr "Termin-Erinnerungen" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Geschieden" +#: ../../include/identity.php:1213 +msgid "Events this week:" +msgstr "Termine in dieser Woche:" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Gewissermaßen geschieden" +#: ../../include/identity.php:1234 ../../mod/settings.php:1026 +msgid "Full Name:" +msgstr "Voller Name:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Verwitwet" +#: ../../include/identity.php:1241 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Ungewiss" +#: ../../include/identity.php:1265 +msgid "j F, Y" +msgstr "j. F Y" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Es ist kompliziert" +#: ../../include/identity.php:1266 +msgid "j F" +msgstr "j. F" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Interessiert mich nicht" +#: ../../include/identity.php:1273 +msgid "Birthday:" +msgstr "Geburtstag:" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Frag mich mal" +#: ../../include/identity.php:1277 ../../mod/directory.php:297 +msgid "Age:" +msgstr "Alter:" -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Hub-Administration" +#: ../../include/identity.php:1286 +#, php-format +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Adressbuch" +#: ../../include/identity.php:1289 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "Laune" +#: ../../include/identity.php:1293 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Heimatstadt:" -#: ../../include/apps.php:145 ../../include/conversation.php:943 -msgid "Poke" -msgstr "Anstupsen" +#: ../../include/identity.php:1295 +msgid "Tags:" +msgstr "Schlagworte:" -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Testen" +#: ../../include/identity.php:1297 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Politische Ansichten:" -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Empfehlen" +#: ../../include/identity.php:1299 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Zufälliger Kanal" +#: ../../include/identity.php:1301 ../../mod/directory.php:315 +msgid "About:" +msgstr "Über:" -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Einladen" +#: ../../include/identity.php:1303 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Funktionen" +#: ../../include/identity.php:1305 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Gefällt:" -#: ../../include/apps.php:153 -msgid "Language" -msgstr "Sprache" +#: ../../include/identity.php:1307 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Gefällt nicht:" -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Beitrag" +#: ../../include/identity.php:1309 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/apps.php:155 -msgid "Profile Photo" -msgstr "Profilfoto" +#: ../../include/identity.php:1311 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" -#: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:609 -msgid "Update" -msgstr "Aktualisieren" +#: ../../include/identity.php:1313 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installieren" +#: ../../include/identity.php:1315 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Kaufen" +#: ../../include/identity.php:1317 +msgid "Television:" +msgstr "Fernsehen:" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" +#: ../../include/identity.php:1319 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt" +#: ../../include/identity.php:1321 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." +#: ../../include/identity.php:1323 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt" +#: ../../include/identity.php:1325 +msgid "School/education:" +msgstr "Schule/Ausbildung:" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden" +#: ../../include/identity.php:1345 +msgid "Like this thing" +msgstr "Gefällt mir" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Speichern der Account-Informationen fehlgeschlagen" +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[no subject]" -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" +#: ../../include/message.php:203 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administrator" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In Ordner speichern" -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Ich werde teilnehmen" -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "Ich werde nicht teilnehmen" -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account bestätigt." +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Ich werde vielleicht teilnehmen" -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s widerrufen" +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Ich stimme zu" -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Konto geprüft. Bitte melde Dich an!" +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "Ich lehne ab" -#: ../../include/account.php:674 ../../include/account.php:676 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Ich enthalte mich" -#: ../../include/account.php:682 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Stern hinzufügen" -#: ../../include/account.php:687 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Stern entfernen" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "Kanal" +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Markierungsstatus (Stern) umschalten" -#: ../../include/conversation.php:167 ../../mod/like.php:385 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s nicht" +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "markiert" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Tag hinzufügen" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" +#: ../../include/ItemObject.php:254 ../../mod/photos.php:987 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" +#: ../../include/ItemObject.php:255 ../../mod/photos.php:988 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Teilen" -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "Teilen" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" +#: ../../include/ItemObject.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" +#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 +#, php-format +msgid "View %s's profile - %s" +msgstr "Schaue Dir %ss Profil an – %s" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" +#: ../../include/ItemObject.php:299 +msgid "to" +msgstr "an" -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" +#: ../../include/ItemObject.php:300 +msgid "via" +msgstr "via" -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" +#: ../../include/ItemObject.php:301 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" +#: ../../include/ItemObject.php:302 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" -#: ../../include/conversation.php:680 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" +#: ../../include/ItemObject.php:305 +msgid "Delivery Report" +msgstr "Zustellungsbericht" -#: ../../include/conversation.php:695 -msgid "Categories:" -msgstr "Kategorien:" +#: ../../include/ItemObject.php:339 +msgid "Save Bookmarks" +msgstr "Favoriten speichern" -#: ../../include/conversation.php:696 -msgid "Filed under:" -msgstr "Gespeichert unter:" +#: ../../include/ItemObject.php:340 +msgid "Add to Calendar" +msgstr "Zum Kalender hinzufügen" -#: ../../include/conversation.php:723 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" +#: ../../include/ItemObject.php:349 +msgid "Mark all seen" +msgstr "Alle als gelesen markieren" -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "lösche" +#: ../../include/ItemObject.php:355 ../../mod/photos.php:1173 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" +#: ../../include/ItemObject.php:356 ../../mod/photos.php:1174 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Quelle anzeigen" +#: ../../include/ItemObject.php:671 ../../mod/photos.php:1006 +#: ../../mod/photos.php:1124 +msgid "This is you" +msgstr "Das bist Du" -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" +#: ../../include/ItemObject.php:680 +msgid "Image" +msgstr "Bild" -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Status ansehen" +#: ../../include/ItemObject.php:681 +msgid "Insert Link" +msgstr "Link einfügen" -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Fotos ansehen" +#: ../../include/ItemObject.php:682 +msgid "Video" +msgstr "Video" -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Matrix-Aktivität" +#: ../../include/items.php:423 ../../mod/like.php:280 ../../mod/dreport.php:6 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 +#: ../../mod/import_items.php:114 ../../index.php:360 +msgid "Permission denied" +msgstr "Keine Berechtigung" -#: ../../include/conversation.php:941 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" +#: ../../include/items.php:1128 ../../include/items.php:1174 +msgid "(Unknown)" +msgstr "(Unbekannt)" -#: ../../include/conversation.php:942 -msgid "Send PM" -msgstr "Sende PN" +#: ../../include/items.php:1371 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." +#: ../../include/items.php:1373 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." +#: ../../include/items.php:1375 +msgid "Visible to anybody in this network." +msgstr "Für jedes Mitglied der RedMatrix sichtbar." -#: ../../include/conversation.php:1065 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d Person gefällt das." -msgstr[1] "%2$d Leuten gefällt das." +#: ../../include/items.php:1377 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/conversation.php:1067 +#: ../../include/items.php:1379 #, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d Person gefällt das nicht." -msgstr[1] "%2$d Leuten gefällt das nicht." +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." -#: ../../include/conversation.php:1073 -msgid "and" -msgstr "und" +#: ../../include/items.php:1381 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." -#: ../../include/conversation.php:1076 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", und %d andere" +#: ../../include/items.php:1383 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." +#: ../../include/items.php:1385 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." +#: ../../include/items.php:4263 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/admin.php:127 +#: ../../mod/admin.php:979 ../../mod/admin.php:1179 ../../mod/thing.php:86 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Element nicht gefunden." -#: ../../include/conversation.php:1136 -msgid "Visible to everybody" -msgstr "Sichtbar für jeden" +#: ../../include/items.php:4772 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Sammlung nicht gefunden" -#: ../../include/conversation.php:1137 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" +#: ../../include/items.php:4788 +msgid "Collection is empty." +msgstr "Sammlung ist leer." -#: ../../include/conversation.php:1138 -msgid "Please enter a video link/URL:" -msgstr "Gib einen Video-Link/URL ein:" +#: ../../include/items.php:4795 +#, php-format +msgid "Collection: %s" +msgstr "Sammlung: %s" -#: ../../include/conversation.php:1139 -msgid "Please enter an audio link/URL:" -msgstr "Gib einen Audio-Link/URL ein:" +#: ../../include/items.php:4805 ../../mod/connedit.php:658 +#, php-format +msgid "Connection: %s" +msgstr "Verbindung: %s" -#: ../../include/conversation.php:1140 -msgid "Tag term:" -msgstr "Schlagwort:" +#: ../../include/items.php:4807 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/conversation.php:1141 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" +#: ../../include/widgets.php:91 ../../include/nav.php:157 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Apps" -#: ../../include/conversation.php:1142 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" +#: ../../include/widgets.php:92 +msgid "System" +msgstr "System" -#: ../../include/conversation.php:1143 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Persönliche App erstellen" -#: ../../include/conversation.php:1170 ../../mod/editblock.php:198 -#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 -#: ../../mod/layouts.php:168 ../../mod/photos.php:943 -msgid "Share" -msgstr "Teilen" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Persönliche App bearbeiten" -#: ../../include/conversation.php:1172 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Seitentitel-Link" +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" -#: ../../include/conversation.php:1175 -msgid "Post as" -msgstr "Veröffentlichen als" +#: ../../include/widgets.php:143 ../../mod/connections.php:125 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../include/conversation.php:1176 ../../mod/editblock.php:144 -#: ../../mod/editpost.php:114 ../../mod/editlayout.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "Foto hochladen" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Mehr anzeigen …" -#: ../../include/conversation.php:1177 -msgid "upload photo" -msgstr "Foto hochladen" +#: ../../include/widgets.php:165 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." -#: ../../include/conversation.php:1178 ../../mod/editblock.php:145 -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:141 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "Datei anhängen" +#: ../../include/widgets.php:171 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" -#: ../../include/conversation.php:1179 -msgid "attach file" -msgstr "Datei anfügen" +#: ../../include/widgets.php:172 +msgid "Enter the channel address" +msgstr "Adresse des Kanals eingeben" -#: ../../include/conversation.php:1180 ../../mod/editblock.php:146 -#: ../../mod/editpost.php:116 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "Link einfügen" +#: ../../include/widgets.php:173 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" -#: ../../include/conversation.php:1181 -msgid "web link" -msgstr "Web-Link" +#: ../../include/widgets.php:189 +msgid "Notes" +msgstr "Notizen" -#: ../../include/conversation.php:1182 -msgid "Insert video link" -msgstr "Video-Link einfügen" +#: ../../include/widgets.php:265 +msgid "Remove term" +msgstr "Eintrag löschen" -#: ../../include/conversation.php:1183 -msgid "video link" -msgstr "Video-Link" +#: ../../include/widgets.php:348 +msgid "Archives" +msgstr "Archive" -#: ../../include/conversation.php:1184 -msgid "Insert audio link" -msgstr "Audio-Link einfügen" +#: ../../include/widgets.php:427 ../../mod/connedit.php:567 +msgid "Me" +msgstr "Ich" -#: ../../include/conversation.php:1185 -msgid "audio link" -msgstr "Audio-Link" +#: ../../include/widgets.php:428 ../../mod/connedit.php:568 +msgid "Family" +msgstr "Familie" -#: ../../include/conversation.php:1186 ../../mod/editblock.php:150 -#: ../../mod/editpost.php:120 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:181 -msgid "Set your location" -msgstr "Standort" +#: ../../include/widgets.php:430 ../../mod/connedit.php:570 +msgid "Acquaintances" +msgstr "Bekannte" -#: ../../include/conversation.php:1187 -msgid "set location" -msgstr "Standort" +#: ../../include/widgets.php:431 ../../mod/connedit.php:571 +#: ../../mod/connections.php:88 ../../mod/connections.php:103 +msgid "All" +msgstr "Alle" -#: ../../include/conversation.php:1188 ../../mod/editpost.php:122 -msgid "Toggle voting" -msgstr "Umfragewerkzeug aktivieren" +#: ../../include/widgets.php:450 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../include/conversation.php:1191 ../../mod/editblock.php:151 -#: ../../mod/editpost.php:121 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:182 -msgid "Clear browser location" -msgstr "Browser-Standort löschen" +#: ../../include/widgets.php:484 +msgid "Account settings" +msgstr "Konto-Einstellungen" -#: ../../include/conversation.php:1192 -msgid "clear location" -msgstr "Standort löschen" +#: ../../include/widgets.php:490 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" -#: ../../include/conversation.php:1194 ../../mod/editblock.php:164 -#: ../../mod/editpost.php:136 ../../mod/editlayout.php:159 -#: ../../mod/editwebpage.php:198 -msgid "Title (optional)" -msgstr "Titel (optional)" +#: ../../include/widgets.php:496 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" -#: ../../include/conversation.php:1197 ../../mod/editblock.php:167 -#: ../../mod/editpost.php:138 ../../mod/editlayout.php:162 -#: ../../mod/editwebpage.php:200 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" +#: ../../include/widgets.php:502 +msgid "Feature/Addon settings" +msgstr "Plugin-Einstellungen" -#: ../../include/conversation.php:1199 ../../mod/editblock.php:153 -#: ../../mod/editpost.php:126 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" +#: ../../include/widgets.php:508 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" -#: ../../include/conversation.php:1200 -msgid "permissions" -msgstr "Berechtigungen" +#: ../../include/widgets.php:514 +msgid "Connected apps" +msgstr "Verbundene Apps" + +#: ../../include/widgets.php:520 +msgid "Export channel" +msgstr "Kanal exportieren" -#: ../../include/conversation.php:1207 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:133 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:193 -msgid "Public post" -msgstr "Öffentlicher Beitrag" +#: ../../include/widgets.php:529 ../../mod/connedit.php:658 +msgid "Connection Default Permissions" +msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../include/conversation.php:1209 ../../mod/editblock.php:168 -#: ../../mod/editpost.php:139 ../../mod/editlayout.php:163 -#: ../../mod/editwebpage.php:201 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Beispiel: bob@example.com, mary@example.com" +#: ../../include/widgets.php:537 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" -#: ../../include/conversation.php:1222 ../../mod/editblock.php:178 -#: ../../mod/editpost.php:150 ../../mod/editlayout.php:173 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Verfallsdatum" +#: ../../include/widgets.php:567 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" -#: ../../include/conversation.php:1226 ../../mod/editpost.php:154 -#: ../../mod/events.php:635 -msgid "OK" -msgstr "Ok" +#: ../../include/widgets.php:569 +msgid "Check Mail" +msgstr "Nachrichten abrufen" -#: ../../include/conversation.php:1227 ../../mod/editpost.php:155 -#: ../../mod/events.php:634 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/settings.php:584 -#: ../../mod/settings.php:610 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Abbrechen" +#: ../../include/widgets.php:575 +msgid "Combined View" +msgstr "Kombinierte Anzeige" -#: ../../include/conversation.php:1471 -msgid "Discover" -msgstr "Entdecken" +#: ../../include/widgets.php:580 ../../include/nav.php:191 +msgid "Inbox" +msgstr "Eingang" -#: ../../include/conversation.php:1474 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" +#: ../../include/widgets.php:585 ../../include/nav.php:192 +msgid "Outbox" +msgstr "Ausgang" -#: ../../include/conversation.php:1479 -msgid "Commented Order" -msgstr "Neueste Kommentare" +#: ../../include/widgets.php:590 ../../include/nav.php:193 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../include/conversation.php:1482 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" +#: ../../include/widgets.php:609 ../../include/widgets.php:621 +msgid "Conversations" +msgstr "Konversationen" -#: ../../include/conversation.php:1486 -msgid "Posted Order" -msgstr "Neueste Beiträge" +#: ../../include/widgets.php:613 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" -#: ../../include/conversation.php:1489 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" +#: ../../include/widgets.php:617 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" -#: ../../include/conversation.php:1497 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" +#: ../../include/widgets.php:631 +msgid "No messages." +msgstr "Keine Nachrichten." -#: ../../include/conversation.php:1503 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "Neu" +#: ../../include/widgets.php:648 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" -#: ../../include/conversation.php:1506 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" +#: ../../include/widgets.php:650 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - G:i" -#: ../../include/conversation.php:1512 -msgid "Starred" -msgstr "Markiert" +#: ../../include/widgets.php:738 +msgid "Chat Rooms" +msgstr "Chaträume" -#: ../../include/conversation.php:1515 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" +#: ../../include/widgets.php:758 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" -#: ../../include/conversation.php:1522 -msgid "Spam" -msgstr "Spam" +#: ../../include/widgets.php:778 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" -#: ../../include/conversation.php:1525 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" +#: ../../include/widgets.php:905 ../../include/widgets.php:963 +msgid "photo/image" +msgstr "Foto/Bild" -#: ../../include/conversation.php:1565 ../../mod/admin.php:870 -msgid "Channel" -msgstr "Kanal" +#: ../../include/widgets.php:1058 ../../include/widgets.php:1060 +msgid "Rate Me" +msgstr "Bewerte mich" -#: ../../include/conversation.php:1568 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" +#: ../../include/widgets.php:1064 +msgid "View Ratings" +msgstr "Bewertungen ansehen" -#: ../../include/conversation.php:1577 -msgid "About" -msgstr "Über" +#: ../../include/widgets.php:1075 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" -#: ../../include/conversation.php:1580 -msgid "Profile Details" -msgstr "Profil-Details" +#: ../../include/widgets.php:1123 +msgid "Forums" +msgstr "Foren" -#: ../../include/conversation.php:1598 -msgid "Files and Storage" -msgstr "Dateien und Speicher" +#: ../../include/widgets.php:1150 +msgid "Tasks" +msgstr "Aufgaben" -#: ../../include/conversation.php:1608 ../../include/conversation.php:1611 -msgid "Chatrooms" -msgstr "Chaträume" +#: ../../include/widgets.php:1159 +msgid "Documentation" +msgstr "Dokumentation" -#: ../../include/conversation.php:1624 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" +#: ../../include/widgets.php:1161 +msgid "Project/Site Information" +msgstr "Informationen über das Projekt und diesen Hub" -#: ../../include/conversation.php:1635 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" +#: ../../include/widgets.php:1162 +msgid "For Members" +msgstr "Für Mitglieder" -#: ../../include/conversation.php:1698 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Zusage" -msgstr[1] "Zusagen" +#: ../../include/widgets.php:1163 +msgid "For Administrators" +msgstr "Für Administratoren" -#: ../../include/conversation.php:1701 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Absage" -msgstr[1] "Absagen" +#: ../../include/widgets.php:1164 +msgid "For Developers" +msgstr "Für Entwickler" -#: ../../include/conversation.php:1704 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] " Unentschlossen" -msgstr[1] "Unentschlossene" +#: ../../include/widgets.php:1189 ../../mod/admin.php:410 +msgid "Site" +msgstr "Seite" -#: ../../include/conversation.php:1707 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Zustimmung" -msgstr[1] "Zustimmungen" +#: ../../include/widgets.php:1190 +msgid "Accounts" +msgstr "Konten" -#: ../../include/conversation.php:1710 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Ablehnung" -msgstr[1] "Ablehnungen" +#: ../../include/widgets.php:1191 ../../mod/admin.php:939 +msgid "Channels" +msgstr "Kanäle" -#: ../../include/conversation.php:1713 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Enthaltung" -msgstr[1] "Enthaltungen" +#: ../../include/widgets.php:1192 ../../mod/admin.php:1031 +#: ../../mod/admin.php:1071 +msgid "Plugins" +msgstr "Plug-Ins" -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" +#: ../../include/widgets.php:1193 ../../mod/admin.php:1231 +#: ../../mod/admin.php:1265 +msgid "Themes" +msgstr "Themes" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" +#: ../../include/widgets.php:1194 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" +#: ../../include/widgets.php:1195 +msgid "Profile Config" +msgstr "Profilkonfiguration" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" +#: ../../include/widgets.php:1196 +msgid "DB updates" +msgstr "DB-Aktualisierungen" -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kann meine Fotoalben betrachten" +#: ../../include/widgets.php:1214 ../../include/widgets.php:1220 +#: ../../mod/admin.php:1350 +msgid "Logs" +msgstr "Protokolle" -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" +#: ../../include/widgets.php:1218 ../../include/nav.php:210 +msgid "Admin" +msgstr "Administration" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kann meine Dateiordner lesen" +#: ../../include/widgets.php:1219 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" +#: ../../include/widgets.php:1221 +msgid "User registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" +#: ../../include/zot.php:677 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" +#: ../../include/zot.php:693 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" +#: ../../include/zot.php:2213 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" +#: ../../include/zot.php:3511 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1496 +msgid "Logout" +msgstr "Abmelden" -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" +#: ../../include/nav.php:82 ../../include/nav.php:114 +msgid "End this session" +msgstr "Beende diese Sitzung" -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" +#: ../../include/nav.php:85 ../../include/nav.php:145 +msgid "Home" +msgstr "Home" -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Deine Profilseite" -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Profile bearbeiten" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kann in meine Dateiordner schreiben" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Profil bearbeiten" -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Deine Bilder" -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Deine Dateien" -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" +#: ../../include/nav.php:97 +msgid "Your chatrooms" +msgstr "Deine Chaträume" -#: ../../include/permissions.php:48 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" +#: ../../include/nav.php:103 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" -#: ../../include/permissions.php:810 -msgid "Social Networking" -msgstr "Soziales Netzwerk" +#: ../../include/nav.php:107 +msgid "Your webpages" +msgstr "Deine Webseiten" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Weitgehend öffentlich" +#: ../../include/nav.php:111 +msgid "Sign in" +msgstr "Anmelden" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Beschränkt" +#: ../../include/nav.php:128 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Privat" +#: ../../include/nav.php:131 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" -#: ../../include/permissions.php:811 -msgid "Community Forum" -msgstr "Forum" +#: ../../include/nav.php:131 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:145 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/permissions.php:812 -msgid "Feed Republish" -msgstr "Teilen von Feeds" +#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1473 +msgid "Register" +msgstr "Registrieren" -#: ../../include/permissions.php:813 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Erzeuge ein Konto" -#: ../../include/permissions.php:813 -msgid "Celebrity/Soapbox" -msgstr "Mitteilungs-Kanal (keine Kommentare)" +#: ../../include/nav.php:154 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Gruppenarchiv" +#: ../../include/nav.php:157 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" -#: ../../include/permissions.php:814 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" +#: ../../include/nav.php:159 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" +#: ../../include/nav.php:162 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" -#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 -#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Element nicht gefunden" +#: ../../include/nav.php:174 +msgid "Grid" +msgstr "Grid" -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Block bearbeiten" +#: ../../include/nav.php:174 +msgid "Your grid" +msgstr "Dein Grid" -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Block löschen?" +#: ../../include/nav.php:175 +msgid "Mark all grid notifications seen" +msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" -#: ../../mod/editblock.php:147 ../../mod/editpost.php:117 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" -msgstr "YouTube-Video einfügen" +#: ../../include/nav.php:177 +msgid "Channel home" +msgstr "Mein Kanal" -#: ../../mod/editblock.php:148 ../../mod/editpost.php:118 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis [.ogg]-Video einfügen" +#: ../../include/nav.php:178 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" -#: ../../mod/editblock.php:149 ../../mod/editpost.php:119 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis [.ogg]-Audio einfügen" +#: ../../include/nav.php:181 ../../mod/connections.php:260 +msgid "Connections" +msgstr "Verbindungen" -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Block löschen" +#: ../../include/nav.php:184 +msgid "Notices" +msgstr "Benachrichtigungen" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." +#: ../../include/nav.php:184 +msgid "Notifications" +msgstr "Benachrichtigungen" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" +#: ../../include/nav.php:185 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "Aktueller Kanal" +#: ../../include/nav.php:186 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" -#: ../../mod/manage.php:151 -msgid "Switch to one of your channels by selecting it." -msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." +#: ../../include/nav.php:188 +msgid "Private mail" +msgstr "Persönliche Mail" -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Standard Kanal" +#: ../../include/nav.php:189 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "Zum Standard machen" +#: ../../include/nav.php:190 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" -#: ../../mod/manage.php:156 -#, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" +#: ../../include/nav.php:196 +msgid "Event Calendar" +msgstr "Terminkalender" -#: ../../mod/manage.php:157 -#, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" +#: ../../include/nav.php:197 +msgid "See all events" +msgstr "Alle Termine ansehen" -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Xchan-Suche" +#: ../../include/nav.php:198 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" +#: ../../include/nav.php:200 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" -#: ../../mod/xchan.php:37 ../../mod/menu.php:136 ../../mod/mitem.php:111 -msgid "Not found." -msgstr "Nicht gefunden." +#: ../../include/nav.php:202 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" +#: ../../include/nav.php:210 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" +#: ../../include/nav.php:246 +msgid "@name, #tag, ?doc, content" +msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." +#: ../../include/nav.php:247 +msgid "Please wait..." +msgstr "Bitte warten..." -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" -#: ../../mod/api.php:105 ../../mod/settings.php:974 ../../mod/settings.php:979 -#: ../../mod/settings.php:1064 ../../mod/admin.php:396 -msgid "Yes" -msgstr "Ja" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden" -#: ../../mod/api.php:106 ../../mod/settings.php:974 ../../mod/settings.php:979 -#: ../../mod/settings.php:1064 ../../mod/admin.php:394 -msgid "No" -msgstr "Nein" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Freundschaftsempfehlung senden." -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Block-Name" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" -#: ../../mod/connedit.php:75 ../../mod/connections.php:37 -msgid "Could not access contact record." -msgstr "Konnte nicht auf den Kontakteintrag zugreifen." +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" -#: ../../mod/connedit.php:99 ../../mod/connections.php:51 -msgid "Could not locate selected profile." -msgstr "Gewähltes Profil nicht gefunden." +#: ../../mod/directory.php:59 ../../mod/display.php:13 ../../mod/search.php:13 +#: ../../mod/photos.php:453 ../../mod/ratings.php:82 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Öffentlicher Zugang verweigert." -#: ../../mod/connedit.php:204 ../../mod/connections.php:94 -msgid "Connection updated." -msgstr "Verbindung aktualisiert." +#: ../../mod/directory.php:234 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d Bewertung" +msgstr[1] "%d Bewertungen" -#: ../../mod/connedit.php:206 ../../mod/connections.php:96 -msgid "Failed to update connection record." -msgstr "Konnte den Verbindungseintrag nicht aktualisieren." +#: ../../mod/directory.php:245 +msgid "Gender: " +msgstr "Geschlecht:" -#: ../../mod/connedit.php:252 -msgid "is now connected to" -msgstr "ist jetzt verbunden mit" +#: ../../mod/directory.php:247 +msgid "Status: " +msgstr "Status:" -#: ../../mod/connedit.php:365 -msgid "Could not access address book record." -msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." +#: ../../mod/directory.php:249 +msgid "Homepage: " +msgstr "Webseite:" -#: ../../mod/connedit.php:379 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." +#: ../../mod/directory.php:308 ../../mod/events.php:699 +msgid "Description:" +msgstr "Beschreibung:" -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" -msgstr "Kanal nicht mehr blockiert" +#: ../../mod/directory.php:317 +msgid "Public Forum:" +msgstr "Öffentliches Forum:" -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" -msgstr "Kanal blockiert" +#: ../../mod/directory.php:320 +msgid "Keywords: " +msgstr "Schlüsselwörter:" -#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 -#: ../../mod/connedit.php:443 -msgid "Unable to set address book parameters." -msgstr "Konnte die Adressbuch-Parameter nicht setzen." +#: ../../mod/directory.php:323 +msgid "Don't suggest" +msgstr "Nicht vorschlagen" -#: ../../mod/connedit.php:398 -msgid "Channel has been unignored" -msgstr "Kanal wird nicht mehr ignoriert" +#: ../../mod/directory.php:325 +msgid "Common connections:" +msgstr "Gemeinsame Verbindungen:" -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" -msgstr "Kanal wird ignoriert" +#: ../../mod/directory.php:374 +msgid "Global Directory" +msgstr "Globales Verzeichnis" -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" -msgstr "Kanal wurde aus dem Archiv zurück geholt" +#: ../../mod/directory.php:374 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" -msgstr "Kanal wurde archiviert" +#: ../../mod/directory.php:380 +msgid "Finding:" +msgstr "Ergebnisse:" -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" -msgstr "Kanal wird nicht mehr versteckt" +#: ../../mod/directory.php:385 +msgid "next page" +msgstr "nächste Seite" -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" -msgstr "Kanal wurde versteckt" +#: ../../mod/directory.php:385 +msgid "previous page" +msgstr "vorherige Seite" -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" -msgstr "Kanal wurde zugelassen" +#: ../../mod/directory.php:386 +msgid "Sort options" +msgstr "Sortieroptionen" -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" -msgstr "Zulassung des Kanals entfernt" +#: ../../mod/directory.php:387 +msgid "Alphabetic" +msgstr "alphabetisch" -#: ../../mod/connedit.php:467 -msgid "Connection has been removed." -msgstr "Verbindung wurde gelöscht." +#: ../../mod/directory.php:388 +msgid "Reverse Alphabetic" +msgstr "Entgegengesetzt alphabetisch" -#: ../../mod/connedit.php:487 -#, php-format -msgid "View %s's profile" -msgstr "%ss Profil ansehen" +#: ../../mod/directory.php:389 +msgid "Newest to Oldest" +msgstr "Neueste zuerst" -#: ../../mod/connedit.php:491 -msgid "Refresh Permissions" -msgstr "Zugriffsrechte neu laden" +#: ../../mod/directory.php:390 +msgid "Oldest to Newest" +msgstr "Älteste zuerst" -#: ../../mod/connedit.php:494 -msgid "Fetch updated permissions" -msgstr "Aktualisierte Zugriffsrechte abfragen" +#: ../../mod/directory.php:407 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." -#: ../../mod/connedit.php:498 -msgid "Recent Activity" -msgstr "Kürzliche Aktivitäten" +#: ../../mod/bookmarks.php:40 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" -#: ../../mod/connedit.php:501 -msgid "View recent posts and comments" -msgstr "Betrachte die neuesten Beiträge und Kommentare" +#: ../../mod/bookmarks.php:62 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:737 -msgid "Unblock" -msgstr "Freigeben" +#: ../../mod/bookmarks.php:73 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:736 -msgid "Block" -msgstr "Blockieren" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." -#: ../../mod/connedit.php:510 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" +#: ../../mod/openid.php:72 ../../mod/openid.php:179 ../../mod/post.php:285 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -msgid "Unignore" -msgstr "Nicht ignorieren" +#: ../../mod/block.php:27 ../../mod/page.php:36 +msgid "Invalid item." +msgstr "Ungültiges Element." -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorieren" +#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." -#: ../../mod/connedit.php:517 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" +#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:214 +#: ../../mod/page.php:89 ../../index.php:237 +msgid "Page not found." +msgstr "Seite nicht gefunden." -#: ../../mod/connedit.php:520 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" +#: ../../mod/id.php:11 +msgid "First Name" +msgstr "Vorname" -#: ../../mod/connedit.php:520 -msgid "Archive" -msgstr "Archivieren" +#: ../../mod/id.php:12 +msgid "Last Name" +msgstr "Nachname" -#: ../../mod/connedit.php:523 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" +#: ../../mod/id.php:13 +msgid "Nickname" +msgstr "Spitzname" -#: ../../mod/connedit.php:526 -msgid "Unhide" -msgstr "Wieder sichtbar machen" +#: ../../mod/id.php:14 +msgid "Full Name" +msgstr "Voller Name" -#: ../../mod/connedit.php:526 -msgid "Hide" -msgstr "Verstecken" +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" +msgstr "Profilfoto 16 px" -#: ../../mod/connedit.php:529 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" +msgstr "Profilfoto 32 px" -#: ../../mod/connedit.php:536 -msgid "Delete this connection" -msgstr "Verbindung löschen" +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" +msgstr "Profilfoto 48 px" -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 -msgid "Approve this connection" -msgstr "Verbindung genehmigen" +#: ../../mod/id.php:23 +msgid "Profile Photo 64px" +msgstr "Profilfoto 64 px" + +#: ../../mod/id.php:24 +msgid "Profile Photo 80px" +msgstr "Profilfoto 80 px" -#: ../../mod/connedit.php:611 -msgid "Accept connection to allow communication" -msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" +#: ../../mod/id.php:25 +msgid "Profile Photo 128px" +msgstr "Profilfoto 128 px" -#: ../../mod/connedit.php:627 -#, php-format -msgid "Connections: settings for %s" -msgstr "Verbindungseinstellungen für %s" +#: ../../mod/id.php:26 +msgid "Timezone" +msgstr "Zeitzone" -#: ../../mod/connedit.php:628 -msgid "Apply these permissions automatically" -msgstr "Diese Berechtigungen automatisch anwenden" +#: ../../mod/id.php:27 +msgid "Homepage URL" +msgstr "Homepage-URL" -#: ../../mod/connedit.php:632 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verbindungen an." +#: ../../mod/id.php:29 +msgid "Birth Year" +msgstr "Geburtsjahr" -#: ../../mod/connedit.php:636 -msgid "Slide to adjust your degree of friendship" -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" +#: ../../mod/id.php:30 +msgid "Birth Month" +msgstr "Geburtsmonat" -#: ../../mod/connedit.php:637 ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" +#: ../../mod/id.php:31 +msgid "Birth Day" +msgstr "Geburtstag" -#: ../../mod/connedit.php:638 ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" +#: ../../mod/id.php:32 +msgid "Birthdate" +msgstr "Geburtsdatum" -#: ../../mod/connedit.php:645 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert. Bitte sieh Dir die Zugriffsrechte auf dieser Seite an und ändere sie, wenn Du willst. Dieser Kontakt kann evtl. nicht mit Dir kommunizieren, bevor Du nicht auf dieser Seite auf „Senden“ geklickt hast – erst dieser Klick speichert die gewünschten Zugriffsrechte." +#: ../../mod/id.php:33 ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Geschlecht" -#: ../../mod/connedit.php:648 -msgid "inherited" -msgstr "geerbt" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" -msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." -#: ../../mod/connedit.php:652 +#: ../../mod/like.php:21 msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen." +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." -#: ../../mod/connedit.php:654 -msgid "Profile Visibility" -msgstr "Sichtbarkeit des Profils" +#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165 +msgid "Invalid request." +msgstr "Ungültige Anfrage." -#: ../../mod/connedit.php:655 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." +#: ../../mod/like.php:142 +msgid "thing" +msgstr "Sache" -#: ../../mod/connedit.php:656 -msgid "Contact Information / Notes" -msgstr "Kontaktinformationen / Notizen" +#: ../../mod/like.php:188 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" -msgstr "Kontaktnotizen bearbeiten" +#: ../../mod/like.php:236 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../mod/connedit.php:659 -msgid "Their Settings" -msgstr "Deren Einstellungen" +#: ../../mod/like.php:414 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s stimmt %2$ss %3$s zu" -#: ../../mod/connedit.php:660 -msgid "My Settings" -msgstr "Meine Einstellungen" +#: ../../mod/like.php:416 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s lehnt %2$ss %3$s ab" -#: ../../mod/connedit.php:662 -msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert, und Du hast keine Voreinstellungen für die Zugriffsrechte von Verbindungen angelegt. Bitte sieht Dir die Einstellungen an, ändere sie bei Bedarf und klicke [Senden], um den Vorgang abzuschließen." +#: ../../mod/like.php:418 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s enthält sich zu %2$ss %3$s" -#: ../../mod/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" -msgstr "Automatische Berechtigungen abschalten/entfernen" +#: ../../mod/like.php:420 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil" -#: ../../mod/connedit.php:664 -msgid "Forum Members" -msgstr "Forum Mitglieder" +#: ../../mod/like.php:422 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s nicht teil" -#: ../../mod/connedit.php:665 -msgid "Soapbox" -msgstr "Marktschreier" +#: ../../mod/like.php:424 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" -msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" +#: ../../mod/like.php:520 +msgid "Action completed." +msgstr "Aktion durchgeführt." -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " -msgstr "Vorsichtiges Teilen" +#: ../../mod/like.php:521 +msgid "Thank you." +msgstr "Vielen Dank." -#: ../../mod/connedit.php:668 -msgid "Follow Only" -msgstr "Nur folgen" +#: ../../mod/uexport.php:51 ../../mod/uexport.php:52 +msgid "Export Channel" +msgstr "Kanal exportieren" -#: ../../mod/connedit.php:669 -msgid "Individual Permissions" -msgstr "Individuelle Zugriffsrechte" +#: ../../mod/uexport.php:53 +msgid "" +"Export your basic channel information to a 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 server hub, but does not contain your content." +msgstr "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." + +#: ../../mod/uexport.php:54 +msgid "Export Content" +msgstr "Kanal und Inhalte exportieren" -#: ../../mod/connedit.php:670 +#: ../../mod/uexport.php:55 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." + +#: ../../mod/uexport.php:56 +msgid "Export your posts from a given year." +msgstr "Exportiert die Beiträge des angegebenen Jahres." + +#: ../../mod/uexport.php:58 msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Einige Berechtigungen werden von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen." +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." -#: ../../mod/connedit.php:671 -msgid "Advanced Permissions" -msgstr "Zugriffsrechte für Fortgeschrittene" +#: ../../mod/uexport.php:59 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." -#: ../../mod/connedit.php:672 -msgid "Simple Permissions (select one and submit)" -msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" +#: ../../mod/uexport.php:60 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." -#: ../../mod/connedit.php:676 +#: ../../mod/uexport.php:61 #, php-format -msgid "Visit %s's profile - %s" -msgstr "%ss Profil besuchen - %s" +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freigeben" +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Abwesend" -#: ../../mod/connedit.php:678 -msgid "Ignore contact" -msgstr "Kontakt ignorieren" +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" -msgstr "URL-Einstellungen reparieren" +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" -#: ../../mod/connedit.php:680 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Kein Kanal." -#: ../../mod/connedit.php:682 -msgid "Delete contact" -msgstr "Kontakt löschen" +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" -#: ../../mod/connedit.php:686 -msgid "Last update:" -msgstr "Letzte Aktualisierung:" +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." -#: ../../mod/connedit.php:688 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" +#: ../../mod/ping.php:260 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" -#: ../../mod/connedit.php:690 -msgid "Update now" -msgstr "Jetzt aktualisieren" +#: ../../mod/ping.php:308 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" -#: ../../mod/connedit.php:696 -msgid "Currently blocked" -msgstr "Derzeit blockiert" +#: ../../mod/ping.php:350 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" -#: ../../mod/connedit.php:697 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" +#: ../../mod/help.php:147 +msgid "Documentation Search" +msgstr "Suche in der Dokumentation" -#: ../../mod/connedit.php:698 -msgid "Currently archived" -msgstr "Derzeit archiviert" +#: ../../mod/help.php:184 ../../mod/help.php:190 ../../mod/help.php:196 +msgid "Help:" +msgstr "Hilfe:" -#: ../../mod/connedit.php:699 -msgid "Currently pending" -msgstr "Derzeit anstehend" +#: ../../mod/help.php:211 ../../index.php:234 +msgid "Not Found" +msgstr "Nicht gefunden" -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix – "Das Netzwerk"" +#: ../../mod/help.php:235 +msgid "$Projectname Documentation" +msgstr "$Projectname-Dokumentation" -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Fortfahren" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Diesen Kanal löschen" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "WARNING: " +msgstr "WARNUNG: " -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" +#: ../../mod/removeme.php:58 +msgid "This channel will be completely removed from the network. " +msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" -#: ../../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 "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 +#: ../../mod/removeme.php:60 msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" +#: ../../mod/removeme.php:61 ../../mod/settings.php:1109 +msgid "Remove Channel" +msgstr "Kanal löschen" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../mod/filer.php:48 +msgid "- select -" +msgstr "– auswählen –" -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../mod/mitem.php:24 ../../mod/menu.php:140 +msgid "Menu not found." +msgstr "Menü nicht gefunden" -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eintrag löschen?" +#: ../../mod/mitem.php:48 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Element nicht verfügbar." +#: ../../mod/mitem.php:72 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" +#: ../../mod/mitem.php:88 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." -#: ../../mod/dav.php:121 -msgid "RedMatrix channel" -msgstr "RedMatrix-Kanal" +#: ../../mod/mitem.php:116 ../../mod/menu.php:162 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "Nicht gefunden." -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." +#: ../../mod/mitem.php:149 ../../mod/mitem.php:222 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Bild-Anpassung fehlgeschlagen." +#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1053 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." +#: ../../mod/mitem.php:152 ../../mod/mitem.php:168 +msgid "Link Name" +msgstr "Name des Links" -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bild ist größer als das Limit von %d" +#: ../../mod/mitem.php:153 ../../mod/mitem.php:227 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Kann Bild nicht verarbeiten." +#: ../../mod/mitem.php:153 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto nicht verfügbar." +#: ../../mod/mitem.php:154 ../../mod/mitem.php:228 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Datei hochladen:" +#: ../../mod/mitem.php:155 ../../mod/mitem.php:229 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Wähle ein Profil:" +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 -msgid "or" -msgstr "oder" +#: ../../mod/mitem.php:157 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "diesen Schritt überspringen" +#: ../../mod/mitem.php:158 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "ein Foto aus meinen Fotoalben" +#: ../../mod/mitem.php:166 +msgid "Menu:" +msgstr "Menü:" -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Bild zuschneiden" +#: ../../mod/mitem.php:169 +msgid "Link Target" +msgstr "Ziel des Links" -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." +#: ../../mod/mitem.php:172 +msgid "Edit menu" +msgstr "Menü bearbeiten" -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Bearbeitung fertigstellen" +#: ../../mod/mitem.php:175 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." +#: ../../mod/mitem.php:176 +msgid "Drop element" +msgstr "Bestandteil löschen" -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Hochladen des Bilds fehlgeschlagen." +#: ../../mod/mitem.php:177 +msgid "New element" +msgstr "Neues Bestandteil" -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." +#: ../../mod/mitem.php:178 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ungültiges Element." +#: ../../mod/mitem.php:179 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." +#: ../../mod/mitem.php:180 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Seite nicht gefunden." +#: ../../mod/mitem.php:181 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" -#: ../../mod/network.php:84 -msgid "No such group" -msgstr "Sammlung nicht gefunden" +#: ../../mod/mitem.php:198 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." -#: ../../mod/network.php:122 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../mod/mitem.php:211 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." -#: ../../mod/network.php:176 -msgid "Collection is empty" -msgstr "Sammlung ist leer" +#: ../../mod/mitem.php:213 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." -#: ../../mod/network.php:184 -msgid "Collection: " -msgstr "Sammlung:" +#: ../../mod/mitem.php:220 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" -#: ../../mod/network.php:197 -msgid "Connection: " -msgstr "Verbindung:" +#: ../../mod/mitem.php:226 +msgid "Link text" +msgstr "Link Text" -#: ../../mod/network.php:200 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Konnte nicht auf den Kontakteintrag zugreifen." -#: ../../mod/events.php:87 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Gewähltes Profil nicht gefunden." -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." +#: ../../mod/connedit.php:219 +msgid "Connection updated." +msgstr "Verbindung aktualisiert." -#: ../../mod/events.php:96 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." +#: ../../mod/connedit.php:221 +msgid "Failed to update connection record." +msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../mod/events.php:114 -msgid "Event not found." -msgstr "Termin nicht gefunden." +#: ../../mod/connedit.php:268 +msgid "is now connected to" +msgstr "ist jetzt verbunden mit" -#: ../../mod/events.php:396 -msgid "l, F j" -msgstr "l, j. F" +#: ../../mod/connedit.php:391 +msgid "Could not access address book record." +msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../mod/events.php:418 -msgid "Edit event" -msgstr "Termin bearbeiten" +#: ../../mod/connedit.php:405 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../mod/events.php:419 -msgid "Delete event" -msgstr "Termin löschen" +#: ../../mod/connedit.php:414 ../../mod/connedit.php:423 +#: ../../mod/connedit.php:432 ../../mod/connedit.php:441 +#: ../../mod/connedit.php:454 +msgid "Unable to set address book parameters." +msgstr "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../mod/events.php:473 -msgid "Create New Event" -msgstr "Neuen Termin erstellen" +#: ../../mod/connedit.php:478 +msgid "Connection has been removed." +msgstr "Verbindung wurde gelöscht." -#: ../../mod/events.php:474 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Voriges" +#: ../../mod/connedit.php:497 +#, php-format +msgid "View %s's profile" +msgstr "%ss Profil ansehen" -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 -msgid "Next" -msgstr "Nächste" +#: ../../mod/connedit.php:501 +msgid "Refresh Permissions" +msgstr "Zugriffsrechte neu laden" -#: ../../mod/events.php:476 -msgid "Export" -msgstr "Exportieren" +#: ../../mod/connedit.php:504 +msgid "Fetch updated permissions" +msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../mod/events.php:504 -msgid "Event removed" -msgstr "Termin gelöscht" +#: ../../mod/connedit.php:508 +msgid "Recent Activity" +msgstr "Kürzliche Aktivitäten" -#: ../../mod/events.php:507 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" +#: ../../mod/connedit.php:511 +msgid "View recent posts and comments" +msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../mod/events.php:625 -msgid "Event details" -msgstr "Termin-Details" +#: ../../mod/connedit.php:515 ../../mod/admin.php:785 +msgid "Unblock" +msgstr "Freigeben" -#: ../../mod/events.php:626 -msgid "Starting date and Title are required." -msgstr "Startdatum und Titel sind erforderlich." +#: ../../mod/connedit.php:515 ../../mod/admin.php:784 +msgid "Block" +msgstr "Blockieren" -#: ../../mod/events.php:628 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" +#: ../../mod/connedit.php:518 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" -#: ../../mod/events.php:630 -msgid "Event Starts:" -msgstr "Termin beginnt:" +#: ../../mod/connedit.php:519 +msgid "This connection is blocked!" +msgstr "Die Verbindung ist geblockt!" -#: ../../mod/events.php:637 -msgid "Finish date/time is not known or not relevant" -msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" +#: ../../mod/connedit.php:523 +msgid "Unignore" +msgstr "Nicht ignorieren" -#: ../../mod/events.php:639 -msgid "Event Finishes:" -msgstr "Termin endet:" +#: ../../mod/connedit.php:523 ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorieren" -#: ../../mod/events.php:641 ../../mod/events.php:642 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" +#: ../../mod/connedit.php:526 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" -#: ../../mod/events.php:641 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." +#: ../../mod/connedit.php:527 +msgid "This connection is ignored!" +msgstr "Die Verbindung wird ignoriert!" -#: ../../mod/events.php:643 -msgid "Description:" -msgstr "Beschreibung:" +#: ../../mod/connedit.php:531 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" -#: ../../mod/events.php:647 -msgid "Title:" -msgstr "Titel:" +#: ../../mod/connedit.php:531 +msgid "Archive" +msgstr "Archivieren" -#: ../../mod/events.php:649 -msgid "Share this event" -msgstr "Den Termin teilen" +#: ../../mod/connedit.php:534 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt nun %2$ss %3$s" +#: ../../mod/connedit.php:535 +msgid "This connection is archived!" +msgstr "Die Verbindung ist archiviert!" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Öffentliche Server" +#: ../../mod/connedit.php:539 +msgid "Unhide" +msgstr "Wieder sichtbar machen" -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen." +#: ../../mod/connedit.php:539 +msgid "Hide" +msgstr "Verstecken" -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "Bewerte diesen Hub" +#: ../../mod/connedit.php:542 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "Server-URL" +#: ../../mod/connedit.php:543 +msgid "This connection is hidden!" +msgstr "Die Verbindung ist versteckt!" -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "Zugangstyp" +#: ../../mod/connedit.php:550 +msgid "Delete this connection" +msgstr "Verbindung löschen" -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" +#: ../../mod/connedit.php:631 +msgid "Approve this connection" +msgstr "Verbindung genehmigen" -#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 -msgid "Location" -msgstr "Ort" +#: ../../mod/connedit.php:631 +msgid "Accept connection to allow communication" +msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "Bewertungen dieses Hubs ansehen" +#: ../../mod/connedit.php:636 +msgid "Set Affinity" +msgstr "Beziehung festlegen" -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "Bewerten" +#: ../../mod/connedit.php:639 +msgid "Set Profile" +msgstr "Profil festlegen" -#: ../../mod/pubsites.php:31 -msgid "View ratings" -msgstr "Bewertungen ansehen" +#: ../../mod/connedit.php:642 +msgid "Set Affinity & Profile" +msgstr "Beziehung und Profile festlegen" -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Name ist erforderlich" +#: ../../mod/connedit.php:659 +msgid "Apply these permissions automatically" +msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Schlüssel und Geheimnis werden benötigt" +#: ../../mod/connedit.php:661 +msgid "This connection's address is" +msgstr "Die Adresse dieses Kontakts ist" -#: ../../mod/settings.php:120 -msgid "Diaspora Policy Settings updated." -msgstr "Diaspora-Einstellungen aktualisiert." +#: ../../mod/connedit.php:664 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." -#: ../../mod/settings.php:228 -msgid "Passwords do not match. Password unchanged." -msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." +#: ../../mod/connedit.php:666 +msgid "Slide to adjust your degree of friendship" +msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../mod/settings.php:232 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." +#: ../../mod/connedit.php:668 +msgid "Slide to adjust your rating" +msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../mod/settings.php:246 -msgid "Password changed." -msgstr "Kennwort geändert." +#: ../../mod/connedit.php:669 ../../mod/connedit.php:674 +msgid "Optionally explain your rating" +msgstr "Optional kannst Du Deine Bewertung begründen" -#: ../../mod/settings.php:248 -msgid "Password update failed. Please try again." -msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." +#: ../../mod/connedit.php:671 +msgid "Custom Filter" +msgstr "Benutzerdefinierter Filter" -#: ../../mod/settings.php:262 -msgid "Not valid email." -msgstr "Keine gültige E-Mail Adresse." +#: ../../mod/connedit.php:672 +msgid "Only import posts with this text" +msgstr "Nur Beiträge mit diesem Text importieren" -#: ../../mod/settings.php:265 -msgid "Protected email address. Cannot change to that email." -msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." +#: ../../mod/connedit.php:672 ../../mod/connedit.php:673 +msgid "" +"words one per line or #tags or /patterns/, leave blank to import all posts" +msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Posts zu importieren." -#: ../../mod/settings.php:274 -msgid "System failure storing new email. Please try again." -msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." +#: ../../mod/connedit.php:673 +msgid "Do not import posts with this text" +msgstr "Beiträge mit diesem Text nicht importieren" -#: ../../mod/settings.php:513 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." +#: ../../mod/connedit.php:675 +msgid "This information is public!" +msgstr "Diese Information ist öffentlich!" -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -#: ../../mod/settings.php:644 -msgid "Add application" -msgstr "Anwendung hinzufügen" +#: ../../mod/connedit.php:680 +msgid "Connection Pending Approval" +msgstr "Verbindung wartet auf Bestätigung" -#: ../../mod/settings.php:585 -msgid "Name of application" -msgstr "Name der Anwendung" +#: ../../mod/connedit.php:681 +msgid "Connection Request" +msgstr "Verbindungsanfrage" -#: ../../mod/settings.php:586 ../../mod/settings.php:612 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../mod/connedit.php:682 +#, php-format +msgid "" +"(%s) would like to connect with you. Please approve this connection to allow" +" communication." +msgstr "(%s) möchte sich mit Dir verbinden. Bitte genehmige die Verbindung, um Kommunikation zu ermöglichen." -#: ../../mod/settings.php:586 ../../mod/settings.php:587 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" +#: ../../mod/connedit.php:683 ../../mod/admin.php:781 +msgid "Approve" +msgstr "Genehmigen" -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../mod/connedit.php:684 +msgid "Approve Later" +msgstr "Später genehmigen" -#: ../../mod/settings.php:588 ../../mod/settings.php:614 -msgid "Redirect" -msgstr "Umleitung" +#: ../../mod/connedit.php:687 +msgid "inherited" +msgstr "geerbt" -#: ../../mod/settings.php:588 +#: ../../mod/connedit.php:689 +#, php-format msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" - -#: ../../mod/settings.php:589 ../../mod/settings.php:615 -msgid "Icon url" -msgstr "Symbol-URL" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../mod/settings.php:589 -msgid "Optional" -msgstr "Optional" +#: ../../mod/connedit.php:691 +msgid "Their Settings" +msgstr "Deren Einstellungen" -#: ../../mod/settings.php:600 -msgid "You can't edit this application." -msgstr "Diese Anwendung kann nicht bearbeitet werden." +#: ../../mod/connedit.php:692 +msgid "My Settings" +msgstr "Meine Einstellungen" -#: ../../mod/settings.php:643 -msgid "Connected Apps" -msgstr "Verbundene Apps" +#: ../../mod/connedit.php:694 +msgid "Individual Permissions" +msgstr "Individuelle Zugriffsrechte" -#: ../../mod/settings.php:647 -msgid "Client key starts with" -msgstr "Client Key beginnt mit" +#: ../../mod/connedit.php:695 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden." -#: ../../mod/settings.php:648 -msgid "No name" -msgstr "Kein Name" +#: ../../mod/connedit.php:696 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../mod/settings.php:649 -msgid "Remove authorization" -msgstr "Authorisierung aufheben" +#: ../../mod/connedit.php:697 +msgid "Last update:" +msgstr "Letzte Aktualisierung:" -#: ../../mod/settings.php:663 -msgid "No feature settings configured" -msgstr "Keine Funktions-Einstellungen konfiguriert" +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" -#: ../../mod/settings.php:676 -msgid "Feature Settings" -msgstr "Funktions-Einstellungen" +#: ../../mod/magic.php:69 +msgid "Hub not found." +msgstr "Server nicht gefunden." -#: ../../mod/settings.php:679 -msgid "Diaspora Policy Settings" -msgstr "Diaspora-Einstellungen" +#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." -#: ../../mod/settings.php:680 -msgid "Allow any Diaspora member to comment on your public posts." -msgstr "Allen Diaspora-Mitgliedern erlauben, Deine öffentlichen Beiträge zu kommentieren." +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" -#: ../../mod/settings.php:681 -msgid "Submit Diaspora Policy Settings" -msgstr "Diaspora-Einstellungen speichern" +#: ../../mod/pconfig.php:50 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." -#: ../../mod/settings.php:704 -msgid "Account Settings" -msgstr "Konto-Einstellungen" +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Öffentliche Server" -#: ../../mod/settings.php:705 -msgid "Password Settings" -msgstr "Kennwort-Einstellungen" +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration for the $Projectname network. All" +" sites in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some sites may require subscription or" +" provide tiered service plans. The provider links may " +"provide additional details." +msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung bei $Projectname. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen anderen Servern ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den verlinkten Seiten könnten nähere Details dazu stehen." -#: ../../mod/settings.php:706 -msgid "New Password:" -msgstr "Neues Passwort:" +#: ../../mod/pubsites.php:25 +msgid "Rate this hub" +msgstr "Bewerte diesen Hub" -#: ../../mod/settings.php:707 -msgid "Confirm:" -msgstr "Bestätigen:" +#: ../../mod/pubsites.php:26 +msgid "Site URL" +msgstr "Server-URL" -#: ../../mod/settings.php:707 -msgid "Leave password fields blank unless changing" -msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" +#: ../../mod/pubsites.php:26 +msgid "Access Type" +msgstr "Zugangstyp" -#: ../../mod/settings.php:709 ../../mod/settings.php:1045 -msgid "Email Address:" -msgstr "Email Adresse:" +#: ../../mod/pubsites.php:26 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" -#: ../../mod/settings.php:710 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Konto entfernen" +#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 +msgid "Location" +msgstr "Ort" -#: ../../mod/settings.php:711 -msgid "Remove this account from this server including all its channels" -msgstr "Lösche dieses Konto einschließlich aller zugehörigen Kanäle von diesem Server" +#: ../../mod/pubsites.php:26 +msgid "View hub ratings" +msgstr "Bewertungen dieses Hubs ansehen" -#: ../../mod/settings.php:712 ../../mod/settings.php:1126 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden." +#: ../../mod/pubsites.php:30 +msgid "Rate" +msgstr "Bewerten" -#: ../../mod/settings.php:728 -msgid "Off" -msgstr "Aus" +#: ../../mod/pubsites.php:31 +msgid "View ratings" +msgstr "Bewertungen ansehen" -#: ../../mod/settings.php:728 -msgid "On" -msgstr "An" +#: ../../mod/filestorage.php:82 +msgid "Permission Denied." +msgstr "Zugriff verweigert." -#: ../../mod/settings.php:735 -msgid "Additional Features" -msgstr "Zusätzliche Funktionen" +#: ../../mod/filestorage.php:98 +msgid "File not found." +msgstr "Datei nicht gefunden." -#: ../../mod/settings.php:759 -msgid "Connector Settings" -msgstr "Connector-Einstellungen" +#: ../../mod/filestorage.php:141 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" -#: ../../mod/settings.php:798 -msgid "No special theme for mobile devices" -msgstr "Keine spezielle Theme für mobile Geräte" +#: ../../mod/filestorage.php:150 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" -#: ../../mod/settings.php:801 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s – (experimentell)" +#: ../../mod/filestorage.php:151 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" -#: ../../mod/settings.php:804 ../../mod/admin.php:367 -msgid "mobile" -msgstr "mobil" +#: ../../mod/filestorage.php:152 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" -#: ../../mod/settings.php:840 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" +#: ../../mod/filestorage.php:154 +msgid "Copy/paste this code to attach file to a post" +msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" -#: ../../mod/settings.php:846 -msgid "Display Theme:" -msgstr "Anzeige-Theme:" +#: ../../mod/filestorage.php:155 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" -#: ../../mod/settings.php:847 -msgid "Mobile Theme:" -msgstr "Mobile Theme:" +#: ../../mod/filestorage.php:157 +msgid "Share this file" +msgstr "Diese Datei freigeben" -#: ../../mod/settings.php:848 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom auf Mobilgeräten aktivieren" +#: ../../mod/filestorage.php:158 +msgid "Show URL to this file" +msgstr "URL zu dieser Datei anzeigen" -#: ../../mod/settings.php:849 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" +#: ../../mod/filestorage.php:159 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" -#: ../../mod/settings.php:849 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 Sekunden, kein Maximum" +#: ../../mod/layouts.php:121 ../../mod/layouts.php:179 +#: ../../mod/editlayout.php:161 +msgid "Layout Name" +msgstr "Layout-Name" -#: ../../mod/settings.php:850 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" +#: ../../mod/layouts.php:124 ../../mod/editlayout.php:159 +msgid "Layout Description (Optional)" +msgstr "Layout-Beschreibung (optional)" -#: ../../mod/settings.php:850 -msgid "Maximum of 100 items" -msgstr "Maximum: 100 Beiträge" +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" +msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" -#: ../../mod/settings.php:851 -msgid "Don't show emoticons" -msgstr "Emoticons nicht anzeigen" +#: ../../mod/layouts.php:180 +msgid "Layout Description" +msgstr "Layout-Beschreibung" -#: ../../mod/settings.php:852 -msgid "Link post titles to source" -msgstr "Beitragstitel zum Originalbeitrag verlinken" +#: ../../mod/layouts.php:185 +msgid "Download PDL file" +msgstr "PDL-Datei herunterladen" -#: ../../mod/settings.php:853 -msgid "System Page Layout Editor - (advanced)" -msgstr "System-Seitenlayout-Editor (für Experten)" +#: ../../mod/poke.php:164 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" -#: ../../mod/settings.php:856 -msgid "Use blog/list mode on channel page" -msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" +#: ../../mod/poke.php:165 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" -#: ../../mod/settings.php:856 ../../mod/settings.php:857 -msgid "(comments displayed separately)" -msgstr "(Kommentare werden separat angezeigt)" +#: ../../mod/poke.php:166 +msgid "Recipient" +msgstr "Empfänger" -#: ../../mod/settings.php:857 -msgid "Use blog/list mode on matrix page" -msgstr "Blog-/Listenmodus auf der Matrixseite verwenden" +#: ../../mod/poke.php:167 +msgid "Choose what you wish to do to recipient" +msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" -#: ../../mod/settings.php:858 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" +#: ../../mod/poke.php:170 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" -#: ../../mod/settings.php:858 ../../mod/settings.php:859 -msgid "click to expand content exceeding this height" -msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." +#: ../../mod/network.php:91 +msgid "No such group" +msgstr "Sammlung nicht gefunden" -#: ../../mod/settings.php:859 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)" +#: ../../mod/network.php:131 +msgid "No such channel" +msgstr "Kanal nicht gefunden" -#: ../../mod/settings.php:893 -msgid "Nobody except yourself" -msgstr "Niemand außer Dir selbst" +#: ../../mod/network.php:136 +msgid "forum" +msgstr "Forum" -#: ../../mod/settings.php:894 -msgid "Only those you specifically allow" -msgstr "Nur die, denen Du es explizit erlaubst" +#: ../../mod/network.php:148 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" -#: ../../mod/settings.php:895 -msgid "Approved connections" -msgstr "Angenommene Verbindungen" +#: ../../mod/network.php:207 +msgid "Collection is empty" +msgstr "Sammlung ist leer" -#: ../../mod/settings.php:896 -msgid "Any connections" -msgstr "Beliebige Verbindungen" +#: ../../mod/network.php:216 +msgid "Collection: " +msgstr "Sammlung:" -#: ../../mod/settings.php:897 -msgid "Anybody on this website" -msgstr "Jeder auf dieser Website" +#: ../../mod/network.php:242 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." -#: ../../mod/settings.php:898 -msgid "Anybody in this network" -msgstr "Alle Red-Nutzer" +#: ../../mod/chat.php:19 ../../mod/channel.php:25 +msgid "You must be logged in to see this page." +msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." -#: ../../mod/settings.php:899 -msgid "Anybody authenticated" -msgstr "Jeder authentifizierte" +#: ../../mod/chat.php:171 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" -#: ../../mod/settings.php:900 -msgid "Anybody on the internet" -msgstr "Jeder im Internet" +#: ../../mod/chat.php:182 +msgid "Leave Room" +msgstr "Raum verlassen" -#: ../../mod/settings.php:974 -msgid "Publish your default profile in the network directory" -msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" +#: ../../mod/chat.php:183 +msgid "Delete This Room" +msgstr "Diesen Raum löschen" -#: ../../mod/settings.php:979 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" +#: ../../mod/chat.php:184 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" -#: ../../mod/settings.php:988 -msgid "Your channel address is" -msgstr "Deine Kanal-Adresse lautet" +#: ../../mod/chat.php:185 +msgid "I am online" +msgstr "Ich bin online" -#: ../../mod/settings.php:1036 -msgid "Channel Settings" -msgstr "Kanal-Einstellungen" +#: ../../mod/chat.php:187 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" -#: ../../mod/settings.php:1043 -msgid "Basic Settings" -msgstr "Grundeinstellungen" +#: ../../mod/chat.php:205 ../../mod/chat.php:227 +msgid "New Chatroom" +msgstr "Neuer Chatraum" -#: ../../mod/settings.php:1046 -msgid "Your Timezone:" -msgstr "Ihre Zeitzone:" +#: ../../mod/chat.php:206 +msgid "Chatroom Name" +msgstr "Name des Chatraums" -#: ../../mod/settings.php:1047 -msgid "Default Post Location:" -msgstr "Standardstandort:" +#: ../../mod/chat.php:223 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" -#: ../../mod/settings.php:1047 -msgid "Geographical location to display on your posts" -msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" +#: ../../mod/search.php:209 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge mit Schlagwort: %s" -#: ../../mod/settings.php:1048 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" +#: ../../mod/search.php:211 +#, php-format +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" -#: ../../mod/settings.php:1050 -msgid "Adult Content" -msgstr "Nicht jugendfreie Inhalte" +#: ../../mod/message.php:34 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." -#: ../../mod/settings.php:1050 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." -#: ../../mod/settings.php:1052 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Datenschutz-Einstellungen" +#: ../../mod/editpost.php:20 ../../mod/editblock.php:78 +#: ../../mod/editblock.php:94 ../../mod/editlayout.php:76 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Element nicht gefunden" -#: ../../mod/settings.php:1054 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." + +#: ../../mod/editpost.php:55 +msgid "Delete item?" +msgstr "Eintrag löschen?" -#: ../../mod/settings.php:1056 -msgid "Hide my online presence" -msgstr "Meine Online-Präsenz verbergen" +#: ../../mod/editpost.php:122 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:185 +msgid "Insert YouTube video" +msgstr "YouTube-Video einfügen" -#: ../../mod/settings.php:1056 -msgid "Prevents displaying in your profile that you are online" -msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" +#: ../../mod/editpost.php:123 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:186 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis [.ogg]-Video einfügen" -#: ../../mod/settings.php:1058 -msgid "Simple Privacy Settings:" -msgstr "Einfache Privatsphäre-Einstellungen" +#: ../../mod/editpost.php:124 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:187 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis [.ogg]-Audio einfügen" -#: ../../mod/settings.php:1059 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" +#: ../../mod/editpost.php:165 ../../mod/rpost.php:128 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../mod/settings.php:1060 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" +#: ../../mod/dreport.php:15 +msgid "Invalid message" +msgstr "Ungültige Beitrags-ID (mid)" -#: ../../mod/settings.php:1061 -msgid "Private - default private, never open or public" -msgstr "Privat – Standard privat, nie offen oder öffentlich" +#: ../../mod/dreport.php:25 +msgid "no results" +msgstr "keine Ergebnisse" -#: ../../mod/settings.php:1062 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockiert – Alle standardmäßig blockiert" +#: ../../mod/dreport.php:30 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Zustellungsbericht für %1$s" -#: ../../mod/settings.php:1064 -msgid "Allow others to tag your posts" -msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" +#: ../../mod/dreport.php:39 +msgid "channel sync processed" +msgstr "Kanal-Sync verarbeitet" -#: ../../mod/settings.php:1064 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" +#: ../../mod/dreport.php:43 +msgid "queued" +msgstr "zur Warteschlange hinzugefügt" -#: ../../mod/settings.php:1066 -msgid "Advanced Privacy Settings" -msgstr "Fortgeschrittene Privatsphäre-Einstellungen" +#: ../../mod/dreport.php:47 +msgid "posted" +msgstr "zugestellt" -#: ../../mod/settings.php:1068 -msgid "Expire other channel content after this many days" -msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" +#: ../../mod/dreport.php:51 +msgid "accepted for delivery" +msgstr "für Zustellung akzeptiert" -#: ../../mod/settings.php:1068 -msgid "0 or blank prevents expiration" -msgstr "0 oder kein Inhalt verhindern das Verfallen" +#: ../../mod/dreport.php:55 +msgid "updated" +msgstr "aktualisiert" -#: ../../mod/settings.php:1069 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Kontaktanfragen pro Tag:" +#: ../../mod/dreport.php:58 +msgid "update ignored" +msgstr "Aktualisierung ignoriert" -#: ../../mod/settings.php:1069 -msgid "May reduce spam activity" -msgstr "Kann die Spam-Aktivität verringern" +#: ../../mod/dreport.php:61 +msgid "permission denied" +msgstr "Zugriff verweigert" -#: ../../mod/settings.php:1070 -msgid "Default Post Permissions" -msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" +#: ../../mod/editblock.php:118 +msgid "Delete block?" +msgstr "Block löschen?" -#: ../../mod/settings.php:1071 ../../mod/mitem.php:161 ../../mod/mitem.php:204 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" +#: ../../mod/editblock.php:180 +msgid "Edit Block" +msgstr "Block bearbeiten" -#: ../../mod/settings.php:1075 -msgid "Channel permissions category:" -msgstr "Zugriffsrechte-Kategorie des Kanals:" +#: ../../mod/home.php:57 ../../mod/home.php:63 ../../mod/siteinfo.php:157 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../mod/settings.php:1081 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" +#: ../../mod/home.php:73 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" -#: ../../mod/settings.php:1081 -msgid "Useful to reduce spamming" -msgstr "Nützlich, um Spam zu verringern" +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." -#: ../../mod/settings.php:1084 -msgid "Notification Settings" -msgstr "Benachrichtigungs-Einstellungen" +#: ../../mod/item.php:407 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." -#: ../../mod/settings.php:1085 -msgid "By default post a status message when:" -msgstr "Sende standardmäßig Status-Nachrichten, wenn:" +#: ../../mod/item.php:447 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." -#: ../../mod/settings.php:1086 -msgid "accepting a friend request" -msgstr "Du eine Verbindungsanfrage annimmst" +#: ../../mod/item.php:896 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." -#: ../../mod/settings.php:1087 -msgid "joining a forum/community" -msgstr "Du einem Forum beitrittst" +#: ../../mod/item.php:1163 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." -#: ../../mod/settings.php:1088 -msgid "making an interesting profile change" -msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" +#: ../../mod/item.php:1170 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." -#: ../../mod/settings.php:1089 -msgid "Send a notification email when:" -msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" +#: ../../mod/item.php:1177 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." -#: ../../mod/settings.php:1090 -msgid "You receive a connection request" -msgstr "Du eine Verbindungsanfrage erhältst" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." -#: ../../mod/settings.php:1091 -msgid "Your connections are confirmed" -msgstr "Eine Verbindung bestätigt wurde" +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." -#: ../../mod/settings.php:1092 -msgid "Someone writes on your profile wall" -msgstr "Jemand auf Deine Pinnwand schreibt" +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Theme-Einstellungen aktualisiert." -#: ../../mod/settings.php:1093 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" +#: ../../mod/admin.php:160 +msgid "# Accounts" +msgstr "Anzahl der Konten" -#: ../../mod/settings.php:1094 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" +#: ../../mod/admin.php:161 +msgid "# blocked accounts" +msgstr "Anzahl der blockierten Konten" -#: ../../mod/settings.php:1095 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" +#: ../../mod/admin.php:162 +msgid "# expired accounts" +msgstr "Anzahl der abgelaufenen Konten" -#: ../../mod/settings.php:1096 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" +#: ../../mod/admin.php:163 +msgid "# expiring accounts" +msgstr "Anzahl der ablaufenden Konten" -#: ../../mod/settings.php:1097 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" +#: ../../mod/admin.php:174 +msgid "# Channels" +msgstr "Anzahl der Kanäle" -#: ../../mod/settings.php:1100 -msgid "Show visual notifications including:" -msgstr "Visuelle Benachrichtigungen anzeigen für:" +#: ../../mod/admin.php:175 +msgid "# primary" +msgstr "Anzahl der primären Kanäle" -#: ../../mod/settings.php:1102 -msgid "Unseen matrix activity" -msgstr "Ungesehene Matrix-Aktivität" +#: ../../mod/admin.php:176 +msgid "# clones" +msgstr "Anzahl der Klone" -#: ../../mod/settings.php:1103 -msgid "Unseen channel activity" -msgstr "Ungesehene Kanal-Aktivität" +#: ../../mod/admin.php:182 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" -#: ../../mod/settings.php:1104 -msgid "Unseen private messages" -msgstr "Ungelesene persönliche Nachrichten" +#: ../../mod/admin.php:198 ../../mod/admin.php:409 ../../mod/admin.php:506 +#: ../../mod/admin.php:774 ../../mod/admin.php:938 ../../mod/admin.php:1030 +#: ../../mod/admin.php:1070 ../../mod/admin.php:1230 ../../mod/admin.php:1264 +#: ../../mod/admin.php:1349 +msgid "Administration" +msgstr "Administration" -#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 -msgid "Recommended" -msgstr "Empfohlen" +#: ../../mod/admin.php:199 +msgid "Summary" +msgstr "Zusammenfassung" -#: ../../mod/settings.php:1105 -msgid "Upcoming events" -msgstr "Baldige Termine" +#: ../../mod/admin.php:202 +msgid "Registered accounts" +msgstr "Registrierte Konten" -#: ../../mod/settings.php:1106 -msgid "Events today" -msgstr "Heutige Termine" +#: ../../mod/admin.php:203 ../../mod/admin.php:510 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" -#: ../../mod/settings.php:1107 -msgid "Upcoming birthdays" -msgstr "Baldige Geburtstage" +#: ../../mod/admin.php:204 +msgid "Registered channels" +msgstr "Registrierte Kanäle" -#: ../../mod/settings.php:1107 -msgid "Not available in all themes" -msgstr "Nicht in allen Themes verfügbar" +#: ../../mod/admin.php:205 ../../mod/admin.php:511 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" -#: ../../mod/settings.php:1108 -msgid "System (personal) notifications" -msgstr "System – (persönliche) Benachrichtigungen" +#: ../../mod/admin.php:206 +msgid "Version" +msgstr "Version" -#: ../../mod/settings.php:1109 -msgid "System info messages" -msgstr "System – Info-Nachrichten" +#: ../../mod/admin.php:321 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." -#: ../../mod/settings.php:1110 -msgid "System critical alerts" -msgstr "System – kritische Warnungen" +#: ../../mod/admin.php:358 ../../mod/settings.php:790 +msgid "mobile" +msgstr "mobil" -#: ../../mod/settings.php:1111 -msgid "New connections" -msgstr "Neue Verbindungen" +#: ../../mod/admin.php:360 +msgid "experimental" +msgstr "experimentell" -#: ../../mod/settings.php:1112 -msgid "System Registrations" -msgstr "System – Registrierungen" +#: ../../mod/admin.php:362 +msgid "unsupported" +msgstr "nicht unterstützt" -#: ../../mod/settings.php:1113 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an" +#: ../../mod/admin.php:387 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" -#: ../../mod/settings.php:1115 -msgid "Notify me of events this many days in advance" -msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" +#: ../../mod/admin.php:393 +msgid "My site is not a public server" +msgstr "Mein Server ist kein öffentlicher Server" -#: ../../mod/settings.php:1115 -msgid "Must be greater than 0" -msgstr "Muss größer als 0 sein" +#: ../../mod/admin.php:394 +msgid "My site has paid access only" +msgstr "Mein Server erlaubt nur bezahlten Zugang" -#: ../../mod/settings.php:1117 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" +#: ../../mod/admin.php:395 +msgid "My site has free access only" +msgstr "Mein Server erlaubt ausschließlich freien Zugang" -#: ../../mod/settings.php:1118 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" +#: ../../mod/admin.php:396 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../mod/settings.php:1121 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" +#: ../../mod/admin.php:412 ../../mod/register.php:207 +msgid "Registration" +msgstr "Registrierung" -#: ../../mod/settings.php:1122 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" +#: ../../mod/admin.php:413 +msgid "File upload" +msgstr "Dateiupload" -#: ../../mod/settings.php:1124 -msgid "Personal menu to display in your channel pages" -msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" +#: ../../mod/admin.php:414 +msgid "Policies" +msgstr "Richtlinien" -#: ../../mod/settings.php:1125 -msgid "Remove this channel" -msgstr "Diesen Kanal löschen" +#: ../../mod/admin.php:419 +msgid "Site name" +msgstr "Seitenname" -#: ../../mod/cloud.php:120 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" +#: ../../mod/admin.php:420 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Schlagwort entfernt" +#: ../../mod/admin.php:421 +msgid "Administrator Information" +msgstr "Administrator-Informationen" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" +#: ../../mod/admin.php:421 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" +#: ../../mod/admin.php:422 +msgid "System language" +msgstr "System-Sprache" -#: ../../mod/tagrm.php:133 ../../mod/delegate.php:130 ../../mod/photos.php:873 -msgid "Remove" -msgstr "Entferne" +#: ../../mod/admin.php:423 +msgid "System theme" +msgstr "System-Theme" -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Sammlung erstellt." +#: ../../mod/admin.php:423 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Sammlung kann nicht erstellt werden." +#: ../../mod/admin.php:424 +msgid "Mobile system theme" +msgstr "Mobile System-Theme:" -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Sammlung aktualisiert." +#: ../../mod/admin.php:424 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Erstelle eine Sammlung von Kanälen." +#: ../../mod/admin.php:426 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Name der Sammlung:" +#: ../../mod/admin.php:426 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Mitglieder sind sichtbar für andere Kanäle" +#: ../../mod/admin.php:427 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Sammlung gelöscht." +#: ../../mod/admin.php:427 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Löschen der Sammlung nicht möglich." +#: ../../mod/admin.php:428 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Sammlung-Editor" +#: ../../mod/admin.php:429 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Mitglieder" +#: ../../mod/admin.php:430 +msgid "Register text" +msgstr "Registrierungstext" -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alle verbundenen Kanäle" +#: ../../mod/admin.php:430 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." +#: ../../mod/admin.php:431 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" -#: ../../mod/siteinfo.php:93 -#, php-format -msgid "Version %s" -msgstr "Version %s" +#: ../../mod/admin.php:431 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." -#: ../../mod/siteinfo.php:114 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" +#: ../../mod/admin.php:432 +msgid "Preserve site homepage URL" +msgstr "Homepage-URL schützen" -#: ../../mod/siteinfo.php:127 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" +#: ../../mod/admin.php:432 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." -#: ../../mod/siteinfo.php:136 -msgid "Red" -msgstr "Red" +#: ../../mod/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../mod/siteinfo.php:137 +#: ../../mod/admin.php:433 msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." -#: ../../mod/siteinfo.php:139 -msgid "Tag: " -msgstr "Schlagwort: " +#: ../../mod/admin.php:434 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" -#: ../../mod/siteinfo.php:141 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" +#: ../../mod/admin.php:434 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/siteinfo.php:144 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" +#: ../../mod/admin.php:435 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" -#: ../../mod/siteinfo.php:145 +#: ../../mod/admin.php:435 msgid "" -"Please visit RedMatrix.me to learn more" -" about the Red Matrix." -msgstr "Bitte besuchen Sie RedMatrix.me, um mehr über RedMatrix zu erfahren." +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/siteinfo.php:146 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../mod/admin.php:436 +msgid "Not allowed email domains" +msgstr "Nicht erlaubte Domains für E-Mails" -#: ../../mod/siteinfo.php:149 +#: ../../mod/admin.php:436 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." -#: ../../mod/siteinfo.php:151 -msgid "Site Administrators" -msgstr "Administratoren" +#: ../../mod/admin.php:437 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Hilfe:" +#: ../../mod/admin.php:437 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist." -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "Nicht gefunden" +#: ../../mod/admin.php:438 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" -msgstr "Red Matrix Server - Installation" +#: ../../mod/admin.php:438 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." -#: ../../mod/setup.php:172 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." +#: ../../mod/admin.php:439 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" -#: ../../mod/setup.php:176 +#: ../../mod/admin.php:439 msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Kann Tabelle nicht erstellen." +#: ../../mod/admin.php:440 +msgid "Disable discovery tab" +msgstr "Den „Entdecken“-Reiter ausblenden" -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Die Datenbank Deines Hubs wurde installiert." +#: ../../mod/admin.php:440 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden." + +#: ../../mod/admin.php:441 +msgid "login on Homepage" +msgstr "Anmeldemaske auf der Homepage" -#: ../../mod/setup.php:194 +#: ../../mod/admin.php:441 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Lies die Datei \"install/INSTALL.txt\"." +#: ../../mod/admin.php:443 +msgid "Proxy user" +msgstr "Proxy Benutzer" -#: ../../mod/setup.php:261 -msgid "System check" -msgstr "Systemprüfung" +#: ../../mod/admin.php:444 +msgid "Proxy URL" +msgstr "Proxy URL" -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Bitte nochmal prüfen" +#: ../../mod/admin.php:445 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Datenbank Verbindung" +#: ../../mod/admin.php:445 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." + +#: ../../mod/admin.php:446 +msgid "Delivery interval" +msgstr "Auslieferung Intervall" -#: ../../mod/setup.php:290 +#: ../../mod/admin.php:446 msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." -msgstr "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." + +#: ../../mod/admin.php:447 +msgid "Deliveries per process" +msgstr "Zustellungen pro Prozess" -#: ../../mod/setup.php:291 +#: ../../mod/admin.php:447 msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." + +#: ../../mod/admin.php:448 +msgid "Poll interval" +msgstr "Abfrageintervall" -#: ../../mod/setup.php:292 +#: ../../mod/admin.php:448 msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Datenbank-Servername" +#: ../../mod/admin.php:449 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "Standard ist localhost" +#: ../../mod/admin.php:449 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Datenbank-Port" +#: ../../mod/admin.php:450 +msgid "Expiration period in days for imported (matrix/network) content" +msgstr "Zeitraum in Tagen, nach dem importierte Inhalte (aus dem Grid/Netzwerk) gelöscht werden sollen" -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" -msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" +#: ../../mod/admin.php:450 +msgid "0 for no expiration of imported content" +msgstr "0 = keine Löschung importierter Inhalte" -#: ../../mod/setup.php:298 -msgid "Database Login Name" -msgstr "Datenbank-Benutzername" +#: ../../mod/admin.php:498 +msgid "No server found" +msgstr "Kein Server gefunden" -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Datenbank-Kennwort" +#: ../../mod/admin.php:505 ../../mod/admin.php:788 +msgid "ID" +msgstr "ID" -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Datenbank-Name" +#: ../../mod/admin.php:505 +msgid "for channel" +msgstr "für Kanal" -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Datenbanktyp" +#: ../../mod/admin.php:505 +msgid "on server" +msgstr "auf Server" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "E-Mail Adresse des Seiten-Administrators" +#: ../../mod/admin.php:505 +msgid "Status" +msgstr "Status" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." +#: ../../mod/admin.php:507 +msgid "Server" +msgstr "Server" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "Server-URL" +#: ../../mod/admin.php:524 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." -msgstr "Nutze wenn möglich eine SSL-URL (https)." +#: ../../mod/admin.php:534 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Standard-Zeitzone für Deinen Server" +#: ../../mod/admin.php:537 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s wurde erfolgreich ausgeführt." -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Seiteneinstellungen" +#: ../../mod/admin.php:541 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." +#: ../../mod/admin.php:544 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-Funktion %s konnte nicht gefunden werden." -#: ../../mod/setup.php:396 -msgid "" -"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." -msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." +#: ../../mod/admin.php:560 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." -#: ../../mod/setup.php:400 -msgid "PHP executable path" -msgstr "PHP Pfad zu ausführbarer Datei" +#: ../../mod/admin.php:564 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Aktualisierungen" -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." +#: ../../mod/admin.php:566 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" -#: ../../mod/setup.php:405 -msgid "Command line PHP" -msgstr "PHP Befehlszeile" +#: ../../mod/admin.php:567 +msgid "Attempt to execute this update step automatically" +msgstr "Versuche, diesen Updateschritt automatisch auszuführen" -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." +#: ../../mod/admin.php:599 +msgid "Queue Statistics" +msgstr "Warteschlangenstatistiken" -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." +#: ../../mod/admin.php:600 +msgid "Total Entries" +msgstr "Einträge insgesamt" -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../mod/admin.php:601 +msgid "Priority" +msgstr "Priorität" -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." +#: ../../mod/admin.php:602 +msgid "Destination URL" +msgstr "Ziel-URL" -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." +#: ../../mod/admin.php:603 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markieren" -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "Verschlüsselungsschlüssel generieren" +#: ../../mod/admin.php:604 +msgid "Empty queue for this hub" +msgstr "Warteschlange für diesen Hub leeren" -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "libCurl-PHP-Modul" +#: ../../mod/admin.php:605 +msgid "Last known contact" +msgstr "Letzter Kontakt" -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "GD-Grafik-PHP-Modul" +#: ../../mod/admin.php:641 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s Konto blockiert/freigegeben" +msgstr[1] "%s Konten blockiert/freigegeben" -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "OpenSSL-PHP-Modul" +#: ../../mod/admin.php:649 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s Konto gelöscht" +msgstr[1] "%s Konten gelöscht" -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "mysqli oder postgres PHP-Modul" +#: ../../mod/admin.php:685 +msgid "Account not found" +msgstr "Konto nicht gefunden" -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "mb_string-PHP-Modul" +#: ../../mod/admin.php:697 +#, php-format +msgid "Account '%s' deleted" +msgstr "Konto '%s' gelöscht" -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" -msgstr "mcrypt-PHP-Modul" +#: ../../mod/admin.php:705 +#, php-format +msgid "Account '%s' blocked" +msgstr "Konto '%s' blockiert" -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "Apache-mod_rewrite-Modul" +#: ../../mod/admin.php:713 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Konto '%s' freigegeben" -#: ../../mod/setup.php:458 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." +#: ../../mod/admin.php:775 ../../mod/admin.php:787 +msgid "Users" +msgstr "Benutzer" -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" +#: ../../mod/admin.php:777 ../../mod/admin.php:941 +msgid "select all" +msgstr "Alle auswählen" -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" +#: ../../mod/admin.php:778 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." +#: ../../mod/admin.php:779 +msgid "Request date" +msgstr "Antragsdatum" -#: ../../mod/setup.php:476 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." +#: ../../mod/admin.php:780 +msgid "No registrations." +msgstr "Keine Registrierungen." -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." +#: ../../mod/admin.php:782 +msgid "Deny" +msgstr "Verweigern" -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." +#: ../../mod/admin.php:788 +msgid "Register date" +msgstr "Registrierungs-Datum" -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." +#: ../../mod/admin.php:788 +msgid "Last login" +msgstr "Letzte Anmeldung" -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." +#: ../../mod/admin.php:788 +msgid "Expires" +msgstr "Verfällt" -#: ../../mod/setup.php:508 -msgid "" -"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." -msgstr "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." +#: ../../mod/admin.php:788 +msgid "Service Class" +msgstr "Service-Klasse" -#: ../../mod/setup.php:509 +#: ../../mod/admin.php:790 msgid "" -"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." -msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?" -#: ../../mod/setup.php:510 +#: ../../mod/admin.php:791 msgid "" -"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." -msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst." +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" -#: ../../mod/setup.php:511 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." +#: ../../mod/admin.php:827 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s Kanal gesperrt/freigegeben" +msgstr[1] "%s Kanäle gesperrt/freigegeben" -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php ist beschreibbar" +#: ../../mod/admin.php:836 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "Code für %s Kanal gesperrt/freigegeben" +msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" -#: ../../mod/setup.php:524 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." +#: ../../mod/admin.php:843 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s Kanal gelöscht" +msgstr[1] "%s Kanäle gelöscht" + +#: ../../mod/admin.php:863 +msgid "Channel not found" +msgstr "Kanal nicht gefunden" -#: ../../mod/setup.php:525 +#: ../../mod/admin.php:874 #, php-format -msgid "" -"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." -msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." +msgid "Channel '%s' deleted" +msgstr "Kanal '%s' gelöscht" -#: ../../mod/setup.php:526 ../../mod/setup.php:544 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' gesperrt" -#: ../../mod/setup.php:527 +#: ../../mod/admin.php:886 #, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" -#: ../../mod/setup.php:530 +#: ../../mod/admin.php:897 #, php-format -msgid "%s is writable" -msgstr "%s ist beschreibbar" +msgid "Channel '%s' code allowed" +msgstr "Code für Kanal '%s' freigegeben" -#: ../../mod/setup.php:543 -msgid "" -"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" -msgstr "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Code für Kanal '%s' gesperrt" -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "store ist schreibbar" +#: ../../mod/admin.php:943 +msgid "Censor" +msgstr "Sperren" -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." +#: ../../mod/admin.php:944 +msgid "Uncensor" +msgstr "Freigeben" -#: ../../mod/setup.php:578 -msgid "" -"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!" -msgstr "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." +#: ../../mod/admin.php:945 +msgid "Allow Code" +msgstr "Code erlauben" -#: ../../mod/setup.php:579 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." +#: ../../mod/admin.php:946 +msgid "Disallow Code" +msgstr "Code sperren" -#: ../../mod/setup.php:580 -msgid "" -"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." -msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." +#: ../../mod/admin.php:948 +msgid "UID" +msgstr "UID" + +#: ../../mod/admin.php:948 ../../mod/profiles.php:447 +msgid "Address" +msgstr "Adresse" -#: ../../mod/setup.php:581 +#: ../../mod/admin.php:950 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" -#: ../../mod/setup.php:582 +#: ../../mod/admin.php:951 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "SSL Zertifikatverifizierung" +#: ../../mod/admin.php:991 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-In %s deaktiviert." -#: ../../mod/setup.php:590 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" +#: ../../mod/admin.php:995 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-In %s aktiviert." + +#: ../../mod/admin.php:1005 ../../mod/admin.php:1203 +msgid "Disable" +msgstr "Deaktivieren" + +#: ../../mod/admin.php:1008 ../../mod/admin.php:1205 +msgid "Enable" +msgstr "Aktivieren" -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" +#: ../../mod/admin.php:1032 ../../mod/admin.php:1232 +msgid "Toggle" +msgstr "Umschalten" -#: ../../mod/setup.php:602 -msgid "" -"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." -msgstr "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." +#: ../../mod/admin.php:1040 ../../mod/admin.php:1242 +msgid "Author: " +msgstr "Autor: " -#: ../../mod/setup.php:625 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." +#: ../../mod/admin.php:1041 ../../mod/admin.php:1243 +msgid "Maintainer: " +msgstr "Betreuer:" -#: ../../mod/setup.php:660 -msgid "

What next

" -msgstr "

Was als Nächstes

" +#: ../../mod/admin.php:1168 +msgid "No themes found." +msgstr "Keine Theme gefunden." -#: ../../mod/setup.php:661 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." +#: ../../mod/admin.php:1224 +msgid "Screenshot" +msgstr "Bildschirmfoto" -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Kein Kanal." +#: ../../mod/admin.php:1270 +msgid "[Experimental]" +msgstr "[Experimentell]" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" +#: ../../mod/admin.php:1271 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../mod/admin.php:1295 +msgid "Log settings updated." +msgstr "Protokoll-Einstellungen aktualisiert." -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." +#: ../../mod/admin.php:1352 +msgid "Clear" +msgstr "Leeren" -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Blockiert" +#: ../../mod/admin.php:1358 +msgid "Debugging" +msgstr "Debugging" -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Ignoriert" +#: ../../mod/admin.php:1359 +msgid "Log file" +msgstr "Protokolldatei" -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Versteckt" +#: ../../mod/admin.php:1359 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis." -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Archiviert" +#: ../../mod/admin.php:1360 +msgid "Log level" +msgstr "Protokollstufe" -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Alle" +#: ../../mod/admin.php:1406 +msgid "New Profile Field" +msgstr "Neues Profilfeld" -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Neue Verbindungen vorschlagen" +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "Field nickname" +msgstr "Kurzname für das Feld" -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Neue Verbindungen" +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "System name of field" +msgstr "Systemname des Feldes" -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" +#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 +msgid "Input type" +msgstr "Art des Inhalts" -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle Verbindungen" +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Field Name" +msgstr "Feldname" -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Alle Verbindungen anzeigen" +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Label on profile pages" +msgstr "Bezeichnung auf Profilseiten" -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Freigegeben" +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Help text" +msgstr "Hilfetext" -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Nur freigegebene Verbindungen anzeigen" +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Additional info (optional)" +msgstr "Zusätzliche Informationen (optional)" -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Nur blockierte Verbindungen anzeigen" +#: ../../mod/admin.php:1420 +msgid "Field definition not found" +msgstr "Feld-Definition nicht gefunden" -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Nur ignorierte Verbindungen anzeigen" +#: ../../mod/admin.php:1426 +msgid "Edit Profile Field" +msgstr "Profilfeld bearbeiten" -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Nur archivierte Verbindungen anzeigen" +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installiert." -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Nur versteckte Verbindungen anzeigen" +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../mod/connections.php:372 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Verbindung bearbeiten" +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Verbindungen durchsuchen" +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App erstellen" -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Ergebnisse:" +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Name der App" -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webseite" +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" -#: ../../mod/impel.php:38 -msgid "block" -msgstr "Block" +#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "Beschreibung" -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "Layout" +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL zum Icon" -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versions-ID" -#: ../../mod/item.php:165 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Preis der App" -#: ../../mod/item.php:424 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" -#: ../../mod/item.php:466 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." +#: ../../mod/menu.php:45 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." -#: ../../mod/item.php:865 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../mod/menu.php:56 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." -#: ../../mod/item.php:1083 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." +#: ../../mod/menu.php:94 ../../mod/menu.php:106 +msgid "Menu Name" +msgstr "Name des Menüs" -#: ../../mod/item.php:1089 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." +#: ../../mod/menu.php:94 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" -#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 -#: ../../mod/directory.php:22 ../../mod/viewconnections.php:17 -#: ../../mod/photos.php:429 -msgid "Public access denied." -msgstr "Öffentlicher Zugang verweigert." +#: ../../mod/menu.php:95 ../../mod/menu.php:107 +msgid "Menu Title" +msgstr "Menütitel" -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Sache aktualisiert" +#: ../../mod/menu.php:95 +msgid "Visible on webpage - leave empty for no title" +msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" +#: ../../mod/menu.php:96 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Sache hinzugefügt" +#: ../../mod/menu.php:96 ../../mod/menu.php:153 +msgid "Menu may be used to store saved bookmarks" +msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../mod/menu.php:97 ../../mod/menu.php:155 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Sache anzeigen" +#: ../../mod/menu.php:109 +msgid "Drop" +msgstr "Löschen" -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Eintrag nicht gefunden" +#: ../../mod/menu.php:113 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Sache bearbeiten" +#: ../../mod/menu.php:115 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Wähle ein Profil" +#: ../../mod/menu.php:116 ../../mod/menu.php:150 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" +#: ../../mod/menu.php:117 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" +#: ../../mod/menu.php:132 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" +#: ../../mod/menu.php:145 +msgid "Edit Menu" +msgstr "Menü bearbeiten" -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" +#: ../../mod/menu.php:149 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" +#: ../../mod/menu.php:151 +msgid "Menu name" +msgstr "Menü Name" -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +#: ../../mod/menu.php:151 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Abwesend" +#: ../../mod/menu.php:152 +msgid "Menu title" +msgstr "Menü Titel" -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" +#: ../../mod/menu.php:152 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal hinzugefügt." +#: ../../mod/menu.php:153 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" #: ../../mod/notify.php:53 ../../mod/notifications.php:94 msgid "No more system notifications." @@ -5970,13 +6229,72 @@ msgstr "Keine System-Benachrichtigungen mehr." msgid "System Notifications" msgstr "System-Benachrichtigungen" -#: ../../mod/acl.php:231 -msgid "network" -msgstr "Netzwerk" +#: ../../mod/page.php:126 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Kanal hinzufügen" + +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "Ein Kanal ist Deine eigene Sammlung von zusammengehörigen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deines Hubs zulässt." + +#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Name des Kanals" + +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " + +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" + +#: ../../mod/new_channel.php:115 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst." + +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Oder importiere einen bestehenden Kanal von einem anderen Server" + +#: ../../mod/new_channel.php:118 +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 "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können" + +#: ../../mod/new_channel.php:119 +msgid "Channel Type" +msgstr "Kanaltyp" + +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "Mehr Informationen über Rollen" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Verwerfen" #: ../../mod/pdledit.php:13 msgid "Layout updated." @@ -5994,2620 +6312,2711 @@ msgstr "Layout nicht gefunden." msgid "Module Name:" msgstr "Modulname:" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +#: ../../mod/pdledit.php:55 msgid "Layout Help" msgstr "Layout-Hilfe" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installiert." +#: ../../mod/subthread.php:102 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt nun %2$ss %3$s" -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Fehlerhafte App." +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Code einbetten" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bearbeiten" +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App erstellen" +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Name der App" +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" +#: ../../mod/lostpass.php:86 ../../boot.php:1505 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Beschreibung" +#: ../../mod/lostpass.php:87 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL zum Icon" +#: ../../mod/lostpass.php:88 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" +#: ../../mod/lostpass.php:89 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versions-ID" +#: ../../mod/lostpass.php:90 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Preis der App" +#: ../../mod/lostpass.php:91 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" +#: ../../mod/lostpass.php:108 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "– auswählen –" +#: ../../mod/lostpass.php:123 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" + +#: ../../mod/lostpass.php:124 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." + +#: ../../mod/lostpass.php:125 +msgid "Email Address" +msgstr "E-Mail Adresse" + +#: ../../mod/lostpass.php:126 +msgid "Reset" +msgstr "Zurücksetzen" -#: ../../mod/import.php:25 +#: ../../mod/photos.php:79 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." + +#: ../../mod/photos.php:100 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../mod/photos.php:127 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../mod/photos.php:170 ../../mod/photos.php:970 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../mod/photos.php:464 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." + +#: ../../mod/photos.php:552 #, php-format -msgid "Your service plan only allows %d channels." -msgstr "Dein Vertrag erlaubt nur %d Kanäle." +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Nichts zu importieren." +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Daten können vom alten Server nicht heruntergeladen werden" +#: ../../mod/photos.php:583 +msgid "Upload Photos" +msgstr "Fotos hochladen" -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." +#: ../../mod/photos.php:587 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" -#: ../../mod/import.php:106 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." +#: ../../mod/photos.php:588 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." +#: ../../mod/photos.php:589 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." +#: ../../mod/photos.php:616 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." +#: ../../mod/photos.php:660 ../../mod/photos.php:1197 +#: ../../mod/photos.php:1214 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import abgeschlossen." +#: ../../mod/photos.php:688 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." +#: ../../mod/photos.php:690 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Kanal importieren" +#: ../../mod/photos.php:714 ../../mod/photos.php:1247 +msgid "View Photo" +msgstr "Foto ansehen" -#: ../../mod/import.php:493 -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 "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich." +#: ../../mod/photos.php:743 +msgid "Edit Album" +msgstr "Album bearbeiten" -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" +#: ../../mod/photos.php:788 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." + +#: ../../mod/photos.php:790 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../mod/photos.php:848 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../mod/photos.php:855 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:866 ../../mod/events.php:528 +msgid "Previous" +msgstr "Voriges" + +#: ../../mod/photos.php:870 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../mod/photos.php:875 ../../mod/events.php:529 ../../mod/setup.php:285 +msgid "Next" +msgstr "Nächste" + +#: ../../mod/photos.php:915 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Entferne" + +#: ../../mod/photos.php:949 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../mod/photos.php:951 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../mod/photos.php:952 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" +#: ../../mod/photos.php:955 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" +#: ../../mod/photos.php:956 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" +#: ../../mod/photos.php:959 +msgid "Caption" +msgstr "Bildunterschrift" -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Dein altes Passwort" +#: ../../mod/photos.php:961 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" -#: ../../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 "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." +#: ../../mod/photos.php:965 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Dieser Red-Server ist mein primärer Server." +#: ../../mod/photos.php:968 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Existierende Beiträge importieren, falls möglich" +#: ../../mod/photos.php:1160 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Layout bearbeiten" +#: ../../mod/photos.php:1165 +msgid "Map" +msgstr "Karte" -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Layout löschen?" +#: ../../mod/photos.php:1253 +msgid "View Album" +msgstr "Album ansehen" -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Layout löschen" +#: ../../mod/photos.php:1276 +msgid "Recent Photos" +msgstr "Neueste Fotos" -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." +#: ../../mod/dav.php:121 +msgid "$Projectname channel" +msgstr "$Projectname-Kanal" -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" +#: ../../mod/rate.php:157 +msgid "Website:" +msgstr "Webseite:" -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Raum verlassen" +#: ../../mod/rate.php:160 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Diesen Raum löschen" +#: ../../mod/rate.php:161 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" +#: ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ich bin online" +#: ../../mod/events.php:21 +msgid "Calendar entries imported." +msgstr "Kalendereinträge wurden importiert." -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" +#: ../../mod/events.php:23 +msgid "No calendar entries found." +msgstr "Keine Kalendereinträge gefunden." -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Neuer Chatraum" +#: ../../mod/events.php:96 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Name des Chatraums" +#: ../../mod/events.php:98 ../../mod/events.php:107 ../../mod/events.php:127 +msgid "Unable to generate preview." +msgstr "Vorschau konnte nicht erzeugt werden." -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" +#: ../../mod/events.php:105 +msgid "Event title and start time are required." +msgstr "Titel und Startzeit des Termins sind erforderlich." -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" +#: ../../mod/events.php:125 ../../mod/events.php:250 +msgid "Event not found." +msgstr "Termin nicht gefunden." -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Webseite löschen?" +#: ../../mod/events.php:448 +msgid "l, F j" +msgstr "l, j. F" -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Webseite löschen" +#: ../../mod/events.php:470 +msgid "Edit event" +msgstr "Termin bearbeiten" -#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22 -msgid "This site is not a directory server" -msgstr "Diese Website ist kein Verzeichnis-Server" +#: ../../mod/events.php:472 +msgid "Delete event" +msgstr "Termin löschen" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." +#: ../../mod/events.php:506 +msgid "calendar" +msgstr "Kalender" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." +#: ../../mod/events.php:527 +msgid "Create New Event" +msgstr "Neuen Termin erstellen" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" +#: ../../mod/events.php:530 +msgid "Export" +msgstr "Exportieren" -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" +#: ../../mod/events.php:533 +msgid "Import" +msgstr "Import" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." +#: ../../mod/events.php:564 +msgid "Event removed" +msgstr "Termin gelöscht" -#: ../../mod/lostpass.php:85 ../../boot.php:1560 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" +#: ../../mod/events.php:567 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." +#: ../../mod/events.php:681 +msgid "Event details" +msgstr "Termin-Details" -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" +#: ../../mod/events.php:682 +msgid "Starting date and Title are required." +msgstr "Startdatum und Titel sind erforderlich." -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" +#: ../../mod/events.php:684 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" +#: ../../mod/events.php:686 +msgid "Event Starts:" +msgstr "Termin beginnt:" -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." +#: ../../mod/events.php:693 +msgid "Finish date/time is not known or not relevant" +msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" +#: ../../mod/events.php:695 +msgid "Event Finishes:" +msgstr "Termin endet:" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" +#: ../../mod/events.php:697 ../../mod/events.php:698 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" -#: ../../mod/lostpass.php:123 +#: ../../mod/events.php:697 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-Mail Adresse" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Zurücksetzen" +#: ../../mod/events.php:703 +msgid "Title:" +msgstr "Titel:" -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Webseite:" +#: ../../mod/events.php:705 +msgid "Share this event" +msgstr "Den Termin teilen" -#: ../../mod/rate.php:160 +#: ../../mod/impel.php:192 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." +#: ../../mod/impel.php:195 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" -#: ../../mod/invite.php:49 +#: ../../mod/probe.php:24 ../../mod/probe.php:30 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." +msgid "Fetching URL returns error: %1$s" +msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Schließe Dich uns an und werde Teil der Red-Matrix" +#: ../../mod/match.php:22 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." +#: ../../mod/match.php:31 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." +#: ../../mod/match.php:63 +msgid "is interested in:" +msgstr "interessiert sich für:" -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." +#: ../../mod/match.php:70 +msgid "No matches" +msgstr "Keine Übereinstimmungen" -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" +#: ../../mod/profile_photo.php:111 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Einladungen senden" +#: ../../mod/profile_photo.php:165 +msgid "Image resize failed." +msgstr "Bild-Anpassung fehlgeschlagen." -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" +#: ../../mod/profile_photo.php:209 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Deine Nachricht:" +#: ../../mod/profile_photo.php:247 +msgid "Image upload failed." +msgstr "Hochladen des Bilds fehlgeschlagen." -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Schließe Dich uns in der RedMatrix an!" +#: ../../mod/profile_photo.php:266 +msgid "Unable to process image." +msgstr "Kann Bild nicht verarbeiten." -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Gib folgenden Einladungs-Code ein:" +#: ../../mod/profile_photo.php:294 +msgid "female" +msgstr "weiblich" -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)" +#: ../../mod/profile_photo.php:295 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s hat ihr %2$s aktualisiert" -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein." +#: ../../mod/profile_photo.php:296 +msgid "male" +msgstr "männlich" + +#: ../../mod/profile_photo.php:297 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s hat sein %2$s aktualisiert" + +#: ../../mod/profile_photo.php:299 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s hat sein/ihr %2$s aktualisiert" -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "oder besuche" +#: ../../mod/profile_photo.php:301 +msgid "profile photo" +msgstr "Profilfoto" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" +#: ../../mod/profile_photo.php:365 ../../mod/profile_photo.php:406 +msgid "Photo not available." +msgstr "Foto nicht verfügbar." -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Klon nicht gefunden." +#: ../../mod/profile_photo.php:447 +msgid "Upload File:" +msgstr "Datei hochladen:" -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "Der primäre Klon kann nicht gelöscht werden." +#: ../../mod/profile_photo.php:448 +msgid "Select a profile:" +msgstr "Wähle ein Profil:" -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." +#: ../../mod/profile_photo.php:449 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" +#: ../../mod/profile_photo.php:454 ../../mod/settings.php:972 +msgid "or" +msgstr "oder" -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "URL (Adresse)" +#: ../../mod/profile_photo.php:454 +msgid "skip this step" +msgstr "diesen Schritt überspringen" -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Primärer Klon" +#: ../../mod/profile_photo.php:454 +msgid "select a photo from your photo albums" +msgstr "ein Foto aus meinen Fotoalben" -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Klon löschen" +#: ../../mod/profile_photo.php:470 +msgid "Crop Image" +msgstr "Bild zuschneiden" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." +#: ../../mod/profile_photo.php:471 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Quelle erstellt." +#: ../../mod/profile_photo.php:473 +msgid "Done Editing" +msgstr "Bearbeitung fertigstellen" -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Quelle aktualisiert." +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal hinzugefügt." -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Schlagwort entfernt" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Neue Quelle" +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../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 "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." +#: ../../mod/ratings.php:69 +msgid "No ratings" +msgstr "Keine Bewertungen" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" +#: ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Bewertungen" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" +#: ../../mod/ratings.php:100 +msgid "Rating: " +msgstr "Bewertung: " -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Name des Kanals" +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Webseite: " -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Quelle nicht gefunden." +#: ../../mod/ratings.php:103 +msgid "Description: " +msgstr "Beschreibung: " -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Quelle bearbeiten" +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Diese Website ist kein Verzeichnis-Server" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Quelle löschen" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Konnte den Empfänger nicht finden." -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Quelle gelöscht" +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Menü aktualisiert." +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." -#: ../../mod/menu.php:35 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Nachrichten" -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Menü erstellt." +#: ../../mod/mail.php:138 +msgid "Message deleted." +msgstr "Nachricht gelöscht." -#: ../../mod/menu.php:44 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." +#: ../../mod/mail.php:154 +msgid "Message recalled." +msgstr "Nachricht widerrufen." -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Menüs verwalten" +#: ../../mod/mail.php:221 +msgid "Send Private Message" +msgstr "Private Nachricht senden" -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Löschen" +#: ../../mod/mail.php:222 ../../mod/mail.php:352 +msgid "To:" +msgstr "An:" -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" +#: ../../mod/mail.php:227 ../../mod/mail.php:341 ../../mod/mail.php:354 +msgid "Subject:" +msgstr "Betreff:" -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Neues Menü erstellen" +#: ../../mod/mail.php:231 ../../mod/mail.php:357 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Deine Nachricht:" -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" +#: ../../mod/mail.php:238 +msgid "Send" +msgstr "Absenden" -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" +#: ../../mod/mail.php:322 +msgid "Delete message" +msgstr "Nachricht löschen" -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" +#: ../../mod/mail.php:323 +msgid "Recall message" +msgstr "Nachricht widerrufen" -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Neues Menü" +#: ../../mod/mail.php:325 +msgid "Message has been recalled." +msgstr "Die Nachricht wurde widerrufen." -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Menü Name" +#: ../../mod/mail.php:345 +msgid "Delete Conversation" +msgstr "Unterhaltung löschen" -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" +#: ../../mod/mail.php:347 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Menü Titel" +#: ../../mod/mail.php:351 +msgid "Send Reply" +msgstr "Antwort senden" -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "Seitentitel" -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." -#: ../../mod/menu.php:108 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menü nicht gefunden" +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Menü gelöscht." +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../mod/menu.php:122 -msgid "Edit Menu" -msgstr "Menü bearbeiten" +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" -#: ../../mod/menu.php:130 ../../mod/mitem.php:213 -msgid "Modify" -msgstr "Ändern" +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registrierung auf einem anderen, angeschlossenen Server" -#: ../../mod/filestorage.php:81 -msgid "Permission Denied." -msgstr "Zugriff verweigert." +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." -#: ../../mod/filestorage.php:97 -msgid "File not found." -msgstr "Datei nicht gefunden." +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" -#: ../../mod/filestorage.php:140 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" -#: ../../mod/filestorage.php:149 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" -#: ../../mod/filestorage.php:150 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../mod/filestorage.php:151 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" -#: ../../mod/filestorage.php:153 -msgid "Copy/paste this code to attach file to a post" -msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Passwort" -#: ../../mod/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Diese Datei an einen neuen Beitrag anhängen" +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" -#: ../../mod/filestorage.php:157 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" +#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 +msgid "Block Name" +msgstr "Block-Name" -#: ../../mod/filestorage.php:158 -msgid "Do not show in shared with me folder of your connections" -msgstr "Nicht im Ordner „Dateien, die mit mir geteilt wurden“ meiner Verbindungen anzeigen" +#: ../../mod/blocks.php:149 +msgid "Block Title" +msgstr "Titel des Blocks" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden" +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Freundschaftsempfehlung senden." +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Dieses Konto löschen" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" +#: ../../mod/removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Server nicht gefunden." +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:697 +msgid "Remove Account" +msgstr "Konto entfernen" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Empfänger" +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Element nicht verfügbar." -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Quelle erstellt." -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Quelle aktualisiert." -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Sichtbar für" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Neue Quelle" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." +#: ../../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 "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Profil nicht gefunden." +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil gelöscht." +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Quelle nicht gefunden." -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Quelle bearbeiten" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Neues Profil erstellt." +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Quelle löschen" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profil kann nicht geklont werden." +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Quelle gelöscht" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Dieses Profil kann nicht exportiert werden." +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Profil-Name erforderlich." +#: ../../mod/lockview.php:37 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Familienstand" +#: ../../mod/lockview.php:58 +msgid "Visible to:" +msgstr "Sichtbar für:" -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Romantische Partner" +#: ../../mod/acl.php:222 +msgid "network" +msgstr "Netzwerk" -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "Gefällt" +#: ../../mod/acl.php:232 +msgid "RSS" +msgstr "RSS" -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "Gefällt nicht" +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Bitte melde dich an." -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Arbeit/Anstellung" +#: ../../mod/rmagic.php:40 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religion" +#: ../../mod/rmagic.php:40 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Politische Ansichten" +#: ../../mod/rmagic.php:44 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." -#: ../../mod/profiles.php:431 -msgid "Gender" -msgstr "Geschlecht" +#: ../../mod/rmagic.php:84 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Sexuelle Orientierung" +#: ../../mod/rmagic.php:85 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Webseite" +#: ../../mod/rmagic.php:86 +msgid "Authenticate" +msgstr "Authentifizieren" -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Hobbys/Interessen" +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "Dieser Verzeichnis-Server benötigt ein Zugangstoken" -#: ../../mod/profiles.php:447 ../../mod/admin.php:871 -msgid "Address" -msgstr "Adresse" +#: ../../mod/siteinfo.php:111 +#, php-format +msgid "Version %s" +msgstr "Version %s" -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Profil aktualisiert." +#: ../../mod/siteinfo.php:132 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" +#: ../../mod/siteinfo.php:145 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Bearbeite Profil-Details" +#: ../../mod/siteinfo.php:158 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Dieses Profil ansehen" +#: ../../mod/siteinfo.php:160 +msgid "Tag: " +msgstr "Schlagwort: " -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Profilfoto ändern" +#: ../../mod/siteinfo.php:162 +msgid "Last background fetch: " +msgstr "Letzter Hintergrundabruf:" -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" +#: ../../mod/siteinfo.php:164 +msgid "Current load average: " +msgstr "Aktuelles Load Average:" -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Dieses Profil klonen" +#: ../../mod/siteinfo.php:167 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" +#: ../../mod/siteinfo.php:168 +msgid "" +"Please visit redmatrix.me to learn more" +" about $Projectname." +msgstr "Bitte besuche redmatrix.me, um mehr über $Projectname zu erfahren." -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Profil aus einer Datei importieren" +#: ../../mod/siteinfo.php:169 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Profil in eine Datei exportieren" +#: ../../mod/siteinfo.php:171 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Profilname:" +#: ../../mod/siteinfo.php:172 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "Dein voller Name:" +#: ../../mod/siteinfo.php:174 +msgid "Site Administrators" +msgstr "Administratoren" -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Titel/Beschreibung:" +#: ../../mod/import.php:27 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" +#: ../../mod/import.php:65 ../../mod/import_items.php:38 +msgid "Nothing to import." +msgstr "Nichts zu importieren." -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Geburtstag:" +#: ../../mod/import.php:89 ../../mod/import_items.php:62 +msgid "Unable to download data from old server" +msgstr "Daten können vom alten Server nicht heruntergeladen werden" -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Straße und Hausnummer:" +#: ../../mod/import.php:95 ../../mod/import_items.php:68 +msgid "Imported file is empty." +msgstr "Die importierte Datei ist leer." -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Wohnort:" +#: ../../mod/import.php:115 ../../mod/import_items.php:82 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" +#: ../../mod/import.php:148 +msgid "No channel. Import failed." +msgstr "Kein Kanal. Import fehlgeschlagen." -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "Land:" +#: ../../mod/import.php:493 +msgid "You must be logged in to use this feature." +msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" +#: ../../mod/import.php:498 +msgid "Import Channel" +msgstr "Kanal importieren" -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" +#: ../../mod/import.php:499 +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." +msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" +#: ../../mod/import.php:500 ../../mod/import_items.php:121 +msgid "File to Upload" +msgstr "Hochzuladende Datei:" -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/import.php:501 +msgid "Or provide the old server/hub details" +msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "Seit [Datum]:" +#: ../../mod/import.php:502 +msgid "Your old identity address (xyz@example.com)" +msgstr "Bisherige Kanal-Adresse (xyz@example.com)" -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "Homepage URL:" +#: ../../mod/import.php:503 +msgid "Your old login email address" +msgstr "Deine alte Login-E-Mail-Adresse" -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" +#: ../../mod/import.php:504 +msgid "Your old login password" +msgstr "Dein altes Passwort" -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Schlüsselwörter:" +#: ../../mod/import.php:505 +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 "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Beispiel: Angeln Fotografie Software" +#: ../../mod/import.php:506 +msgid "Make this hub my primary location" +msgstr "Dieser Red-Server ist mein primärer Server." -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Wird in Verzeichnis-Auflistungen verwendet" +#: ../../mod/import.php:507 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein wenig von Dir …" +#: ../../mod/import.php:508 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Hobbys/Interessen" +#: ../../mod/thing.php:111 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformation und soziale Netzwerke" +#: ../../mod/thing.php:163 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "Meine anderen Kanäle" +#: ../../mod/thing.php:167 +msgid "Thing added" +msgstr "Sache hinzugefügt" -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Musikalische Interessen" +#: ../../mod/thing.php:193 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Bücher, Literatur" +#: ../../mod/thing.php:256 +msgid "Show Thing" +msgstr "Sache anzeigen" -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "Fernsehen" +#: ../../mod/thing.php:263 +msgid "item not found." +msgstr "Eintrag nicht gefunden" -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Film/Tanz/Kultur/Unterhaltung" +#: ../../mod/thing.php:296 +msgid "Edit Thing" +msgstr "Sache bearbeiten" -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Liebe/Romantik" +#: ../../mod/thing.php:298 ../../mod/thing.php:348 +msgid "Select a profile" +msgstr "Wähle ein Profil" -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "Schule/Ausbildung" +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Das ist Dein Standardprofil." +#: ../../mod/thing.php:304 ../../mod/thing.php:353 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" -#: ../../mod/profiles.php:728 ../../mod/directory.php:188 -msgid "Age: " -msgstr "Alter:" +#: ../../mod/thing.php:306 ../../mod/thing.php:354 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Profile bearbeiten/verwalten" +#: ../../mod/thing.php:308 ../../mod/thing.php:355 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Sachen zum Profil hinzufügen" +#: ../../mod/thing.php:346 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Binde begehrenswerte Dinge in Dein Profil ein" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Keine Bewertungen" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Bewertungen" +#: ../../mod/invite.php:76 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Bewertung: " +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Webseite: " +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Beschreibung: " +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für diese Seite" +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Einladungen senden" -#: ../../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 "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" + +#: ../../mod/invite.php:132 +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Gib folgenden Einladungs-Code ein:" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" +#: ../../mod/invite.php:135 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" +#: ../../mod/invite.php:137 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Hinzufügen" +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "oder besuche" -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Keine Einträge." +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" -#: ../../mod/directory.php:194 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d Bewertung" -msgstr[1] "%d Bewertungen" +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_home.php:21 ../../mod/update_network.php:23 +#: ../../mod/update_search.php:46 ../../mod/update_public.php:21 +msgid "[Embedded content - reload page to view]" +msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" -#: ../../mod/directory.php:206 -msgid "Gender: " -msgstr "Geschlecht:" +#: ../../mod/viewsrc.php:40 +msgid "Source of Item" +msgstr "Quelle des Elements" -#: ../../mod/directory.php:208 -msgid "Status: " -msgstr "Status:" +#: ../../mod/settings.php:76 +msgid "Name is required" +msgstr "Name ist erforderlich" -#: ../../mod/directory.php:210 -msgid "Homepage: " -msgstr "Webseite:" +#: ../../mod/settings.php:80 +msgid "Key and Secret are required" +msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../mod/directory.php:213 -msgid "Hometown: " -msgstr "Wohnort:" +#: ../../mod/settings.php:231 +msgid "Passwords do not match. Password unchanged." +msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../mod/directory.php:215 -msgid "About: " -msgstr "Über:" +#: ../../mod/settings.php:235 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../mod/directory.php:273 -msgid "Public Forum:" -msgstr "Öffentliches Forum:" +#: ../../mod/settings.php:249 +msgid "Password changed." +msgstr "Kennwort geändert." -#: ../../mod/directory.php:276 -msgid "Keywords: " -msgstr "Schlüsselwörter:" +#: ../../mod/settings.php:251 +msgid "Password update failed. Please try again." +msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../mod/directory.php:331 -msgid "Finding:" -msgstr "Ergebnisse:" +#: ../../mod/settings.php:265 +msgid "Not valid email." +msgstr "Keine gültige E-Mail Adresse." -#: ../../mod/directory.php:336 -msgid "next page" -msgstr "nächste Seite" +#: ../../mod/settings.php:268 +msgid "Protected email address. Cannot change to that email." +msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." -#: ../../mod/directory.php:336 -msgid "previous page" -msgstr "vorherige Seite" +#: ../../mod/settings.php:277 +msgid "System failure storing new email. Please try again." +msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." -#: ../../mod/directory.php:353 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." +#: ../../mod/settings.php:518 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +#: ../../mod/settings.php:644 +msgid "Add application" +msgstr "Anwendung hinzufügen" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" +#: ../../mod/settings.php:585 +msgid "Name of application" +msgstr "Name der Anwendung" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" +#: ../../mod/settings.php:586 ../../mod/settings.php:612 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" +#: ../../mod/settings.php:586 ../../mod/settings.php:587 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Kanal exportieren" +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../mod/uexport.php:35 +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +msgid "Redirect" +msgstr "Umleitung" + +#: ../../mod/settings.php:588 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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Icon url" +msgstr "Symbol-URL" -#: ../../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 "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Inhalte Deines Kanals, ist aber nicht unbedingt für den Import eines Kanals auf einem anderen Hub geeignet, da die Datei SEHR groß werden kann. Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." +#: ../../mod/settings.php:589 +msgid "Optional" +msgstr "Optional" -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Keine Verbindungen." +#: ../../mod/settings.php:600 +msgid "You can't edit this application." +msgstr "Diese Anwendung kann nicht bearbeitet werden." -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%ss Profil [%s] besuchen" +#: ../../mod/settings.php:643 +msgid "Connected Apps" +msgstr "Verbundene Apps" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" +#: ../../mod/settings.php:647 +msgid "Client key starts with" +msgstr "Client Key beginnt mit" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." +#: ../../mod/settings.php:648 +msgid "No name" +msgstr "Kein Name" -#: ../../mod/admin.php:97 ../../mod/admin.php:415 -msgid "Site" -msgstr "Seite" +#: ../../mod/settings.php:649 +msgid "Remove authorization" +msgstr "Authorisierung aufheben" -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Konten" +#: ../../mod/settings.php:662 +msgid "No feature settings configured" +msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../mod/admin.php:99 ../../mod/admin.php:863 -msgid "Channels" -msgstr "Kanäle" +#: ../../mod/settings.php:669 +msgid "Feature/Addon Settings" +msgstr "Funktions-/Addon-Einstellungen" -#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 -msgid "Plugins" -msgstr "Plug-Ins" +#: ../../mod/settings.php:692 +msgid "Account Settings" +msgstr "Konto-Einstellungen" -#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 -msgid "Themes" -msgstr "Themes" +#: ../../mod/settings.php:693 +msgid "Enter New Password:" +msgstr "Neues Passwort eingeben:" -#: ../../mod/admin.php:102 ../../mod/admin.php:517 -msgid "Server" -msgstr "Server" +#: ../../mod/settings.php:694 +msgid "Confirm New Password:" +msgstr "Neues Passwort bestätigen:" -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Profilkonfiguration" +#: ../../mod/settings.php:694 +msgid "Leave password fields blank unless changing" +msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "DB-Aktualisierungen" +#: ../../mod/settings.php:696 ../../mod/settings.php:1027 +msgid "Email Address:" +msgstr "Email Adresse:" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 -msgid "Logs" -msgstr "Protokolle" +#: ../../mod/settings.php:698 +msgid "Remove this account including all its channels" +msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" +#: ../../mod/settings.php:714 +msgid "Off" +msgstr "Aus" -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" +#: ../../mod/settings.php:714 +msgid "On" +msgstr "An" -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" +#: ../../mod/settings.php:721 +msgid "Additional Features" +msgstr "Zusätzliche Funktionen" -#: ../../mod/admin.php:211 ../../mod/admin.php:414 ../../mod/admin.php:516 -#: ../../mod/admin.php:726 ../../mod/admin.php:862 ../../mod/admin.php:953 -#: ../../mod/admin.php:995 ../../mod/admin.php:1158 ../../mod/admin.php:1194 -#: ../../mod/admin.php:1281 -msgid "Administration" -msgstr "Administration" +#: ../../mod/settings.php:745 +msgid "Connector Settings" +msgstr "Connector-Einstellungen" -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "Zusammenfassung" +#: ../../mod/settings.php:784 +msgid "No special theme for mobile devices" +msgstr "Keine spezielle Theme für mobile Geräte" -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Registrierte Benutzer" +#: ../../mod/settings.php:787 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (experimentell)" -#: ../../mod/admin.php:216 ../../mod/admin.php:520 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" +#: ../../mod/settings.php:826 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Version" +#: ../../mod/settings.php:827 +msgid "Theme Settings" +msgstr "Theme-Einstellungen" -#: ../../mod/admin.php:219 ../../mod/admin.php:521 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" +#: ../../mod/settings.php:828 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme-Einstellungen" -#: ../../mod/admin.php:330 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." +#: ../../mod/settings.php:829 +msgid "Content Settings" +msgstr "Inhaltseinstellungen" -#: ../../mod/admin.php:369 -msgid "experimental" -msgstr "experimentell" +#: ../../mod/settings.php:835 +msgid "Display Theme:" +msgstr "Anzeige-Theme:" -#: ../../mod/admin.php:371 -msgid "unsupported" -msgstr "nicht unterstützt" +#: ../../mod/settings.php:836 +msgid "Mobile Theme:" +msgstr "Mobile Theme:" -#: ../../mod/admin.php:395 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" +#: ../../mod/settings.php:837 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../mod/admin.php:401 -msgid "My site is not a public server" -msgstr "Mein Server ist kein öffentlicher Server" +#: ../../mod/settings.php:838 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../mod/admin.php:402 -msgid "My site has paid access only" -msgstr "Mein Server erlaubt nur bezahlten Zugang" +#: ../../mod/settings.php:838 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../mod/admin.php:403 -msgid "My site has free access only" -msgstr "Mein Server erlaubt ausschließlich freien Zugang" +#: ../../mod/settings.php:839 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../mod/admin.php:404 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" +#: ../../mod/settings.php:839 +msgid "Maximum of 100 items" +msgstr "Maximum: 100 Beiträge" -#: ../../mod/admin.php:417 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registrierung" +#: ../../mod/settings.php:840 +msgid "Show emoticons (smilies) as images" +msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../mod/admin.php:418 -msgid "File upload" -msgstr "Dateiupload" +#: ../../mod/settings.php:841 +msgid "Link post titles to source" +msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../mod/admin.php:419 -msgid "Policies" -msgstr "Richtlinien" +#: ../../mod/settings.php:842 +msgid "System Page Layout Editor - (advanced)" +msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../mod/admin.php:424 -msgid "Site name" -msgstr "Seitenname" +#: ../../mod/settings.php:845 +msgid "Use blog/list mode on channel page" +msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../mod/admin.php:425 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../mod/settings.php:845 ../../mod/settings.php:846 +msgid "(comments displayed separately)" +msgstr "(Kommentare werden separat angezeigt)" -#: ../../mod/admin.php:426 -msgid "Administrator Information" -msgstr "Administrator-Informationen" +#: ../../mod/settings.php:846 +msgid "Use blog/list mode on matrix page" +msgstr "Blog-/Listenmodus auf der Matrixseite verwenden" -#: ../../mod/admin.php:426 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." +#: ../../mod/settings.php:847 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../mod/admin.php:427 -msgid "System language" -msgstr "System-Sprache" +#: ../../mod/settings.php:847 ../../mod/settings.php:848 +msgid "click to expand content exceeding this height" +msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../mod/admin.php:428 -msgid "System theme" -msgstr "System-Theme" +#: ../../mod/settings.php:848 +msgid "Matrix page max height of content (in pixels)" +msgstr "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)" + +#: ../../mod/settings.php:882 +msgid "Nobody except yourself" +msgstr "Niemand außer Dir selbst" + +#: ../../mod/settings.php:883 +msgid "Only those you specifically allow" +msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../mod/admin.php:428 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" +#: ../../mod/settings.php:884 +msgid "Approved connections" +msgstr "Angenommene Verbindungen" -#: ../../mod/admin.php:429 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" +#: ../../mod/settings.php:885 +msgid "Any connections" +msgstr "Beliebige Verbindungen" -#: ../../mod/admin.php:429 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" +#: ../../mod/settings.php:886 +msgid "Anybody on this website" +msgstr "Jeder auf dieser Website" -#: ../../mod/admin.php:431 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-Protokoll aktivieren" +#: ../../mod/settings.php:887 +msgid "Anybody in this network" +msgstr "Alle Red-Nutzer" -#: ../../mod/admin.php:431 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Kommunikation mit Diaspora und Friendica – experimentell" +#: ../../mod/settings.php:888 +msgid "Anybody authenticated" +msgstr "Jeder authentifizierte" -#: ../../mod/admin.php:432 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" +#: ../../mod/settings.php:889 +msgid "Anybody on the internet" +msgstr "Jeder im Internet" -#: ../../mod/admin.php:432 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" +#: ../../mod/settings.php:963 +msgid "Publish your default profile in the network directory" +msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../mod/admin.php:433 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" +#: ../../mod/settings.php:968 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../mod/admin.php:433 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." +#: ../../mod/settings.php:977 +msgid "Your channel address is" +msgstr "Deine Kanal-Adresse lautet" -#: ../../mod/admin.php:434 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" +#: ../../mod/settings.php:1018 +msgid "Channel Settings" +msgstr "Kanal-Einstellungen" -#: ../../mod/admin.php:435 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" +#: ../../mod/settings.php:1025 +msgid "Basic Settings" +msgstr "Grundeinstellungen" -#: ../../mod/admin.php:436 -msgid "Register text" -msgstr "Registrierungstext" +#: ../../mod/settings.php:1028 +msgid "Your Timezone:" +msgstr "Ihre Zeitzone:" -#: ../../mod/admin.php:436 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." +#: ../../mod/settings.php:1029 +msgid "Default Post Location:" +msgstr "Standardstandort:" -#: ../../mod/admin.php:437 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" +#: ../../mod/settings.php:1029 +msgid "Geographical location to display on your posts" +msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../mod/admin.php:437 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." +#: ../../mod/settings.php:1030 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" -#: ../../mod/admin.php:438 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" +#: ../../mod/settings.php:1032 +msgid "Adult Content" +msgstr "Nicht jugendfreie Inhalte" -#: ../../mod/admin.php:438 +#: ../../mod/settings.php:1032 msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../mod/admin.php:439 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" +#: ../../mod/settings.php:1034 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../mod/admin.php:439 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +#: ../../mod/settings.php:1036 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" -#: ../../mod/admin.php:440 -msgid "Not allowed email domains" -msgstr "Nicht erlaubte Domains für E-Mails" +#: ../../mod/settings.php:1038 +msgid "Hide my online presence" +msgstr "Meine Online-Präsenz verbergen" -#: ../../mod/admin.php:440 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." +#: ../../mod/settings.php:1038 +msgid "Prevents displaying in your profile that you are online" +msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" -#: ../../mod/admin.php:441 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" +#: ../../mod/settings.php:1040 +msgid "Simple Privacy Settings:" +msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../mod/admin.php:441 +#: ../../mod/settings.php:1041 msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist." - -#: ../../mod/admin.php:442 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../mod/admin.php:442 +#: ../../mod/settings.php:1042 msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" -#: ../../mod/admin.php:443 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" +#: ../../mod/settings.php:1043 +msgid "Private - default private, never open or public" +msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../mod/admin.php:443 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." +#: ../../mod/settings.php:1044 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../mod/admin.php:444 -msgid "Disable discovery tab" -msgstr "Den „Entdecken“-Reiter ausblenden" +#: ../../mod/settings.php:1046 +msgid "Allow others to tag your posts" +msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../mod/admin.php:444 +#: ../../mod/settings.php:1046 msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden." +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../mod/admin.php:445 -msgid "No login on Homepage" -msgstr "Kein Login auf der Homepage" +#: ../../mod/settings.php:1048 +msgid "Advanced Privacy Settings" +msgstr "Fortgeschrittene Privatsphäre-Einstellungen" -#: ../../mod/admin.php:445 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)." +#: ../../mod/settings.php:1050 +msgid "Expire other channel content after this many days" +msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../mod/admin.php:447 -msgid "Proxy user" -msgstr "Proxy Benutzer" +#: ../../mod/settings.php:1050 +msgid "0 or blank prevents expiration" +msgstr "0 oder kein Inhalt verhindern das Verfallen" -#: ../../mod/admin.php:448 -msgid "Proxy URL" -msgstr "Proxy URL" +#: ../../mod/settings.php:1051 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../mod/admin.php:449 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" +#: ../../mod/settings.php:1051 +msgid "May reduce spam activity" +msgstr "Kann die Spam-Aktivität verringern" -#: ../../mod/admin.php:449 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." +#: ../../mod/settings.php:1052 +msgid "Default Post Permissions" +msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" -#: ../../mod/admin.php:450 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" +#: ../../mod/settings.php:1057 +msgid "Channel permissions category:" +msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../mod/admin.php:450 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." +#: ../../mod/settings.php:1063 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../mod/admin.php:451 -msgid "Poll interval" -msgstr "Abfrageintervall" +#: ../../mod/settings.php:1063 +msgid "Useful to reduce spamming" +msgstr "Nützlich, um Spam zu verringern" -#: ../../mod/admin.php:451 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." +#: ../../mod/settings.php:1066 +msgid "Notification Settings" +msgstr "Benachrichtigungs-Einstellungen" -#: ../../mod/admin.php:452 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" +#: ../../mod/settings.php:1067 +msgid "By default post a status message when:" +msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../mod/admin.php:452 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" +#: ../../mod/settings.php:1068 +msgid "accepting a friend request" +msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../mod/admin.php:508 -msgid "No server found" -msgstr "Kein Server gefunden" +#: ../../mod/settings.php:1069 +msgid "joining a forum/community" +msgstr "Du einem Forum beitrittst" -#: ../../mod/admin.php:515 ../../mod/admin.php:740 -msgid "ID" -msgstr "ID" +#: ../../mod/settings.php:1070 +msgid "making an interesting profile change" +msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../mod/admin.php:515 -msgid "for channel" -msgstr "für Kanal" +#: ../../mod/settings.php:1071 +msgid "Send a notification email when:" +msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../mod/admin.php:515 -msgid "on server" -msgstr "auf Server" +#: ../../mod/settings.php:1072 +msgid "You receive a connection request" +msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../mod/admin.php:515 -msgid "Status" -msgstr "Status" +#: ../../mod/settings.php:1073 +msgid "Your connections are confirmed" +msgstr "Eine Verbindung bestätigt wurde" -#: ../../mod/admin.php:536 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" +#: ../../mod/settings.php:1074 +msgid "Someone writes on your profile wall" +msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../mod/admin.php:546 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." +#: ../../mod/settings.php:1075 +msgid "Someone writes a followup comment" +msgstr "Jemand einen Beitrag kommentiert" -#: ../../mod/admin.php:549 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." +#: ../../mod/settings.php:1076 +msgid "You receive a private message" +msgstr "Du eine private Nachricht erhältst" -#: ../../mod/admin.php:553 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." +#: ../../mod/settings.php:1077 +msgid "You receive a friend suggestion" +msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../mod/admin.php:556 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." +#: ../../mod/settings.php:1078 +msgid "You are tagged in a post" +msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../mod/admin.php:571 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." +#: ../../mod/settings.php:1079 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../mod/admin.php:575 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" +#: ../../mod/settings.php:1082 +msgid "Show visual notifications including:" +msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../mod/admin.php:577 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" +#: ../../mod/settings.php:1084 +msgid "Unseen matrix activity" +msgstr "Ungesehene Matrix-Aktivität" -#: ../../mod/admin.php:578 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" +#: ../../mod/settings.php:1085 +msgid "Unseen channel activity" +msgstr "Ungesehene Kanal-Aktivität" -#: ../../mod/admin.php:604 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s Nutzer blockiert/freigegeben" -msgstr[1] "%s Nutzer blockiert/freigegeben" +#: ../../mod/settings.php:1086 +msgid "Unseen private messages" +msgstr "Ungelesene persönliche Nachrichten" -#: ../../mod/admin.php:611 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s Nutzer gelöscht" -msgstr[1] "%s Nutzer gelöscht" +#: ../../mod/settings.php:1086 ../../mod/settings.php:1091 +#: ../../mod/settings.php:1092 ../../mod/settings.php:1093 +msgid "Recommended" +msgstr "Empfohlen" -#: ../../mod/admin.php:640 -msgid "Account not found" -msgstr "Konto nicht gefunden" +#: ../../mod/settings.php:1087 +msgid "Upcoming events" +msgstr "Baldige Termine" -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' unblocked" -msgstr "Benutzer '%s' freigegeben" +#: ../../mod/settings.php:1088 +msgid "Events today" +msgstr "Heutige Termine" -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' blocked" -msgstr "Benutzer '%s' blockiert" +#: ../../mod/settings.php:1089 +msgid "Upcoming birthdays" +msgstr "Baldige Geburtstage" -#: ../../mod/admin.php:727 ../../mod/admin.php:739 -msgid "Users" -msgstr "Benutzer" +#: ../../mod/settings.php:1089 +msgid "Not available in all themes" +msgstr "Nicht in allen Themes verfügbar" -#: ../../mod/admin.php:729 ../../mod/admin.php:865 -msgid "select all" -msgstr "Alle auswählen" +#: ../../mod/settings.php:1090 +msgid "System (personal) notifications" +msgstr "System – (persönliche) Benachrichtigungen" -#: ../../mod/admin.php:730 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" +#: ../../mod/settings.php:1091 +msgid "System info messages" +msgstr "System – Info-Nachrichten" -#: ../../mod/admin.php:731 -msgid "Request date" -msgstr "Antragsdatum" +#: ../../mod/settings.php:1092 +msgid "System critical alerts" +msgstr "System – kritische Warnungen" -#: ../../mod/admin.php:732 -msgid "No registrations." -msgstr "Keine Registrierungen." +#: ../../mod/settings.php:1093 +msgid "New connections" +msgstr "Neue Verbindungen" -#: ../../mod/admin.php:733 -msgid "Approve" -msgstr "Genehmigen" +#: ../../mod/settings.php:1094 +msgid "System Registrations" +msgstr "System – Registrierungen" -#: ../../mod/admin.php:734 -msgid "Deny" -msgstr "Verweigern" +#: ../../mod/settings.php:1095 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an" -#: ../../mod/admin.php:740 -msgid "Register date" -msgstr "Registrierungs-Datum" +#: ../../mod/settings.php:1097 +msgid "Notify me of events this many days in advance" +msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../mod/admin.php:740 -msgid "Last login" -msgstr "Letzte Anmeldung" +#: ../../mod/settings.php:1097 +msgid "Must be greater than 0" +msgstr "Muss größer als 0 sein" -#: ../../mod/admin.php:740 -msgid "Expires" -msgstr "Verfällt" +#: ../../mod/settings.php:1099 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../mod/admin.php:740 -msgid "Service Class" -msgstr "Service-Klasse" +#: ../../mod/settings.php:1100 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" -#: ../../mod/admin.php:742 +#: ../../mod/settings.php:1103 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" -#: ../../mod/admin.php:743 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" +#: ../../mod/settings.php:1104 +msgid "Miscellaneous Settings" +msgstr "Sonstige Einstellungen" -#: ../../mod/admin.php:776 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s Kanal gesperrt/freigegeben" -msgstr[1] "%s Kanäle gesperrt/freigegeben" +#: ../../mod/settings.php:1105 +msgid "Default photo upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Fotos" -#: ../../mod/admin.php:783 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s Kanal gelöscht" -msgstr[1] "%s Kanäle gelöscht" +#: ../../mod/settings.php:1106 +msgid "Default file upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Dateien" -#: ../../mod/admin.php:802 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" +#: ../../mod/settings.php:1108 +msgid "Personal menu to display in your channel pages" +msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../mod/admin.php:813 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" +#: ../../mod/settings.php:1110 +msgid "Remove this channel." +msgstr "Diesen Kanal löschen" -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Xchan-Suche" + +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../mod/admin.php:824 +#: ../../mod/manage.php:130 #, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." -#: ../../mod/admin.php:867 -msgid "Censor" -msgstr "Sperren" +#: ../../mod/manage.php:138 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" -#: ../../mod/admin.php:868 -msgid "Uncensor" -msgstr "Freigeben" +#: ../../mod/manage.php:161 +msgid "Current Channel" +msgstr "Aktueller Kanal" -#: ../../mod/admin.php:871 -msgid "UID" -msgstr "UID" +#: ../../mod/manage.php:163 +msgid "Switch to one of your channels by selecting it." +msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." -#: ../../mod/admin.php:873 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" +#: ../../mod/manage.php:164 +msgid "Default Channel" +msgstr "Standard Kanal" -#: ../../mod/admin.php:874 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" +#: ../../mod/manage.php:165 +msgid "Make Default" +msgstr "Zum Standard machen" -#: ../../mod/admin.php:913 +#: ../../mod/manage.php:168 #, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." +msgid "%d new messages" +msgstr "%d neue Nachrichten" -#: ../../mod/admin.php:917 +#: ../../mod/manage.php:169 #, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." - -#: ../../mod/admin.php:927 ../../mod/admin.php:1129 -msgid "Disable" -msgstr "Deaktivieren" - -#: ../../mod/admin.php:929 ../../mod/admin.php:1131 -msgid "Enable" -msgstr "Aktivieren" - -#: ../../mod/admin.php:955 ../../mod/admin.php:1160 -msgid "Toggle" -msgstr "Umschalten" +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" -#: ../../mod/admin.php:963 ../../mod/admin.php:1170 -msgid "Author: " -msgstr "Autor: " +#: ../../mod/manage.php:171 +msgid "Delegated Channels" +msgstr "Delegierte Kanäle" -#: ../../mod/admin.php:964 ../../mod/admin.php:1171 -msgid "Maintainer: " -msgstr "Betreuer:" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" -#: ../../mod/admin.php:1093 -msgid "No themes found." -msgstr "Keine Theme gefunden." +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" -#: ../../mod/admin.php:1152 -msgid "Screenshot" -msgstr "Bildschirmfoto" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." -#: ../../mod/admin.php:1200 -msgid "[Experimental]" -msgstr "[Experimentell]" +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" -#: ../../mod/admin.php:1201 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" +#: ../../mod/connections.php:52 ../../mod/connections.php:150 +msgid "Blocked" +msgstr "Blockiert" -#: ../../mod/admin.php:1228 -msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." +#: ../../mod/connections.php:57 ../../mod/connections.php:157 +msgid "Ignored" +msgstr "Ignoriert" -#: ../../mod/admin.php:1284 -msgid "Clear" -msgstr "Leeren" +#: ../../mod/connections.php:62 ../../mod/connections.php:171 +msgid "Hidden" +msgstr "Versteckt" -#: ../../mod/admin.php:1290 -msgid "Debugging" -msgstr "Debugging" +#: ../../mod/connections.php:67 ../../mod/connections.php:164 +msgid "Archived" +msgstr "Archiviert" -#: ../../mod/admin.php:1291 -msgid "Log file" -msgstr "Protokolldatei" +#: ../../mod/connections.php:128 +msgid "Suggest new connections" +msgstr "Neue Verbindungen vorschlagen" -#: ../../mod/admin.php:1291 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis." +#: ../../mod/connections.php:131 +msgid "New Connections" +msgstr "Neue Verbindungen" -#: ../../mod/admin.php:1292 -msgid "Log level" -msgstr "Protokollstufe" +#: ../../mod/connections.php:134 +msgid "Show pending (new) connections" +msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" -#: ../../mod/admin.php:1339 -msgid "New Profile Field" -msgstr "Neues Profilfeld" +#: ../../mod/connections.php:137 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle Verbindungen" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Field nickname" -msgstr "Kurzname für das Feld" +#: ../../mod/connections.php:140 +msgid "Show all connections" +msgstr "Alle Verbindungen anzeigen" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "System name of field" -msgstr "Systemname des Feldes" +#: ../../mod/connections.php:143 +msgid "Unblocked" +msgstr "Freigegeben" -#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 -msgid "Input type" -msgstr "Art des Inhalts" +#: ../../mod/connections.php:146 +msgid "Only show unblocked connections" +msgstr "Nur freigegebene Verbindungen anzeigen" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Field Name" -msgstr "Feldname" +#: ../../mod/connections.php:153 +msgid "Only show blocked connections" +msgstr "Nur blockierte Verbindungen anzeigen" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Label on profile pages" -msgstr "Bezeichnung auf Profilseiten" +#: ../../mod/connections.php:160 +msgid "Only show ignored connections" +msgstr "Nur ignorierte Verbindungen anzeigen" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Help text" -msgstr "Hilfetext" +#: ../../mod/connections.php:167 +msgid "Only show archived connections" +msgstr "Nur archivierte Verbindungen anzeigen" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Additional info (optional)" -msgstr "Zusätzliche Informationen (optional)" +#: ../../mod/connections.php:174 +msgid "Only show hidden connections" +msgstr "Nur versteckte Verbindungen anzeigen" -#: ../../mod/admin.php:1354 -msgid "Field definition not found" -msgstr "Feld-Definition nicht gefunden" +#: ../../mod/connections.php:225 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../mod/admin.php:1360 -msgid "Edit Profile Field" -msgstr "Profilfeld bearbeiten" +#: ../../mod/connections.php:226 +msgid "Edit connection" +msgstr "Verbindung bearbeiten" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." +#: ../../mod/connections.php:264 +msgid "Search your connections" +msgstr "Verbindungen durchsuchen" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." +#: ../../mod/connections.php:265 +msgid "Finding: " +msgstr "Ergebnisse:" -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." +#: ../../mod/editlayout.php:112 +msgid "Delete layout?" +msgstr "Layout löschen?" -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." +#: ../../mod/editlayout.php:178 +msgid "Edit Layout" +msgstr "Layout bearbeiten" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Bitte melde dich an." +#: ../../mod/editwebpage.php:153 +msgid "Delete webpage?" +msgstr "Webseite löschen?" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." +#: ../../mod/editwebpage.php:172 +msgid "Page link title" +msgstr "Seitentitel-Link" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Dieses Konto löschen" +#: ../../mod/editwebpage.php:222 +msgid "Edit Webpage" +msgstr "Webseite bearbeiten" -#: ../../mod/removeaccount.php:58 -msgid "" -"This will completely remove this account including all its channels from the" -" network. Once this has been done it is not recoverable." -msgstr "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden." +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Sammlung erstellt." -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Sammlung kann nicht erstellt werden." -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Sammlung aktualisiert." -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt" +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Erstelle eine Sammlung von Kanälen." -#: ../../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 "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" +#: ../../mod/group.php:87 ../../mod/group.php:180 +msgid "Collection Name: " +msgstr "Name der Sammlung:" -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "Wall Fotos" +#: ../../mod/group.php:89 ../../mod/group.php:183 +msgid "Members are visible to other channels" +msgstr "Mitglieder sind sichtbar für andere Kanäle" -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Sammlung gelöscht." -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Löschen der Sammlung nicht möglich." -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "interessiert sich für:" +#: ../../mod/group.php:179 +msgid "Collection Editor" +msgstr "Sammlung-Editor" -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Keine Übereinstimmungen" +#: ../../mod/group.php:193 +msgid "Members" +msgstr "Mitglieder" -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." +#: ../../mod/group.php:195 +msgid "All Connected Channels" +msgstr "Alle verbundenen Kanäle" -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Keine Nachrichten." +#: ../../mod/group.php:227 +msgid "Click on a channel to add or remove." +msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Fortfahren" -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - G:i" +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menü-Element aktualisiert." +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menü-Bestandteil hinzugefügt." +#: ../../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 "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Menü-Bestandteile verwalten" +#: ../../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 "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Menü bearbeiten" +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Bestandteil löschen" +#: ../../mod/viewconnections.php:59 +msgid "No connections." +msgstr "Keine Verbindungen." -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Neues Bestandteil" +#: ../../mod/viewconnections.php:72 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "%ss Profil [%s] besuchen" -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" +#: ../../mod/locs.php:21 ../../mod/locs.php:49 +msgid "Location not found." +msgstr "Klon nicht gefunden." -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" +#: ../../mod/locs.php:57 +msgid "Location lookup failed." +msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" +#: ../../mod/locs.php:61 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" +#: ../../mod/locs.php:93 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden." -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Neues Menü-Bestandteil" +#: ../../mod/locs.php:104 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" +#: ../../mod/locs.php:105 +msgid "Location (address)" +msgstr "URL (Adresse)" -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Link Text" +#: ../../mod/locs.php:106 +msgid "Primary Location" +msgstr "Primärer Klon" -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL des Links" +#: ../../mod/locs.php:107 +msgid "Drop location" +msgstr "Klon löschen" -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use RedMatrix magic-auth if available" -msgstr "Verwende die automatische RedMatrix-Authentifizierung (magic-auth), wenn verfügbar" +#: ../../mod/post.php:234 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" +#: ../../mod/setup.php:191 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Server-Einrichtung" -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" +#: ../../mod/setup.php:195 +msgid "Could not connect to database." +msgstr "Kann nicht mit der Datenbank verbinden." -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" +#: ../../mod/setup.php:199 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." +#: ../../mod/setup.php:206 +msgid "Could not create table." +msgstr "Kann Tabelle nicht erstellen." -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." +#: ../../mod/setup.php:211 +msgid "Your site database has been installed." +msgstr "Die Datenbank Deines Hubs wurde installiert." -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." +#: ../../mod/setup.php:215 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" +#: ../../mod/setup.php:216 ../../mod/setup.php:284 ../../mod/setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Lies die Datei \"install/INSTALL.txt\"." -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" +#: ../../mod/setup.php:281 +msgid "System check" +msgstr "Systemprüfung" -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Stimmen gesamt" +#: ../../mod/setup.php:286 +msgid "Check again" +msgstr "Bitte nochmal prüfen" -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Durchschnittliche Bewertung" +#: ../../mod/setup.php:308 +msgid "Database connection" +msgstr "Datenbank Verbindung" -#: ../../mod/removeme.php:29 +#: ../../mod/setup.php:309 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Diesen Kanal löschen" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." -#: ../../mod/removeme.php:58 +#: ../../mod/setup.php:310 msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet, kann dieser Prozess nicht wieder rückgängig gemacht werden." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." -#: ../../mod/removeme.php:60 +#: ../../mod/setup.php:311 msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanal löschen" +#: ../../mod/setup.php:315 +msgid "Database Server Name" +msgstr "Datenbank-Servername" -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hilfe zu dieser Funktion" +#: ../../mod/setup.php:315 +msgid "Default is localhost" +msgstr "Standard ist localhost" -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layout-Name" +#: ../../mod/setup.php:316 +msgid "Database Port" +msgstr "Datenbank-Port" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" +#: ../../mod/setup.php:316 +msgid "Communication port number - use 0 for default" +msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." +#: ../../mod/setup.php:317 +msgid "Database Login Name" +msgstr "Datenbank-Benutzername" -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren." +#: ../../mod/setup.php:318 +msgid "Database Login Password" +msgstr "Datenbank-Kennwort" -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Ungültige Anfrage." +#: ../../mod/setup.php:319 +msgid "Database Name" +msgstr "Datenbank-Name" -#: ../../mod/like.php:143 -msgid "thing" -msgstr "Sache" +#: ../../mod/setup.php:320 +msgid "Database Type" +msgstr "Datenbanktyp" -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." +#: ../../mod/setup.php:322 ../../mod/setup.php:363 +msgid "Site administrator email address" +msgstr "E-Mail Adresse des Seiten-Administrators" -#: ../../mod/like.php:228 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." +#: ../../mod/setup.php:322 ../../mod/setup.php:363 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." -#: ../../mod/like.php:387 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s stimmt %2$ss %3$s zu" +#: ../../mod/setup.php:323 ../../mod/setup.php:365 +msgid "Website URL" +msgstr "Server-URL" -#: ../../mod/like.php:389 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s lehnt %2$ss %3$s ab" +#: ../../mod/setup.php:323 ../../mod/setup.php:365 +msgid "Please use SSL (https) URL if available." +msgstr "Nutze wenn möglich eine SSL-URL (https)." -#: ../../mod/like.php:391 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s enthält sich zu %2$ss %3$s" +#: ../../mod/setup.php:325 ../../mod/setup.php:367 +msgid "Please select a default timezone for your website" +msgstr "Standard-Zeitzone für Deinen Server" -#: ../../mod/like.php:393 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s teil" +#: ../../mod/setup.php:352 +msgid "Site settings" +msgstr "Seiteneinstellungen" -#: ../../mod/like.php:395 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s nicht teil" +#: ../../mod/setup.php:417 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" +#: ../../mod/setup.php:418 +msgid "" +"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." +msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." -#: ../../mod/like.php:481 -msgid "Action completed." -msgstr "Aktion durchgeführt." +#: ../../mod/setup.php:422 +msgid "PHP executable path" +msgstr "PHP Pfad zu ausführbarer Datei" -#: ../../mod/like.php:482 -msgid "Thank you." -msgstr "Vielen Dank." +#: ../../mod/setup.php:422 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Konnte den Empfänger nicht finden." +#: ../../mod/setup.php:427 +msgid "Command line PHP" +msgstr "PHP Befehlszeile" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." +#: ../../mod/setup.php:436 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." +#: ../../mod/setup.php:437 +msgid "This is required for message delivery to work." +msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." +#: ../../mod/setup.php:440 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Nachricht gelöscht." +#: ../../mod/setup.php:458 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Nachricht widerrufen." +#: ../../mod/setup.php:463 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Private Nachricht senden" +#: ../../mod/setup.php:465 +msgid "PHP upload limits" +msgstr "PHP-Hochladebeschränkungen" -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "An:" +#: ../../mod/setup.php:488 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Betreff:" +#: ../../mod/setup.php:489 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Absenden" +#: ../../mod/setup.php:492 +msgid "Generate encryption keys" +msgstr "Verschlüsselungsschlüssel generieren" -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Nachricht nicht gefunden." +#: ../../mod/setup.php:504 +msgid "libCurl PHP module" +msgstr "libCurl-PHP-Modul" -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Nachricht löschen" +#: ../../mod/setup.php:505 +msgid "GD graphics PHP module" +msgstr "GD-Grafik-PHP-Modul" -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Nachricht widerrufen" +#: ../../mod/setup.php:506 +msgid "OpenSSL PHP module" +msgstr "OpenSSL-PHP-Modul" -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." +#: ../../mod/setup.php:507 +msgid "mysqli or postgres PHP module" +msgstr "mysqli oder postgres PHP-Modul" -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Private Unterhaltung" +#: ../../mod/setup.php:508 +msgid "mb_string PHP module" +msgstr "mb_string-PHP-Modul" -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." +#: ../../mod/setup.php:509 +msgid "mcrypt PHP module" +msgstr "mcrypt-PHP-Modul" -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Antwort senden" +#: ../../mod/setup.php:510 +msgid "xml PHP module" +msgstr "xml-PHP-Modul" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." +#: ../../mod/setup.php:514 ../../mod/setup.php:516 +msgid "Apache mod_rewrite module" +msgstr "Apache-mod_rewrite-Modul" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Verwerfen" +#: ../../mod/setup.php:514 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Kanal hinzufügen" +#: ../../mod/setup.php:520 ../../mod/setup.php:523 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/new_channel.php:110 +#: ../../mod/setup.php:520 msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Ein Kanal ist Deine eigene Sammlung von zusammengehörigen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deines Hubs zulässt." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" +#: ../../mod/setup.php:528 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." -#: ../../mod/new_channel.php:115 +#: ../../mod/setup.php:532 msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst." +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Oder importiere einen bestehenden Kanal von einem anderen Server" +#: ../../mod/setup.php:536 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." -#: ../../mod/new_channel.php:118 +#: ../../mod/setup.php:540 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 "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können" - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Kanaltyp" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" +#: ../../mod/setup.php:544 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: ../../mod/setup.php:548 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." +#: ../../mod/setup.php:552 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album nicht gefunden." +#: ../../mod/setup.php:570 +msgid "" +"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." +msgstr "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Album löschen" +#: ../../mod/setup.php:571 +msgid "" +"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." +msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." -#: ../../mod/photos.php:159 ../../mod/photos.php:924 -msgid "Delete Photo" -msgstr "Foto löschen" +#: ../../mod/setup.php:572 +msgid "" +"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." +msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst." -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" +#: ../../mod/setup.php:573 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." +#: ../../mod/setup.php:576 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php ist beschreibbar" + +#: ../../mod/setup.php:590 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../mod/photos.php:523 +#: ../../mod/setup.php:591 #, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." +msgid "" +"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." +msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." + +#: ../../mod/setup.php:592 ../../mod/setup.php:613 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../mod/photos.php:526 +#: ../../mod/setup.php:593 #, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Fotos hochladen" +#: ../../mod/setup.php:596 +#, php-format +msgid "%s is writable" +msgstr "%s ist beschreibbar" -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:909 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" +#: ../../mod/setup.php:612 +msgid "" +"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" +msgstr "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:910 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" +#: ../../mod/setup.php:616 +msgid "store is writable" +msgstr "store ist schreibbar" -#: ../../mod/photos.php:556 -msgid "Do not show a status post for this upload" -msgstr "Keine Statusnachricht für diesen Upload anzeigen" +#: ../../mod/setup.php:649 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" +#: ../../mod/setup.php:650 +msgid "" +"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!" +msgstr "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." -#: ../../mod/photos.php:625 ../../mod/photos.php:1149 -#: ../../mod/photos.php:1165 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" +#: ../../mod/setup.php:651 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" +#: ../../mod/setup.php:652 +msgid "" +"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." +msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" +#: ../../mod/setup.php:653 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." -#: ../../mod/photos.php:675 ../../mod/photos.php:1197 -msgid "View Photo" -msgstr "Foto ansehen" +#: ../../mod/setup.php:654 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Album bearbeiten" +#: ../../mod/setup.php:656 +msgid "SSL certificate validation" +msgstr "SSL Zertifikatverifizierung" -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." +#: ../../mod/setup.php:662 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" +#: ../../mod/setup.php:665 +msgid "Url rewrite is working" +msgstr "Url rewrite funktioniert" -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" +#: ../../mod/setup.php:674 +msgid "" +"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." +msgstr "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privates Foto" +#: ../../mod/setup.php:698 +msgid "Errors encountered creating database tables." +msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" +#: ../../mod/setup.php:732 +msgid "

What next

" +msgstr "

Was als Nächstes

" -#: ../../mod/photos.php:903 -msgid "Edit photo" -msgstr "Foto bearbeiten" +#: ../../mod/setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." -#: ../../mod/photos.php:905 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" +#: ../../mod/sharedwithme.php:94 +msgid "Files: shared with me" +msgstr "Dateien, die mit mir geteilt wurden" -#: ../../mod/photos.php:906 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "NEU" -#: ../../mod/photos.php:913 -msgid "Caption" -msgstr "Bildunterschrift" +#: ../../mod/sharedwithme.php:99 +msgid "Remove all files" +msgstr "Alle Dateien löschen" -#: ../../mod/photos.php:915 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" +#: ../../mod/sharedwithme.php:100 +msgid "Remove this file" +msgstr "Diese Datei löschen" -#: ../../mod/photos.php:919 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." -#: ../../mod/photos.php:922 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 +msgid "Profile not found." +msgstr "Profil nicht gefunden." -#: ../../mod/photos.php:1114 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profil gelöscht." -#: ../../mod/photos.php:1203 -msgid "View Album" -msgstr "Album ansehen" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/photos.php:1226 -msgid "Recent Photos" -msgstr "Neueste Fotos" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Neues Profil erstellt." -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profil kann nicht geklont werden." -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Dieses Profil kann nicht exportiert werden." -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." +msgstr "Profil-Name erforderlich." -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" +#: ../../mod/profiles.php:404 +msgid "Marital Status" +msgstr "Familienstand" -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" +#: ../../mod/profiles.php:408 +msgid "Romantic Partner" +msgstr "Romantische Partner" -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" +#: ../../mod/profiles.php:412 +msgid "Likes" +msgstr "Gefällt" -#: ../../mod/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." +#: ../../mod/profiles.php:416 +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." +#: ../../mod/profiles.php:420 +msgid "Work/Employment" +msgstr "Arbeit/Anstellung" -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." +#: ../../mod/profiles.php:423 +msgid "Religion" +msgstr "Religion" -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." +#: ../../mod/profiles.php:427 +msgid "Political Views" +msgstr "Politische Ansichten" -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." +#: ../../mod/profiles.php:435 +msgid "Sexual Preference" +msgstr "Sexuelle Orientierung" -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." +#: ../../mod/profiles.php:439 +msgid "Homepage" +msgstr "Webseite" -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." +#: ../../mod/profiles.php:443 +msgid "Interests" +msgstr "Hobbys/Interessen" -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" +#: ../../mod/profiles.php:537 +msgid "Profile updated." +msgstr "Profil aktualisiert." -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrierung auf einem anderen, angeschlossenen Server" +#: ../../mod/profiles.php:626 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." +#: ../../mod/profiles.php:666 +msgid "Edit Profile Details" +msgstr "Bearbeite Profil-Details" -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" +#: ../../mod/profiles.php:668 +msgid "View this profile" +msgstr "Dieses Profil ansehen" -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" +#: ../../mod/profiles.php:670 +msgid "Change Profile Photo" +msgstr "Profilfoto ändern" -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" +#: ../../mod/profiles.php:671 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." +#: ../../mod/profiles.php:672 +msgid "Clone this profile" +msgstr "Dieses Profil klonen" -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" +#: ../../mod/profiles.php:673 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" +#: ../../mod/profiles.php:675 +msgid "Import profile from file" +msgstr "Profil aus einer Datei importieren" -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Passwort" +#: ../../mod/profiles.php:676 +msgid "Export profile to file" +msgstr "Profil in eine Datei exportieren" -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" +#: ../../mod/profiles.php:677 +msgid "Profile Name:" +msgstr "Profilname:" -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." +#: ../../mod/profiles.php:678 +msgid "Your Full Name:" +msgstr "Dein voller Name:" -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" +#: ../../mod/profiles.php:679 +msgid "Title/Description:" +msgstr "Titel/Beschreibung:" -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." +#: ../../mod/profiles.php:680 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" +#: ../../mod/profiles.php:681 +msgid "Birthday :" +msgstr "Geburtstag:" -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" +#: ../../mod/profiles.php:682 +msgid "Street Address:" +msgstr "Straße und Hausnummer:" -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authentifizieren" +#: ../../mod/profiles.php:683 +msgid "Locality/City:" +msgstr "Wohnort:" -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Umfrage" +#: ../../mod/profiles.php:684 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Ergebnisse" +#: ../../mod/profiles.php:685 +msgid "Country:" +msgstr "Land:" -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Keine Dienstklassenbeschränkungen gefunden." +#: ../../mod/profiles.php:686 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" -#: ../../mod/sharedwithme.php:99 -msgid "Files: shared with me" -msgstr "Dateien, die mit mir geteilt wurden" +#: ../../mod/profiles.php:687 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" -#: ../../mod/sharedwithme.php:103 -msgid "Remove all files" -msgstr "Alle Dateien löschen" +#: ../../mod/profiles.php:688 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" -#: ../../mod/sharedwithme.php:104 -msgid "Remove this file" -msgstr "Diese Datei löschen" +#: ../../mod/profiles.php:689 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Standard-Schema" +#: ../../mod/profiles.php:690 +msgid "Since [date]:" +msgstr "Seit [Datum]:" -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" +#: ../../mod/profiles.php:692 +msgid "Homepage URL:" +msgstr "Homepage URL:" -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" +#: ../../mod/profiles.php:695 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Theme-Einstellungen" +#: ../../mod/profiles.php:696 +msgid "Keywords:" +msgstr "Schlüsselwörter:" -#: ../../view/theme/apw/php/config.php:260 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" -msgstr "Schema" +#: ../../mod/profiles.php:699 +msgid "Example: fishing photography software" +msgstr "Beispiel: Angeln Fotografie Software" -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare" +#: ../../mod/profiles.php:700 +msgid "Used in directory listings" +msgstr "Wird in Verzeichnis-Auflistungen verwendet" -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Schriftart" +#: ../../mod/profiles.php:701 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein wenig von Dir …" -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Icon-Set" +#: ../../mod/profiles.php:702 +msgid "Hobbies/Interests" +msgstr "Hobbys/Interessen" -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Ausmaß der großen Schatten (Voreinstellung 15px 15px 15px)" +#: ../../mod/profiles.php:703 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformation und soziale Netzwerke" -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Ausmaß der kleinen Schatten (Voreinstellung 5px 5px 5px)" +#: ../../mod/profiles.php:704 +msgid "My other channels" +msgstr "Meine anderen Kanäle" -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Farbe der Schatten (Voreinstellung #000)" +#: ../../mod/profiles.php:705 +msgid "Musical interests" +msgstr "Musikalische Interessen" -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Ecken-Radius (Voreinstellung 5px)" +#: ../../mod/profiles.php:706 +msgid "Books, literature" +msgstr "Bücher, Literatur" -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Zeilenhöhe in Beiträgen und Kommentaren" +#: ../../mod/profiles.php:707 +msgid "Television" +msgstr "Fernsehen" -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Hintergrundbild" +#: ../../mod/profiles.php:708 +msgid "Film/dance/culture/entertainment" +msgstr "Film/Tanz/Kultur/Unterhaltung" -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Hintergrunddatei" +#: ../../mod/profiles.php:709 +msgid "Love/romance" +msgstr "Liebe/Romantik" -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Hintergrundfarbe" +#: ../../mod/profiles.php:710 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Hintergrundbild für die Section" +#: ../../mod/profiles.php:711 +msgid "School/education" +msgstr "Schule/Ausbildung" -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Hintergrundfarbe für die Section" +#: ../../mod/profiles.php:717 +msgid "This is your default profile." +msgstr "Das ist Dein Standardprofil." -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Farbe für Beiträge – Hex benutzen" +#: ../../mod/profiles.php:728 +msgid "Age: " +msgstr "Alter:" -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Farbe für Links – Hex benutzen" +#: ../../mod/profiles.php:771 +msgid "Edit/Manage Profiles" +msgstr "Profile bearbeiten/verwalten" -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Maximale Breite von Beiträgen (Voreinstellung 400px)" +#: ../../mod/profiles.php:772 +msgid "Add profile things" +msgstr "Sachen zum Profil hinzufügen" -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Minimale Breite von Beiträgen (Voreinstellung 240px)" +#: ../../mod/profiles.php:773 +msgid "Include desirable objects in your profile" +msgstr "Binde begehrenswerte Dinge in Dein Profil ein" -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Breite des \"generic content wrapper\" (Voreinstellung 48%)" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Schriftfarbe – Hex benutzen" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Größe des Hintergrund-Elements" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Deckkraft der Beiträge" +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Sichtbar für" -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Nur Beitragsvorschau anzeigen" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Lesezeichenordner wählen" -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Zeige die Seitenleiste auf der Kanal-Seite" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Lesezeichen speichern" -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Farbe der Navigationsleiste" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL des Lesezeichens" -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Beitragsfluss" +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Linker Rand des Section Elements" +#: ../../mod/import_items.php:101 +msgid "Import completed" +msgstr "Import abgeschlossen" -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Rechter Rand des Section Elements" +#: ../../mod/import_items.php:119 +msgid "Import Items" +msgstr "Beiträge importieren" -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Breite der Section" +#: ../../mod/import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Linker Rand des Aside-Elements" +#: ../../view/theme/redbasic/php/config.php:82 +msgid "Focus (Hubzilla default)" +msgstr "Focus (Voreinstellung für Hubzilla)" -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Rechter Rand des Aside-Elements" +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Theme settings" +msgstr "Theme-Einstellungen" -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Light (Red Matrix default)" -msgstr "Hell (RedMatrix-Voreinstellung)" +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Select scheme" +msgstr "Schema wählen" #: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" @@ -8689,6 +9098,14 @@ msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" msgid "Set font-size for the entire application" msgstr "Schriftgröße für die gesamte Anwendung" +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Example: 14px" +msgstr "Beispiel: 14px" + +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare" + #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-color for posts and comments" msgstr "Schriftfarbe für Beiträge und Kommentare" @@ -8702,12 +9119,16 @@ msgid "Set shadow depth of photos" msgstr "Schattentiefe von Fotos" #: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" -msgstr "Maximalbreite der Unterhaltungsbereiche" +msgid "Set maximum width of content region in pixel" +msgstr "Maximalbreite des Inhaltsbereichs in Pixel festlegen" + +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Leave empty for default width" +msgstr "Leer lassen für Standardbreite" #: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" -msgstr "Konversationsbereich zentrieren" +msgid "Left align page content" +msgstr "Seiteninhalt linksbündig anzeigen" #: ../../view/theme/redbasic/php/config.php:130 msgid "Set minimum opacity of nav bar - to hide it" @@ -8721,49 +9142,51 @@ msgstr "Größe der Avatare von Themenstartern" msgid "Set size of followup author photos" msgstr "Größe der Avatare von Kommentatoren" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" -msgstr "Schräge Fotoalben" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Are you a clean desk or a messy desk person?" -msgstr "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?" - -#: ../../boot.php:1357 +#: ../../boot.php:1302 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1360 +#: ../../boot.php:1305 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1527 +#: ../../boot.php:1472 msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können." +"Create an account to access services and applications within the Hubzilla" +msgstr "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können." -#: ../../boot.php:1555 +#: ../../boot.php:1500 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1556 +#: ../../boot.php:1501 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1559 +#: ../../boot.php:1504 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:1674 -msgid "permission denied" -msgstr "Zugriff verweigert" - -#: ../../boot.php:1675 -msgid "Got Zot?" -msgstr "Haste schon Zot?" - -#: ../../boot.php:2158 +#: ../../boot.php:2130 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" + +#: ../../boot.php:2265 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." + +#: ../../boot.php:2268 +#, php-format +msgid "[hubzilla] Website SSL error for %s" +msgstr "[hubzilla] Website-SSL-Fehler für %s" + +#: ../../boot.php:2305 +msgid "Cron/Scheduled tasks not running." +msgstr "Cron-Aufgaben laufen nicht." + +#: ../../boot.php:2309 +#, php-format +msgid "[hubzilla] Cron tasks not running on %s" +msgstr "[hubzilla] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de/hstrings.php b/view/de/hstrings.php index 2679e9eb1..c890dbc29 100644 --- a/view/de/hstrings.php +++ b/view/de/hstrings.php @@ -5,253 +5,11 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; -$a->strings["Profile Photos"] = "Profilfotos"; -$a->strings["Permission denied."] = "Zugang verweigert"; -$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes"; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; -$a->strings["Photo storage failed."] = "Foto speichern schlug fehl"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Upload New Photos"] = "Lade neue Fotos hoch"; -$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; -$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; -$a->strings["New Page"] = "Neue Seite"; -$a->strings["Edit"] = "Bearbeiten"; -$a->strings["View"] = "Ansicht"; -$a->strings["Preview"] = "Vorschau"; -$a->strings["Actions"] = "Aktionen"; -$a->strings["Page Link"] = "Seiten-Link"; -$a->strings["Title"] = "Titel"; -$a->strings["Created"] = "Erstellt"; -$a->strings["Edited"] = "Geändert"; -$a->strings["Categories"] = "Kategorien"; -$a->strings["Apps"] = "Apps"; -$a->strings["System"] = "System"; -$a->strings["Personal"] = "Persönlich"; -$a->strings["Create Personal App"] = "Persönliche App erstellen"; -$a->strings["Edit Personal App"] = "Persönliche App bearbeiten"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken"; -$a->strings["Suggestions"] = "Vorschläge"; -$a->strings["See more..."] = "Mehr anzeigen …"; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"; -$a->strings["Notes"] = "Notizen"; -$a->strings["Save"] = "Speichern"; -$a->strings["Remove term"] = "Eintrag löschen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchanfragen"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; -$a->strings["Everything"] = "Alles"; -$a->strings["Archives"] = "Archive"; -$a->strings["Refresh"] = "Aktualisieren"; -$a->strings["Me"] = "Ich"; -$a->strings["Best Friends"] = "Beste Freunde"; -$a->strings["Friends"] = "Freunde"; -$a->strings["Co-workers"] = "Kollegen"; -$a->strings["Former Friends"] = "ehem. Freunde"; -$a->strings["Acquaintances"] = "Bekannte"; -$a->strings["Everybody"] = "Jeder"; -$a->strings["Account settings"] = "Konto-Einstellungen"; -$a->strings["Channel settings"] = "Kanal-Einstellungen"; -$a->strings["Additional features"] = "Zusätzliche Funktionen"; -$a->strings["Feature/Addon settings"] = "Plugin-Einstellungen"; -$a->strings["Display settings"] = "Anzeige-Einstellungen"; -$a->strings["Connected apps"] = "Verbundene Apps"; -$a->strings["Export channel"] = "Kanal exportieren"; -$a->strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; -$a->strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -$a->strings["Channel Sources"] = "Kanal-Quellen"; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Check Mail"] = "E-Mails abrufen"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["Chat Rooms"] = "Chaträume"; -$a->strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -$a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -$a->strings["photo/image"] = "Foto/Bild"; -$a->strings["Rate Me"] = "Bewerte mich"; -$a->strings["View Ratings"] = "Bewertungen ansehen"; -$a->strings["Public Hubs"] = "Öffentliche Hubs"; -$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung"; -$a->strings["redmatrix"] = "redmatrix"; -$a->strings["Thank You,"] = "Danke."; -$a->strings["%s Administrator"] = "der Administrator von %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Benachrichtigung] Neue Mail auf %s empfangen"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; -$a->strings["a private message"] = "eine private Nachricht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]einen %4\$s[/zrl] kommentiert"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf Deine Pinnwand auf %3\$s geschrieben"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]Deine Pinnwand[/zrl] geschrieben"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Benachrichtigung] %s hat Dich erwähnt"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Benachrichtigung] %1\$s hat Dich angestupst"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Benachrichtigung] Vorstellung erhalten"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, Du hast eine neue Verbindungsanfrage von '%2\$s' auf %3\$s erhalten"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, Du hast [zrl=%2\$s]eine neue Verbindungsanfrage[/zrl] von %3\$s erhalten."; -$a->strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten."; -$a->strings["Name:"] = "Name:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; -$a->strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; -$a->strings["prev"] = "vorherige"; -$a->strings["first"] = "erste"; -$a->strings["last"] = "letzte"; -$a->strings["next"] = "nächste"; -$a->strings["older"] = "älter"; -$a->strings["newer"] = "neuer"; -$a->strings["No connections"] = "Keine Verbindungen"; -$a->strings["%d Connection"] = array( - 0 => "%d Verbindung", - 1 => "%d Verbindungen", -); -$a->strings["View Connections"] = "Verbindungen anzeigen"; -$a->strings["Search"] = "Suche"; -$a->strings["poke"] = "anstupsen"; -$a->strings["poked"] = "stupste"; -$a->strings["ping"] = "anpingen"; -$a->strings["pinged"] = "pingte"; -$a->strings["prod"] = "knuffen"; -$a->strings["prodded"] = "knuffte"; -$a->strings["slap"] = "ohrfeigen"; -$a->strings["slapped"] = "ohrfeigte"; -$a->strings["finger"] = "befummeln"; -$a->strings["fingered"] = "befummelte"; -$a->strings["rebuff"] = "eine Abfuhr erteilen"; -$a->strings["rebuffed"] = "zurückgewiesen"; -$a->strings["happy"] = "glücklich"; -$a->strings["sad"] = "traurig"; -$a->strings["mellow"] = "sanft"; -$a->strings["tired"] = "müde"; -$a->strings["perky"] = "frech"; -$a->strings["angry"] = "sauer"; -$a->strings["stupified"] = "verblüfft"; -$a->strings["puzzled"] = "verwirrt"; -$a->strings["interested"] = "interessiert"; -$a->strings["bitter"] = "verbittert"; -$a->strings["cheerful"] = "fröhlich"; -$a->strings["alive"] = "lebendig"; -$a->strings["annoyed"] = "verärgert"; -$a->strings["anxious"] = "unruhig"; -$a->strings["cranky"] = "schrullig"; -$a->strings["disturbed"] = "verstört"; -$a->strings["frustrated"] = "frustriert"; -$a->strings["depressed"] = "deprimiert"; -$a->strings["motivated"] = "motiviert"; -$a->strings["relaxed"] = "entspannt"; -$a->strings["surprised"] = "überrascht"; -$a->strings["Monday"] = "Montag"; -$a->strings["Tuesday"] = "Dienstag"; -$a->strings["Wednesday"] = "Mittwoch"; -$a->strings["Thursday"] = "Donnerstag"; -$a->strings["Friday"] = "Freitag"; -$a->strings["Saturday"] = "Samstag"; -$a->strings["Sunday"] = "Sonntag"; -$a->strings["January"] = "Januar"; -$a->strings["February"] = "Februar"; -$a->strings["March"] = "März"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "August"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "Dezember"; -$a->strings["unknown.???"] = "unbekannt.???"; -$a->strings["bytes"] = "Bytes"; -$a->strings["remove category"] = "Kategorie entfernen"; -$a->strings["remove from file"] = "aus der Datei entfernen"; -$a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -$a->strings["Link to Source"] = "Link zur Quelle"; -$a->strings["Select a page layout: "] = "Ein Seiten-Layout auswählen:"; -$a->strings["default"] = "Standard"; -$a->strings["Page content type: "] = "Content-Typ der Seite:"; -$a->strings["Select an alternate language"] = "Wähle eine alternative Sprache"; -$a->strings["photo"] = "Foto"; -$a->strings["event"] = "Termin"; -$a->strings["status"] = "Status"; -$a->strings["comment"] = "Kommentar"; -$a->strings["activity"] = "Aktivität"; -$a->strings["Design"] = "Design"; -$a->strings["Blocks"] = "Blöcke"; -$a->strings["Menus"] = "Menüs"; -$a->strings["Layouts"] = "Layouts"; -$a->strings["Pages"] = "Seiten"; -$a->strings["Collection"] = "Ordner"; -$a->strings["Item was not found."] = "Beitrag wurde nicht gefunden."; -$a->strings["No source file."] = "Keine Quelldatei."; -$a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; -$a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; -$a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; -$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; -$a->strings["Path not available."] = "Pfad nicht verfügbar."; -$a->strings["Empty pathname"] = "Leere Pfadangabe"; -$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; -$a->strings["Path not found."] = "Pfad nicht gefunden."; -$a->strings["mkdir failed."] = "mkdir fehlgeschlagen."; -$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -$a->strings["Delete this item?"] = "Dieses Element löschen?"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["[+] show all"] = "[+] Alle anzeigen"; -$a->strings["[-] show less"] = "[-] Weniger anzeigen"; -$a->strings["[+] expand"] = "[+] aufklappen"; -$a->strings["[-] collapse"] = "[-] einklappen"; -$a->strings["Password too short"] = "Kennwort zu kurz"; -$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; -$a->strings["everybody"] = "alle"; -$a->strings["Secret Passphrase"] = "geheime Passphrase"; -$a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; -$a->strings["close all"] = "Alle schließen"; -$a->strings["Nothing new here"] = "Nichts Neues hier"; -$a->strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; -$a->strings["Rating"] = "Bewertung"; -$a->strings["Describe (optional)"] = "Beschreibung (optional)"; -$a->strings["Submit"] = "Bestätigen"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = " "; -$a->strings["ago"] = "her"; -$a->strings["from now"] = "von jetzt"; -$a->strings["less than a minute"] = "weniger als eine Minute"; -$a->strings["about a minute"] = "ungefähr eine Minute"; -$a->strings["%d minutes"] = "%d Minuten"; -$a->strings["about an hour"] = "ungefähr eine Stunde"; -$a->strings["about %d hours"] = "ungefähr %d Stunden"; -$a->strings["a day"] = "ein Tag"; -$a->strings["%d days"] = "%d Tage"; -$a->strings["about a month"] = "ungefähr ein Monat"; -$a->strings["%d months"] = "%d Monate"; -$a->strings["about a year"] = "ungefähr ein Jahr"; -$a->strings["%d years"] = "%d Jahre"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden."; +$a->strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; +$a->strings["Import completed."] = "Import abgeschlossen."; $a->strings["parent"] = "Übergeordnetes Verzeichnis"; +$a->strings["Collection"] = "Ordner"; $a->strings["Principal"] = "Prinzipal"; $a->strings["Addressbook"] = "Adressbuch"; $a->strings["Calendar"] = "Kalender"; @@ -269,25 +27,70 @@ $a->strings["Name"] = "Name"; $a->strings["Type"] = "Typ"; $a->strings["Size"] = "Größe"; $a->strings["Last Modified"] = "Zuletzt geändert"; +$a->strings["Edit"] = "Bearbeiten"; $a->strings["Delete"] = "Löschen"; $a->strings["Create new folder"] = "Neuen Ordner anlegen"; $a->strings["Upload file"] = "Datei hochladen"; -$a->strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -$a->strings["Tags"] = "Schlagwörter"; -$a->strings["Keywords"] = "Schlüsselwörter"; -$a->strings["have"] = "habe"; -$a->strings["has"] = "hat"; -$a->strings["want"] = "will"; -$a->strings["wants"] = "will"; -$a->strings["like"] = "mag"; -$a->strings["likes"] = "gefällt"; -$a->strings["dislike"] = "verurteile"; -$a->strings["dislikes"] = "missfällt"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "Gefällt mir", - 1 => "Gefällt mir", -); -$a->strings["General Features"] = "Allgemeine Funktionen"; +$a->strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; +$a->strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; +$a->strings["Can view my connections"] = "Kann meine Verbindungen sehen"; +$a->strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; +$a->strings["Can view my webpages"] = "Kann meine Webseiten sehen"; +$a->strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +$a->strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; +$a->strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; +$a->strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; +$a->strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; +$a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; +$a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; +$a->strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; +$a->strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; +$a->strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; +$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; +$a->strings["Social Networking"] = "Soziales Netzwerk"; +$a->strings["Mostly Public"] = "Weitgehend öffentlich"; +$a->strings["Restricted"] = "Beschränkt"; +$a->strings["Private"] = "Privat"; +$a->strings["Community Forum"] = "Forum"; +$a->strings["Feed Republish"] = "Teilen von Feeds"; +$a->strings["Special Purpose"] = "Für besondere Zwecke"; +$a->strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; +$a->strings["Group Repository"] = "Gruppenarchiv"; +$a->strings["Other"] = "Andere"; +$a->strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen"; +$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; +$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; +$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; +$a->strings["Permission denied."] = "Zugang verweigert"; +$a->strings["Room is full"] = "Der Raum ist voll"; +$a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +$a->strings["Required"] = "Benötigt"; +$a->strings["never"] = "Nie"; +$a->strings["less than a second ago"] = "Vor weniger als einer Sekunde"; +$a->strings["year"] = "Jahr"; +$a->strings["years"] = "Jahre"; +$a->strings["month"] = "Monat"; +$a->strings["months"] = "Monate"; +$a->strings["week"] = "Woche"; +$a->strings["weeks"] = "Wochen"; +$a->strings["day"] = "Tag"; +$a->strings["days"] = "Tage"; +$a->strings["hour"] = "Stunde"; +$a->strings["hours"] = "Stunden"; +$a->strings["minute"] = "Minute"; +$a->strings["minutes"] = "Minuten"; +$a->strings["second"] = "Sekunde"; +$a->strings["seconds"] = "Sekunden"; +$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +$a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +$a->strings["General Features"] = "Allgemeine Funktionen"; $a->strings["Content Expiration"] = "Verfall von Inhalten"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."; $a->strings["Multiple Profiles"] = "Mehrfachprofile"; @@ -302,8 +105,8 @@ $a->strings["Private Notes"] = "Private Notizen"; $a->strings["Enables a tool to store notes and reminders"] = "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"; $a->strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; $a->strings["Change channels directly from within the navigation dropdown menu"] = "Wechsle direkt über das Navigationsmenü zu anderen Kanälen"; -$a->strings["Extended Identity Sharing"] = "Erweitertes Teilen von Identitäten"; -$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt."; +$a->strings["Photo Location"] = "Aufnahmeort"; +$a->strings["If location data is available on uploaded photos, link this to a map."] = "Aufnahmeort des Fotos auf einer Karte verlinken, falls verfügbar."; $a->strings["Expert Mode"] = "Expertenmodus"; $a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren"; $a->strings["Premium Channel"] = "Premium-Kanal"; @@ -313,18 +116,18 @@ $a->strings["Use Markdown"] = "Markdown benutzen"; $a->strings["Allow use of \"Markdown\" to format posts"] = "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen"; $a->strings["Large Photos"] = "Große Fotos"; $a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt."; +$a->strings["Channel Sources"] = "Kanal-Quellen"; $a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"; $a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)"; $a->strings["Enable voting tools"] = "Umfragewerkzeuge aktivieren"; $a->strings["Provide a class of post which others can vote on"] = "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)"; -$a->strings["Flag Adult Photos"] = "Nicht jugendfreie Fotos markieren"; -$a->strings["Provide photo edit option to hide adult photos from default album view"] = "Stellt eine Option zum Verstecken von Fotos mit nicht jugendfreien Inhalten in der Standard-Albumansicht bereit"; $a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; $a->strings["Search by Date"] = "Suche nach Datum"; $a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; $a->strings["Collections Filter"] = "Filter für Sammlung"; $a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchanfragen"; $a->strings["Save search terms for re-use"] = "Suchbegriffe zur Wiederverwendung abspeichern"; $a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; $a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast"; @@ -332,6 +135,8 @@ $a->strings["Network New Tab"] = "Netzwerkreiter Neu"; $a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"; $a->strings["Affinity Tool"] = "Beziehungs-Tool"; $a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung"; +$a->strings["Connection Filtering"] = "Filter für Sammlungen"; +$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtert eingehende Beiträge anhand von Schlüsselwörtern."; $a->strings["Suggest Channels"] = "Kanäle vorschlagen"; $a->strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; $a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; @@ -339,6 +144,7 @@ $a->strings["Tagging"] = "Verschlagworten"; $a->strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten"; $a->strings["Post Categories"] = "Beitrags-Kategorien"; $a->strings["Add categories to your posts"] = "Kategorien für Beiträge"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; $a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; $a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge"; $a->strings["Ability to dislike posts/comments"] = "„Gefällt mir nicht“ ermöglichen"; @@ -346,9 +152,87 @@ $a->strings["Star Posts"] = "Beiträge mit Sternchen versehen"; $a->strings["Ability to mark special posts with a star indicator"] = "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"; $a->strings["Tag Cloud"] = "Schlagwort-Wolke"; $a->strings["Provide a personal tag cloud on your channel page"] = "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen"; -$a->strings["Logged out."] = "Ausgeloggt."; -$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -$a->strings["Login failed."] = "Login fehlgeschlagen."; +$a->strings["Default"] = "Standard"; +$a->strings["Delete this item?"] = "Dieses Element löschen?"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["[+] show all"] = "[+] Alle anzeigen"; +$a->strings["[-] show less"] = "[-] Weniger anzeigen"; +$a->strings["[+] expand"] = "[+] aufklappen"; +$a->strings["[-] collapse"] = "[-] einklappen"; +$a->strings["Password too short"] = "Kennwort zu kurz"; +$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; +$a->strings["everybody"] = "alle"; +$a->strings["Secret Passphrase"] = "geheime Passphrase"; +$a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; +$a->strings["close all"] = "Alle schließen"; +$a->strings["Nothing new here"] = "Nichts Neues hier"; +$a->strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; +$a->strings["Rating"] = "Bewertung"; +$a->strings["Describe (optional)"] = "Beschreibung (optional)"; +$a->strings["Submit"] = "Bestätigen"; +$a->strings["Please enter a link URL"] = "Gib eine URL ein:"; +$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = " "; +$a->strings["ago"] = "her"; +$a->strings["from now"] = "von jetzt"; +$a->strings["less than a minute"] = "weniger als eine Minute"; +$a->strings["about a minute"] = "ungefähr eine Minute"; +$a->strings["%d minutes"] = "%d Minuten"; +$a->strings["about an hour"] = "ungefähr eine Stunde"; +$a->strings["about %d hours"] = "ungefähr %d Stunden"; +$a->strings["a day"] = "ein Tag"; +$a->strings["%d days"] = "%d Tage"; +$a->strings["about a month"] = "ungefähr ein Monat"; +$a->strings["%d months"] = "%d Monate"; +$a->strings["about a year"] = "ungefähr ein Jahr"; +$a->strings["%d years"] = "%d Jahre"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["January"] = "Januar"; +$a->strings["February"] = "Februar"; +$a->strings["March"] = "März"; +$a->strings["April"] = "April"; +$a->strings["__ctx:long__ May"] = "Mai"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "Dezember"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mär"; +$a->strings["Apr"] = "Apr"; +$a->strings["__ctx:short__ May"] = "Mai"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Aug"; +$a->strings["Sep"] = "Sep"; +$a->strings["Oct"] = "Okt"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dez"; +$a->strings["Sunday"] = "Sonntag"; +$a->strings["Monday"] = "Montag"; +$a->strings["Tuesday"] = "Dienstag"; +$a->strings["Wednesday"] = "Mittwoch"; +$a->strings["Thursday"] = "Donnerstag"; +$a->strings["Friday"] = "Freitag"; +$a->strings["Saturday"] = "Samstag"; +$a->strings["Sun"] = "So"; +$a->strings["Mon"] = "Mp"; +$a->strings["Tue"] = "Di"; +$a->strings["Wed"] = "Mi"; +$a->strings["Thu"] = "Do"; +$a->strings["Fri"] = "Fr"; +$a->strings["Sat"] = "Sa"; +$a->strings["__ctx:calendar__ today"] = "heute"; +$a->strings["__ctx:calendar__ month"] = "Monat"; +$a->strings["__ctx:calendar__ week"] = "Woche"; +$a->strings["__ctx:calendar__ day"] = "Tag"; +$a->strings["__ctx:calendar__ All day"] = "Ganztägig"; $a->strings["Frequently"] = "Häufig"; $a->strings["Hourly"] = "Stündlich"; $a->strings["Twice daily"] = "Zwei Mal am Tag"; @@ -365,401 +249,26 @@ $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["MySpace"] = "MySpace"; -$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."] = "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen."; -$a->strings["Default privacy group for new contacts"] = "Standard-Sammlung für neue Kontakte"; -$a->strings["All Channels"] = "Alle Kanäle"; -$a->strings["edit"] = "Bearbeiten"; -$a->strings["Collections"] = "Sammlungen"; -$a->strings["Edit collection"] = "Sammlung bearbeiten"; -$a->strings["Create a new collection"] = "Neue Sammlung erzeugen"; -$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; -$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; -$a->strings["Empty name"] = "Namensfeld leer"; -$a->strings["Name too long"] = "Name ist zu lang"; -$a->strings["No account identifier"] = "Keine Account-Kennung"; -$a->strings["Nickname is required."] = "Spitzname ist erforderlich."; -$a->strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; -$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -$a->strings["Default Profile"] = "Standard-Profil"; -$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; -$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; -$a->strings["Change profile photo"] = "Profilfoto ändern"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/bearbeiten"; -$a->strings["Create New Profile"] = "Neues Profil erstellen"; -$a->strings["Edit Profile"] = "Profile bearbeiten"; -$a->strings["Profile Image"] = "Profilfoto:"; -$a->strings["visible to everybody"] = "sichtbar für jeden"; -$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["Location:"] = "Ort:"; -$a->strings["Gender:"] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Online Now"] = "gerade online"; -$a->strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[Heute]"; -$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:"; -$a->strings["[No description]"] = "[Keine Beschreibung]"; -$a->strings["Event Reminders"] = "Termin-Erinnerungen"; -$a->strings["Events this week:"] = "Termine in dieser Woche:"; -$a->strings["Profile"] = "Profil"; -$a->strings["Full Name:"] = "Voller Name:"; -$a->strings["Like this channel"] = "Dieser Kanal gefällt mir"; -$a->strings["j F, Y"] = "j. F Y"; -$a->strings["j F"] = "j. F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -$a->strings["Hometown:"] = "Heimatstadt:"; -$a->strings["Tags:"] = "Schlagworte:"; -$a->strings["Political Views:"] = "Politische Ansichten:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["About:"] = "Über:"; -$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; -$a->strings["Likes:"] = "Gefällt:"; -$a->strings["Dislikes:"] = "Gefällt nicht:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; -$a->strings["My other channels:"] = "Meine anderen Kanäle:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Bücher, Literatur:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebe/Romantik:"; -$a->strings["Work/employment:"] = "Arbeit/Anstellung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Like this thing"] = "Gefällt mir"; -$a->strings["No recipient provided."] = "Kein Empfänger angegeben"; -$a->strings["[no subject]"] = "[no subject]"; -$a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; -$a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; -$a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; -$a->strings["Channel location missing."] = "Adresse des Kanals fehlt."; -$a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; -$a->strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; -$a->strings["Protocol disabled."] = "Protokoll deaktiviert."; -$a->strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -$a->strings["local account not found."] = "Lokales Konto nicht gefunden."; -$a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -$a->strings["Default"] = "Standard"; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -$a->strings["Required"] = "Benötigt"; -$a->strings["never"] = "Nie"; -$a->strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -$a->strings["year"] = "Jahr"; -$a->strings["years"] = "Jahre"; -$a->strings["month"] = "Monat"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$a->strings["day"] = "Tag"; -$a->strings["days"] = "Tage"; -$a->strings["hour"] = "Stunde"; -$a->strings["hours"] = "Stunden"; -$a->strings["minute"] = "Minute"; -$a->strings["minutes"] = "Minuten"; -$a->strings["second"] = "Sekunde"; -$a->strings["seconds"] = "Sekunden"; -$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -$a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; -$a->strings["Attachments:"] = "Anhänge:"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; -$a->strings["Redmatrix event notification:"] = "RedMatrix Termin-Benachrichtigung:"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen"; -$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; -$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; -$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; -$a->strings["Room is full"] = "Der Raum ist voll"; -$a->strings["Logout"] = "Abmelden"; -$a->strings["End this session"] = "Beende diese Sitzung"; -$a->strings["Home"] = "Home"; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["View Profile"] = "Profil ansehen"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Edit Profiles"] = "Profile bearbeiten"; -$a->strings["Manage/Edit profiles"] = "Profile verwalten"; -$a->strings["Edit your profile"] = "Profil bearbeiten"; -$a->strings["Photos"] = "Fotos"; -$a->strings["Your photos"] = "Deine Bilder"; -$a->strings["Your files"] = "Deine Dateien"; -$a->strings["Chat"] = "Chat"; -$a->strings["Your chatrooms"] = "Deine Chaträume"; -$a->strings["Bookmarks"] = "Lesezeichen"; -$a->strings["Your bookmarks"] = "Deine Lesezeichen"; -$a->strings["Webpages"] = "Webseiten"; -$a->strings["Your webpages"] = "Deine Webseiten"; -$a->strings["Login"] = "Anmelden"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["%s - click to logout"] = "%s - Klick zum Abmelden"; -$a->strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; -$a->strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registrieren"; -$a->strings["Create an account"] = "Erzeuge ein Konto"; -$a->strings["Help"] = "Hilfe"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; -$a->strings["Search site content"] = "Durchsuche Seiten-Inhalt"; -$a->strings["Directory"] = "Verzeichnis"; -$a->strings["Channel Directory"] = "Kanal-Verzeichnis"; -$a->strings["Matrix"] = "Matrix"; -$a->strings["Your matrix"] = "Deine Matrix"; -$a->strings["Mark all matrix notifications seen"] = "Markiere alle Matrix-Benachrichtigungen als angesehen"; -$a->strings["Channel Home"] = "Mein Kanal"; -$a->strings["Channel home"] = "Mein Kanal"; -$a->strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -$a->strings["Connections"] = "Verbindungen"; -$a->strings["Notices"] = "Benachrichtigungen"; -$a->strings["Notifications"] = "Benachrichtigungen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; -$a->strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; -$a->strings["Mail"] = "Mail"; -$a->strings["Private mail"] = "Persönliche Mail"; -$a->strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; -$a->strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["Events"] = "Termine"; -$a->strings["Event Calendar"] = "Terminkalender"; -$a->strings["See all events"] = "Alle Termine ansehen"; -$a->strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; -$a->strings["Channel Manager"] = "Kanal-Manager"; -$a->strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -$a->strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -$a->strings["Admin"] = "Administration"; -$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -$a->strings["Loading..."] = "Lädt ..."; -$a->strings["@name, #tag, content"] = "@Name, #Schlagwort, Text"; -$a->strings["Please wait..."] = "Bitte warten..."; -$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."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; -$a->strings["Private Message"] = "Private Nachricht"; -$a->strings["Select"] = "Auswählen"; -$a->strings["Save to Folder"] = "In Ordner speichern"; -$a->strings["I will attend"] = "Ich werde teilnehmen"; -$a->strings["I will not attend"] = "Ich werde nicht teilnehmen"; -$a->strings["I might attend"] = "Ich werde vielleicht teilnehmen"; -$a->strings["I agree"] = "Ich stimme zu"; -$a->strings["I disagree"] = "Ich lehne ab"; -$a->strings["I abstain"] = "Ich enthalte mich"; -$a->strings["View all"] = "Alles anzeigen"; -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "Gefällt nicht", - 1 => "Gefällt nicht", -); -$a->strings["Add Star"] = "Stern hinzufügen"; -$a->strings["Remove Star"] = "Stern entfernen"; -$a->strings["Toggle Star Status"] = "Markierungsstatus (Stern) umschalten"; -$a->strings["starred"] = "markiert"; -$a->strings["Message signature validated"] = "Signatur überprüft"; -$a->strings["Message signature incorrect"] = "Signatur nicht korrekt"; -$a->strings["Add Tag"] = "Tag hinzufügen"; -$a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; -$a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; -$a->strings["Share This"] = "Teilen"; -$a->strings["share"] = "Teilen"; -$a->strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", -); -$a->strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s"; -$a->strings["to"] = "an"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings[" from %s"] = "von %s"; -$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s"; -$a->strings["Expires: %s"] = "Verfällt: %s"; -$a->strings["Save Bookmarks"] = "Favoriten speichern"; -$a->strings["Add to Calendar"] = "Zum Kalender hinzufügen"; -$a->strings["Mark all seen"] = "Alle als gelesen markieren"; -$a->strings["__ctx:noun__ Likes"] = "Gefällt mir"; -$a->strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; -$a->strings["Close"] = "Schließen"; -$a->strings["Please wait"] = "Bitte warten"; -$a->strings["This is you"] = "Das bist Du"; -$a->strings["Bold"] = "Fett"; -$a->strings["Italic"] = "Kursiv"; -$a->strings["Underline"] = "Unterstrichen"; -$a->strings["Quote"] = "Zitat"; -$a->strings["Code"] = "Code"; -$a->strings["Image"] = "Bild"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Encrypt text"] = "Text verschlüsseln"; $a->strings[" and "] = "und"; $a->strings["public profile"] = "öffentliches Profil"; $a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; $a->strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -$a->strings["Directory Options"] = "Verzeichnisoptionen"; -$a->strings["Alphabetic"] = "alphabetisch"; -$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; -$a->strings["Newest to Oldest"] = "Neueste zuerst"; -$a->strings["Oldest to Newest"] = "Älteste zuerst"; -$a->strings["Public Forums Only"] = "Nur öffentliche Foren"; -$a->strings["Sort"] = "Sortieren"; -$a->strings["Enable Safe Search"] = "Sichere Suche einschalten"; -$a->strings["Disable Safe Search"] = "Sichere Suche ausschalten"; -$a->strings["Safe Mode"] = "Sicherer Modus"; -$a->strings["Permission denied"] = "Keine Berechtigung"; -$a->strings["(Unknown)"] = "(Unbekannt)"; -$a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; -$a->strings["Visible to you only."] = "Nur für Dich sichtbar."; -$a->strings["Visible to anybody in this network."] = "Für jedes Mitglied der RedMatrix sichtbar."; -$a->strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; -$a->strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; -$a->strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; -$a->strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; -$a->strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; -$a->strings["Item not found."] = "Element nicht gefunden."; -$a->strings["Collection not found."] = "Sammlung nicht gefunden"; -$a->strings["Collection is empty."] = "Sammlung ist leer."; -$a->strings["Collection: %s"] = "Sammlung: %s"; -$a->strings["Connection: %s"] = "Verbindung: %s"; -$a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; -$a->strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +$a->strings["Connect"] = "Verbinden"; $a->strings["New window"] = "Neues Fenster"; $a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"; $a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; -$a->strings["view full size"] = "In Vollbildansicht anschauen"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["Install design element: "] = "Design-Element installieren:"; -$a->strings["QR code"] = "QR-Code"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -$a->strings["post"] = "Beitrag"; -$a->strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -$a->strings["$1 spoiler"] = "$1 Spoiler"; -$a->strings["$1 wrote:"] = "$1 schrieb:"; -$a->strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -$a->strings["Advanced"] = "Fortgeschritten"; -$a->strings["Find Channels"] = "Finde Kanäle"; -$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; -$a->strings["Find"] = "Finde"; -$a->strings["Channel Suggestions"] = "Kanal-Vorschläge"; -$a->strings["Random Profile"] = "Zufallsprofil"; -$a->strings["Invite Friends"] = "Lade Freunde ein"; -$a->strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; -$a->strings["%d connection in common"] = array( - 0 => "%d gemeinsame Verbindung", - 1 => "%d gemeinsame Verbindungen", -); -$a->strings["show more"] = "mehr zeigen"; -$a->strings["Visible to your default audience"] = "Standard-Sichtbarkeit"; -$a->strings["Show"] = "Anzeigen"; -$a->strings["Don't show"] = "Nicht anzeigen"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; -$a->strings["Invalid data packet"] = "Ungültiges Datenpaket"; -$a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; -$a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; -$a->strings["Male"] = "Männlich"; -$a->strings["Female"] = "Weiblich"; -$a->strings["Currently Male"] = "Momentan männlich"; -$a->strings["Currently Female"] = "Momentan weiblich"; -$a->strings["Mostly Male"] = "Größtenteils männlich"; -$a->strings["Mostly Female"] = "Größtenteils weiblich"; -$a->strings["Transgender"] = "Transsexuell"; -$a->strings["Intersex"] = "Zwischengeschlechtlich"; -$a->strings["Transsexual"] = "Transsexuell"; -$a->strings["Hermaphrodite"] = "Zwitter"; -$a->strings["Neuter"] = "Geschlechtslos"; -$a->strings["Non-specific"] = "unklar"; -$a->strings["Other"] = "Andere"; -$a->strings["Undecided"] = "Unentschieden"; -$a->strings["Males"] = "Männer"; -$a->strings["Females"] = "Frauen"; -$a->strings["Gay"] = "Schwul"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Keine Bevorzugung"; -$a->strings["Bisexual"] = "Bisexuell"; -$a->strings["Autosexual"] = "Autosexuell"; -$a->strings["Abstinent"] = "Enthaltsam"; -$a->strings["Virgin"] = "Jungfräulich"; -$a->strings["Deviant"] = "Abweichend"; -$a->strings["Fetish"] = "Fetisch"; -$a->strings["Oodles"] = "Unmengen"; -$a->strings["Nonsexual"] = "Sexlos"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Einsam"; -$a->strings["Available"] = "Verfügbar"; -$a->strings["Unavailable"] = "Nicht verfügbar"; -$a->strings["Has crush"] = "Verguckt"; -$a->strings["Infatuated"] = "Verknallt"; -$a->strings["Dating"] = "Lerne gerade jemanden kennen"; -$a->strings["Unfaithful"] = "Treulos"; -$a->strings["Sex Addict"] = "Sexabhängig"; -$a->strings["Friends/Benefits"] = "Freunde/Begünstigte"; -$a->strings["Casual"] = "Lose"; -$a->strings["Engaged"] = "Verlobt"; -$a->strings["Married"] = "Verheiratet"; -$a->strings["Imaginarily married"] = "Gewissermaßen verheiratet"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "Lebensgemeinschaft"; -$a->strings["Common law"] = "Informelle Ehe"; -$a->strings["Happy"] = "Glücklich"; -$a->strings["Not looking"] = "Nicht Ausschau haltend"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Betrogen"; -$a->strings["Separated"] = "Getrennt"; -$a->strings["Unstable"] = "Labil"; -$a->strings["Divorced"] = "Geschieden"; -$a->strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; -$a->strings["Widowed"] = "Verwitwet"; -$a->strings["Uncertain"] = "Ungewiss"; -$a->strings["It's complicated"] = "Es ist kompliziert"; -$a->strings["Don't care"] = "Interessiert mich nicht"; -$a->strings["Ask me"] = "Frag mich mal"; -$a->strings["Site Admin"] = "Hub-Administration"; -$a->strings["Address Book"] = "Adressbuch"; -$a->strings["Mood"] = "Laune"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["Probe"] = "Testen"; -$a->strings["Suggest"] = "Empfehlen"; -$a->strings["Random Channel"] = "Zufälliger Kanal"; -$a->strings["Invite"] = "Einladen"; -$a->strings["Features"] = "Funktionen"; -$a->strings["Language"] = "Sprache"; -$a->strings["Post"] = "Beitrag"; -$a->strings["Profile Photo"] = "Profilfoto"; -$a->strings["Update"] = "Aktualisieren"; -$a->strings["Install"] = "Installieren"; -$a->strings["Purchase"] = "Kaufen"; -$a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; -$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt"; -$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; -$a->strings["An invitation is required."] = "Eine Einladung wird benötigt"; -$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden"; -$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; -$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen"; -$a->strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; -$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -$a->strings["Administrator"] = "Administrator"; -$a->strings["your registration password"] = "Dein Registrierungspasswort"; -$a->strings["Registration details for %s"] = "Registrierungsdetails für %s"; -$a->strings["Account approved."] = "Account bestätigt."; -$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen"; -$a->strings["Account verified. Please login."] = "Konto geprüft. Bitte melde Dich an!"; -$a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; +$a->strings["photo"] = "Foto"; +$a->strings["event"] = "Termin"; $a->strings["channel"] = "Kanal"; +$a->strings["status"] = "Status"; +$a->strings["comment"] = "Kommentar"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; $a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; $a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +$a->strings["poked"] = "stupste"; $a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; $a->strings["__ctx:title__ Likes"] = "Gefällt mir"; $a->strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; @@ -769,19 +278,30 @@ $a->strings["__ctx:title__ Abstain"] = "Enthaltungen"; $a->strings["__ctx:title__ Attending"] = "Zusagen"; $a->strings["__ctx:title__ Not attending"] = "Absagen"; $a->strings["__ctx:title__ Might attend"] = "Vielleicht"; +$a->strings["Select"] = "Auswählen"; +$a->strings["Private Message"] = "Private Nachricht"; +$a->strings["Message signature validated"] = "Signatur überprüft"; +$a->strings["Message signature incorrect"] = "Signatur nicht korrekt"; $a->strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; $a->strings["Categories:"] = "Kategorien:"; $a->strings["Filed under:"] = "Gespeichert unter:"; +$a->strings["from %s"] = "via %s"; +$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s"; +$a->strings["Expires: %s"] = "Verfällt: %s"; $a->strings["View in context"] = "Im Zusammenhang anschauen"; +$a->strings["Please wait"] = "Bitte warten"; $a->strings["remove"] = "lösche"; +$a->strings["Loading..."] = "Lädt ..."; $a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; $a->strings["View Source"] = "Quelle anzeigen"; $a->strings["Follow Thread"] = "Unterhaltung folgen"; $a->strings["View Status"] = "Status ansehen"; +$a->strings["View Profile"] = "Profil ansehen"; $a->strings["View Photos"] = "Fotos ansehen"; -$a->strings["Matrix Activity"] = "Matrix-Aktivität"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Activity/Posts"] = "Aktivitäten/Beiträge"; +$a->strings["Edit Connection"] = "Verbindung bearbeiten"; $a->strings["Send PM"] = "Sende PN"; +$a->strings["Poke"] = "Anstupsen"; $a->strings["%s likes this."] = "%s gefällt das."; $a->strings["%s doesn't like this."] = "%s gefällt das nicht."; $a->strings["%2\$d people like this."] = array( @@ -807,9 +327,15 @@ $a->strings["Tag term:"] = "Schlagwort:"; $a->strings["Save to Folder:"] = "Speichern in Ordner:"; $a->strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; $a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; +$a->strings["Preview"] = "Vorschau"; $a->strings["Share"] = "Teilen"; -$a->strings["Page link title"] = "Seitentitel-Link"; +$a->strings["Page link name"] = "Link zur Seite"; $a->strings["Post as"] = "Veröffentlichen als"; +$a->strings["Bold"] = "Fett"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Unterstrichen"; +$a->strings["Quote"] = "Zitat"; +$a->strings["Code"] = "Code"; $a->strings["Upload photo"] = "Foto hochladen"; $a->strings["upload photo"] = "Foto hochladen"; $a->strings["Attach file"] = "Datei anhängen"; @@ -832,6 +358,7 @@ $a->strings["permissions"] = "Berechtigungen"; $a->strings["Public post"] = "Öffentlicher Beitrag"; $a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com"; $a->strings["Set expiration date"] = "Verfallsdatum"; +$a->strings["Encrypt text"] = "Text verschlüsseln"; $a->strings["OK"] = "Ok"; $a->strings["Cancel"] = "Abbrechen"; $a->strings["Discover"] = "Entdecken"; @@ -840,6 +367,7 @@ $a->strings["Commented Order"] = "Neueste Kommentare"; $a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; $a->strings["Posted Order"] = "Neueste Beiträge"; $a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; +$a->strings["Personal"] = "Persönlich"; $a->strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; $a->strings["New"] = "Neu"; $a->strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; @@ -851,10 +379,23 @@ $a->strings["Channel"] = "Kanal"; $a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; $a->strings["About"] = "Über"; $a->strings["Profile Details"] = "Profil-Details"; +$a->strings["Photos"] = "Fotos"; +$a->strings["Photo Albums"] = "Fotoalben"; $a->strings["Files and Storage"] = "Dateien und Speicher"; $a->strings["Chatrooms"] = "Chaträume"; +$a->strings["Bookmarks"] = "Lesezeichen"; $a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +$a->strings["Webpages"] = "Webseiten"; $a->strings["Manage Webpages"] = "Webseiten verwalten"; +$a->strings["View all"] = "Alles anzeigen"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "Gefällt mir", + 1 => "Gefällt mir", +); +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "Gefällt nicht", + 1 => "Gefällt nicht", +); $a->strings["__ctx:noun__ Attending"] = array( 0 => "Zusage", 1 => "Zusagen", @@ -879,774 +420,570 @@ $a->strings["__ctx:noun__ Abstain"] = array( 0 => "Enthaltung", 1 => "Enthaltungen", ); +$a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes"; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; +$a->strings["Photo storage failed."] = "Foto speichern schlug fehl"; +$a->strings["Upload New Photos"] = "Lade neue Fotos hoch"; +$a->strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung"; +$a->strings["\$projectname"] = "\$projectname"; +$a->strings["Thank You,"] = "Danke."; +$a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Benachrichtigung] Neue Mail auf %s empfangen"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; +$a->strings["a private message"] = "eine private Nachricht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]einen %4\$s[/zrl] kommentiert"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf Deine Pinnwand auf %3\$s geschrieben"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]Deine Pinnwand[/zrl] geschrieben"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Benachrichtigung] %s hat Dich erwähnt"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Benachrichtigung] %1\$s hat Dich angestupst"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Benachrichtigung] Vorstellung erhalten"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, Du hast eine neue Verbindungsanfrage von '%2\$s' auf %3\$s erhalten"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, Du hast [zrl=%2\$s]eine neue Verbindungsanfrage[/zrl] von %3\$s erhalten."; +$a->strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten."; +$a->strings["Name:"] = "Name:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; +$a->strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; +$a->strings["view full size"] = "In Vollbildansicht anschauen"; +$a->strings["Administrator"] = "Administrator"; +$a->strings["No Subject"] = "Kein Betreff"; +$a->strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +$a->strings["prev"] = "vorherige"; +$a->strings["first"] = "erste"; +$a->strings["last"] = "letzte"; +$a->strings["next"] = "nächste"; +$a->strings["older"] = "älter"; +$a->strings["newer"] = "neuer"; +$a->strings["No connections"] = "Keine Verbindungen"; +$a->strings["%d Connection"] = array( + 0 => "%d Verbindung", + 1 => "%d Verbindungen", +); +$a->strings["View Connections"] = "Verbindungen anzeigen"; +$a->strings["Search"] = "Suche"; +$a->strings["Save"] = "Speichern"; +$a->strings["poke"] = "anstupsen"; +$a->strings["ping"] = "anpingen"; +$a->strings["pinged"] = "pingte"; +$a->strings["prod"] = "knuffen"; +$a->strings["prodded"] = "knuffte"; +$a->strings["slap"] = "ohrfeigen"; +$a->strings["slapped"] = "ohrfeigte"; +$a->strings["finger"] = "befummeln"; +$a->strings["fingered"] = "befummelte"; +$a->strings["rebuff"] = "eine Abfuhr erteilen"; +$a->strings["rebuffed"] = "zurückgewiesen"; +$a->strings["happy"] = "glücklich"; +$a->strings["sad"] = "traurig"; +$a->strings["mellow"] = "sanft"; +$a->strings["tired"] = "müde"; +$a->strings["perky"] = "frech"; +$a->strings["angry"] = "sauer"; +$a->strings["stupified"] = "verblüfft"; +$a->strings["puzzled"] = "verwirrt"; +$a->strings["interested"] = "interessiert"; +$a->strings["bitter"] = "verbittert"; +$a->strings["cheerful"] = "fröhlich"; +$a->strings["alive"] = "lebendig"; +$a->strings["annoyed"] = "verärgert"; +$a->strings["anxious"] = "unruhig"; +$a->strings["cranky"] = "schrullig"; +$a->strings["disturbed"] = "verstört"; +$a->strings["frustrated"] = "frustriert"; +$a->strings["depressed"] = "deprimiert"; +$a->strings["motivated"] = "motiviert"; +$a->strings["relaxed"] = "entspannt"; +$a->strings["surprised"] = "überrascht"; +$a->strings["May"] = "Mai"; +$a->strings["unknown.???"] = "unbekannt.???"; +$a->strings["bytes"] = "Bytes"; +$a->strings["remove category"] = "Kategorie entfernen"; +$a->strings["remove from file"] = "aus der Datei entfernen"; +$a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; +$a->strings["Link to Source"] = "Link zur Quelle"; +$a->strings["default"] = "Standard"; +$a->strings["Page layout"] = "Seiten-Layout"; +$a->strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen"; +$a->strings["Page content type"] = "Art des Seiteninhalts"; +$a->strings["Select an alternate language"] = "Wähle eine alternative Sprache"; +$a->strings["activity"] = "Aktivität"; +$a->strings["Design Tools"] = "Gestaltungswerkzeuge"; +$a->strings["Blocks"] = "Blöcke"; +$a->strings["Menus"] = "Menüs"; +$a->strings["Layouts"] = "Layouts"; +$a->strings["Pages"] = "Seiten"; +$a->strings["Visible to your default audience"] = "Standard-Sichtbarkeit"; +$a->strings["Show"] = "Anzeigen"; +$a->strings["Don't show"] = "Nicht anzeigen"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Close"] = "Schließen"; +$a->strings["Item was not found."] = "Beitrag wurde nicht gefunden."; +$a->strings["No source file."] = "Keine Quelldatei."; +$a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; +$a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; +$a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; +$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; +$a->strings["Path not available."] = "Pfad nicht verfügbar."; +$a->strings["Empty pathname"] = "Leere Pfadangabe"; +$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; +$a->strings["Path not found."] = "Pfad nicht gefunden."; +$a->strings["mkdir failed."] = "mkdir fehlgeschlagen."; +$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; +$a->strings["Empty path"] = "Leere Pfadangabe"; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; +$a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; +$a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; +$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; +$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +$a->strings["New Page"] = "Neue Seite"; +$a->strings["View"] = "Ansicht"; +$a->strings["Actions"] = "Aktionen"; +$a->strings["Page Link"] = "Seiten-Link"; +$a->strings["Title"] = "Titel"; +$a->strings["Created"] = "Erstellt"; +$a->strings["Edited"] = "Geändert"; +$a->strings["Profile Photos"] = "Profilfotos"; +$a->strings["Male"] = "Männlich"; +$a->strings["Female"] = "Weiblich"; +$a->strings["Currently Male"] = "Momentan männlich"; +$a->strings["Currently Female"] = "Momentan weiblich"; +$a->strings["Mostly Male"] = "Größtenteils männlich"; +$a->strings["Mostly Female"] = "Größtenteils weiblich"; +$a->strings["Transgender"] = "Transsexuell"; +$a->strings["Intersex"] = "Zwischengeschlechtlich"; +$a->strings["Transsexual"] = "Transsexuell"; +$a->strings["Hermaphrodite"] = "Zwitter"; +$a->strings["Neuter"] = "Geschlechtslos"; +$a->strings["Non-specific"] = "unklar"; +$a->strings["Undecided"] = "Unentschieden"; +$a->strings["Males"] = "Männer"; +$a->strings["Females"] = "Frauen"; +$a->strings["Gay"] = "Schwul"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Keine Bevorzugung"; +$a->strings["Bisexual"] = "Bisexuell"; +$a->strings["Autosexual"] = "Autosexuell"; +$a->strings["Abstinent"] = "Enthaltsam"; +$a->strings["Virgin"] = "Jungfräulich"; +$a->strings["Deviant"] = "Abweichend"; +$a->strings["Fetish"] = "Fetisch"; +$a->strings["Oodles"] = "Unmengen"; +$a->strings["Nonsexual"] = "Sexlos"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Einsam"; +$a->strings["Available"] = "Verfügbar"; +$a->strings["Unavailable"] = "Nicht verfügbar"; +$a->strings["Has crush"] = "Verguckt"; +$a->strings["Infatuated"] = "Verknallt"; +$a->strings["Dating"] = "Lerne gerade jemanden kennen"; +$a->strings["Unfaithful"] = "Treulos"; +$a->strings["Sex Addict"] = "Sexabhängig"; +$a->strings["Friends"] = "Freunde"; +$a->strings["Friends/Benefits"] = "Freunde/Begünstigte"; +$a->strings["Casual"] = "Lose"; +$a->strings["Engaged"] = "Verlobt"; +$a->strings["Married"] = "Verheiratet"; +$a->strings["Imaginarily married"] = "Gewissermaßen verheiratet"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "Lebensgemeinschaft"; +$a->strings["Common law"] = "Informelle Ehe"; +$a->strings["Happy"] = "Glücklich"; +$a->strings["Not looking"] = "Nicht Ausschau haltend"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrogen"; +$a->strings["Separated"] = "Getrennt"; +$a->strings["Unstable"] = "Labil"; +$a->strings["Divorced"] = "Geschieden"; +$a->strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; +$a->strings["Widowed"] = "Verwitwet"; +$a->strings["Uncertain"] = "Ungewiss"; +$a->strings["It's complicated"] = "Es ist kompliziert"; +$a->strings["Don't care"] = "Interessiert mich nicht"; +$a->strings["Ask me"] = "Frag mich mal"; $a->strings["Embedded content"] = "Eingebetteter Inhalt"; $a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -$a->strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; -$a->strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; -$a->strings["Can view my photo albums"] = "Kann meine Fotoalben betrachten"; -$a->strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -$a->strings["Can view my file storage"] = "Kann meine Dateiordner lesen"; -$a->strings["Can view my webpages"] = "Kann meine Webseiten sehen"; -$a->strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -$a->strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; -$a->strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; -$a->strings["Can post photos to my photo albums"] = "Kann Fotos in meinen Fotoalben veröffentlichen"; -$a->strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; -$a->strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; -$a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; -$a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; -$a->strings["Can write to my file storage"] = "Kann in meine Dateiordner schreiben"; -$a->strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; -$a->strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; -$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; -$a->strings["Social Networking"] = "Soziales Netzwerk"; -$a->strings["Mostly Public"] = "Weitgehend öffentlich"; -$a->strings["Restricted"] = "Beschränkt"; -$a->strings["Private"] = "Privat"; -$a->strings["Community Forum"] = "Forum"; -$a->strings["Feed Republish"] = "Teilen von Feeds"; -$a->strings["Special Purpose"] = "Für besondere Zwecke"; -$a->strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; -$a->strings["Group Repository"] = "Gruppenarchiv"; -$a->strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; -$a->strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; -$a->strings["Item not found"] = "Element nicht gefunden"; -$a->strings["Edit Block"] = "Block bearbeiten"; -$a->strings["Delete block?"] = "Block löschen?"; -$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; -$a->strings["Delete Block"] = "Block löschen"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; -$a->strings["Create a new channel"] = "Neuen Kanal anlegen"; -$a->strings["Current Channel"] = "Aktueller Kanal"; -$a->strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; -$a->strings["Default Channel"] = "Standard Kanal"; -$a->strings["Make Default"] = "Zum Standard machen"; -$a->strings["%d new messages"] = "%d neue Nachrichten"; -$a->strings["%d new introductions"] = "%d neue Vorstellungen"; -$a->strings["Xchan Lookup"] = "Xchan-Suche"; -$a->strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; -$a->strings["Not found."] = "Nicht gefunden."; -$a->strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; -$a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nein"; -$a->strings["Block Name"] = "Block-Name"; -$a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; -$a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; -$a->strings["Connection updated."] = "Verbindung aktualisiert."; -$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; -$a->strings["is now connected to"] = "ist jetzt verbunden mit"; -$a->strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; -$a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert"; -$a->strings["Channel has been blocked"] = "Kanal blockiert"; -$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; -$a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert"; -$a->strings["Channel has been ignored"] = "Kanal wird ignoriert"; -$a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt"; -$a->strings["Channel has been archived"] = "Kanal wurde archiviert"; -$a->strings["Channel has been unhidden"] = "Kanal wird nicht mehr versteckt"; -$a->strings["Channel has been hidden"] = "Kanal wurde versteckt"; -$a->strings["Channel has been approved"] = "Kanal wurde zugelassen"; -$a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt"; -$a->strings["Connection has been removed."] = "Verbindung wurde gelöscht."; -$a->strings["View %s's profile"] = "%ss Profil ansehen"; -$a->strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; -$a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; -$a->strings["Recent Activity"] = "Kürzliche Aktivitäten"; -$a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; -$a->strings["Unblock"] = "Freigeben"; -$a->strings["Block"] = "Blockieren"; -$a->strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; -$a->strings["Unignore"] = "Nicht ignorieren"; -$a->strings["Ignore"] = "Ignorieren"; -$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; -$a->strings["Unhide"] = "Wieder sichtbar machen"; -$a->strings["Hide"] = "Verstecken"; -$a->strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; -$a->strings["Delete this connection"] = "Verbindung löschen"; -$a->strings["Approve this connection"] = "Verbindung genehmigen"; -$a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; -$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s"; -$a->strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; -$a->strings["Apply the permissions indicated on this page to all new connections."] = "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verbindungen an."; -$a->strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; -$a->strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; -$a->strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; -$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert. Bitte sieh Dir die Zugriffsrechte auf dieser Seite an und ändere sie, wenn Du willst. Dieser Kontakt kann evtl. nicht mit Dir kommunizieren, bevor Du nicht auf dieser Seite auf „Senden“ geklickt hast – erst dieser Klick speichert die gewünschten Zugriffsrechte."; -$a->strings["inherited"] = "geerbt"; -$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffsrechte!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen."; -$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; -$a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen"; -$a->strings["Edit contact notes"] = "Kontaktnotizen bearbeiten"; -$a->strings["Their Settings"] = "Deren Einstellungen"; -$a->strings["My Settings"] = "Meine Einstellungen"; -$a->strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert, und Du hast keine Voreinstellungen für die Zugriffsrechte von Verbindungen angelegt. Bitte sieht Dir die Einstellungen an, ändere sie bei Bedarf und klicke [Senden], um den Vorgang abzuschließen."; -$a->strings["Clear/Disable Automatic Permissions"] = "Automatische Berechtigungen abschalten/entfernen"; -$a->strings["Forum Members"] = "Forum Mitglieder"; -$a->strings["Soapbox"] = "Marktschreier"; -$a->strings["Full Sharing (typical social network permissions)"] = "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)"; -$a->strings["Cautious Sharing "] = "Vorsichtiges Teilen"; -$a->strings["Follow Only"] = "Nur folgen"; -$a->strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; -$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Einige Berechtigungen werden von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen."; -$a->strings["Advanced Permissions"] = "Zugriffsrechte für Fortgeschrittene"; -$a->strings["Simple Permissions (select one and submit)"] = "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)"; -$a->strings["Visit %s's profile - %s"] = "%ss Profil besuchen - %s"; -$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freigeben"; -$a->strings["Ignore contact"] = "Kontakt ignorieren"; -$a->strings["Repair URL settings"] = "URL-Einstellungen reparieren"; -$a->strings["View conversations"] = "Unterhaltungen anzeigen"; -$a->strings["Delete contact"] = "Kontakt löschen"; -$a->strings["Last update:"] = "Letzte Aktualisierung:"; -$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; -$a->strings["Update now"] = "Jetzt aktualisieren"; -$a->strings["Currently blocked"] = "Derzeit blockiert"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Derzeit archiviert"; -$a->strings["Currently pending"] = "Derzeit anstehend"; -$a->strings["Red Matrix - "The Network""] = "RedMatrix – "Das Netzwerk""; -$a->strings["Welcome to %s"] = "Willkommen auf %s"; -$a->strings["Continue"] = "Fortfahren"; -$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; -$a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; -$a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; -$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -$a->strings["Edit post"] = "Bearbeite Beitrag"; -$a->strings["Delete item?"] = "Eintrag löschen?"; -$a->strings["Item not available."] = "Element nicht verfügbar."; -$a->strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -$a->strings["RedMatrix channel"] = "RedMatrix-Kanal"; -$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; -$a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; -$a->strings["Image exceeds size limit of %d"] = "Bild ist größer als das Limit von %d"; -$a->strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; -$a->strings["Photo not available."] = "Foto nicht verfügbar."; -$a->strings["Upload File:"] = "Datei hochladen:"; -$a->strings["Select a profile:"] = "Wähle ein Profil:"; -$a->strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -$a->strings["or"] = "oder"; -$a->strings["skip this step"] = "diesen Schritt überspringen"; -$a->strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; -$a->strings["Crop Image"] = "Bild zuschneiden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; -$a->strings["Done Editing"] = "Bearbeitung fertigstellen"; -$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -$a->strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; -$a->strings["Image size reduction [%s] failed."] = "Reduzierung der Bildgröße [%s] fehlgeschlagen."; -$a->strings["Invalid item."] = "Ungültiges Element."; -$a->strings["Channel not found."] = "Kanal nicht gefunden."; -$a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["No such group"] = "Sammlung nicht gefunden"; -$a->strings["Search Results For:"] = "Suchergebnisse für:"; -$a->strings["Collection is empty"] = "Sammlung ist leer"; -$a->strings["Collection: "] = "Sammlung:"; -$a->strings["Connection: "] = "Verbindung:"; -$a->strings["Invalid connection."] = "Ungültige Verbindung."; -$a->strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; -$a->strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; -$a->strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; -$a->strings["Event not found."] = "Termin nicht gefunden."; -$a->strings["l, F j"] = "l, j. F"; -$a->strings["Edit event"] = "Termin bearbeiten"; -$a->strings["Delete event"] = "Termin löschen"; -$a->strings["Create New Event"] = "Neuen Termin erstellen"; -$a->strings["Previous"] = "Voriges"; -$a->strings["Next"] = "Nächste"; -$a->strings["Export"] = "Exportieren"; -$a->strings["Event removed"] = "Termin gelöscht"; -$a->strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; -$a->strings["Event details"] = "Termin-Details"; -$a->strings["Starting date and Title are required."] = "Startdatum und Titel sind erforderlich."; -$a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; -$a->strings["Event Starts:"] = "Termin beginnt:"; -$a->strings["Finish date/time is not known or not relevant"] = "Ende Datum/Zeit sind unbekannt oder unwichtig"; -$a->strings["Event Finishes:"] = "Termin endet:"; -$a->strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; -$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; -$a->strings["Description:"] = "Beschreibung:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Den Termin teilen"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; -$a->strings["Public Sites"] = "Öffentliche Server"; -$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen."; -$a->strings["Rate this hub"] = "Bewerte diesen Hub"; -$a->strings["Site URL"] = "Server-URL"; -$a->strings["Access Type"] = "Zugangstyp"; -$a->strings["Registration Policy"] = "Registrierungsrichtlinien"; -$a->strings["Location"] = "Ort"; -$a->strings["View hub ratings"] = "Bewertungen dieses Hubs ansehen"; -$a->strings["Rate"] = "Bewerten"; -$a->strings["View ratings"] = "Bewertungen ansehen"; -$a->strings["Name is required"] = "Name ist erforderlich"; -$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; -$a->strings["Diaspora Policy Settings updated."] = "Diaspora-Einstellungen aktualisiert."; -$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; -$a->strings["Password changed."] = "Kennwort geändert."; -$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; -$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse."; -$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."; -$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; -$a->strings["Settings updated."] = "Einstellungen aktualisiert."; -$a->strings["Add application"] = "Anwendung hinzufügen"; -$a->strings["Name of application"] = "Name der Anwendung"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Umleitung"; -$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; -$a->strings["Icon url"] = "Symbol-URL"; -$a->strings["Optional"] = "Optional"; -$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden."; -$a->strings["Connected Apps"] = "Verbundene Apps"; -$a->strings["Client key starts with"] = "Client Key beginnt mit"; -$a->strings["No name"] = "Kein Name"; -$a->strings["Remove authorization"] = "Authorisierung aufheben"; -$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; -$a->strings["Feature Settings"] = "Funktions-Einstellungen"; -$a->strings["Diaspora Policy Settings"] = "Diaspora-Einstellungen"; -$a->strings["Allow any Diaspora member to comment on your public posts."] = "Allen Diaspora-Mitgliedern erlauben, Deine öffentlichen Beiträge zu kommentieren."; -$a->strings["Submit Diaspora Policy Settings"] = "Diaspora-Einstellungen speichern"; -$a->strings["Account Settings"] = "Konto-Einstellungen"; -$a->strings["Password Settings"] = "Kennwort-Einstellungen"; -$a->strings["New Password:"] = "Neues Passwort:"; -$a->strings["Confirm:"] = "Bestätigen:"; -$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; -$a->strings["Email Address:"] = "Email Adresse:"; -$a->strings["Remove Account"] = "Konto entfernen"; -$a->strings["Remove this account from this server including all its channels"] = "Lösche dieses Konto einschließlich aller zugehörigen Kanäle von diesem Server"; -$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden."; -$a->strings["Off"] = "Aus"; -$a->strings["On"] = "An"; -$a->strings["Additional Features"] = "Zusätzliche Funktionen"; -$a->strings["Connector Settings"] = "Connector-Einstellungen"; -$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; -$a->strings["%s - (Experimental)"] = "%s – (experimentell)"; -$a->strings["mobile"] = "mobil"; -$a->strings["Display Settings"] = "Anzeige-Einstellungen"; -$a->strings["Display Theme:"] = "Anzeige-Theme:"; -$a->strings["Mobile Theme:"] = "Mobile Theme:"; -$a->strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; -$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; -$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; -$a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; -$a->strings["Don't show emoticons"] = "Emoticons nicht anzeigen"; -$a->strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; -$a->strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; -$a->strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; -$a->strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; -$a->strings["Use blog/list mode on matrix page"] = "Blog-/Listenmodus auf der Matrixseite verwenden"; -$a->strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; -$a->strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; -$a->strings["Matrix page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)"; -$a->strings["Nobody except yourself"] = "Niemand außer Dir selbst"; -$a->strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst"; -$a->strings["Approved connections"] = "Angenommene Verbindungen"; -$a->strings["Any connections"] = "Beliebige Verbindungen"; -$a->strings["Anybody on this website"] = "Jeder auf dieser Website"; -$a->strings["Anybody in this network"] = "Alle Red-Nutzer"; -$a->strings["Anybody authenticated"] = "Jeder authentifizierte"; -$a->strings["Anybody on the internet"] = "Jeder im Internet"; -$a->strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; -$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet"; -$a->strings["Channel Settings"] = "Kanal-Einstellungen"; -$a->strings["Basic Settings"] = "Grundeinstellungen"; -$a->strings["Your Timezone:"] = "Ihre Zeitzone:"; -$a->strings["Default Post Location:"] = "Standardstandort:"; -$a->strings["Geographical location to display on your posts"] = "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll"; -$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; -$a->strings["Adult Content"] = "Nicht jugendfreie Inhalte"; -$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"; -$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen"; -$a->strings["Your permissions are already configured. Click to view/adjust"] = "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern"; -$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen"; -$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil"; -$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen"; -$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)"; -$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)"; -$a->strings["Private - default private, never open or public"] = "Privat – Standard privat, nie offen oder öffentlich"; -$a->strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle standardmäßig blockiert"; -$a->strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten"; -$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren"; -$a->strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen"; -$a->strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen"; -$a->strings["0 or blank prevents expiration"] = "0 oder kein Inhalt verhindern das Verfallen"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; -$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; -$a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte"; -$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; -$a->strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; -$a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; -$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen"; -$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:"; -$a->strings["accepting a friend request"] = "Du eine Verbindungsanfrage annimmst"; -$a->strings["joining a forum/community"] = "Du einem Forum beitrittst"; -$a->strings["making an interesting profile change"] = "Du eine interessante Änderung an Deinem Profil vornimmst"; -$a->strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:"; -$a->strings["You receive a connection request"] = "Du eine Verbindungsanfrage erhältst"; -$a->strings["Your connections are confirmed"] = "Eine Verbindung bestätigt wurde"; -$a->strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt"; -$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert"; -$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst"; -$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst"; -$a->strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest"; -$a->strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"; -$a->strings["Show visual notifications including:"] = "Visuelle Benachrichtigungen anzeigen für:"; -$a->strings["Unseen matrix activity"] = "Ungesehene Matrix-Aktivität"; -$a->strings["Unseen channel activity"] = "Ungesehene Kanal-Aktivität"; -$a->strings["Unseen private messages"] = "Ungelesene persönliche Nachrichten"; -$a->strings["Recommended"] = "Empfohlen"; -$a->strings["Upcoming events"] = "Baldige Termine"; -$a->strings["Events today"] = "Heutige Termine"; -$a->strings["Upcoming birthdays"] = "Baldige Geburtstage"; -$a->strings["Not available in all themes"] = "Nicht in allen Themes verfügbar"; -$a->strings["System (personal) notifications"] = "System – (persönliche) Benachrichtigungen"; -$a->strings["System info messages"] = "System – Info-Nachrichten"; -$a->strings["System critical alerts"] = "System – kritische Warnungen"; -$a->strings["New connections"] = "Neue Verbindungen"; -$a->strings["System Registrations"] = "System – Registrierungen"; -$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an"; -$a->strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus"; -$a->strings["Must be greater than 0"] = "Muss größer als 0 sein"; -$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen"; -$a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen"; -$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!"; -$a->strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; -$a->strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals"; -$a->strings["Remove this channel"] = "Diesen Kanal löschen"; -$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++"; -$a->strings["Tag removed"] = "Schlagwort entfernt"; -$a->strings["Remove Item Tag"] = "Schlagwort entfernen"; -$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -$a->strings["Remove"] = "Entferne"; -$a->strings["Collection created."] = "Sammlung erstellt."; -$a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; -$a->strings["Collection updated."] = "Sammlung aktualisiert."; -$a->strings["Create a collection of channels."] = "Erstelle eine Sammlung von Kanälen."; -$a->strings["Collection Name: "] = "Name der Sammlung:"; -$a->strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; -$a->strings["Collection removed."] = "Sammlung gelöscht."; -$a->strings["Unable to remove collection."] = "Löschen der Sammlung nicht möglich."; -$a->strings["Collection Editor"] = "Sammlung-Editor"; -$a->strings["Members"] = "Mitglieder"; -$a->strings["All Connected Channels"] = "Alle verbundenen Kanäle"; -$a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; -$a->strings["Version %s"] = "Version %s"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; -$a->strings["Tag: "] = "Schlagwort: "; -$a->strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; -$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -$a->strings["Please visit RedMatrix.me to learn more about the Red Matrix."] = "Bitte besuchen Sie RedMatrix.me, um mehr über RedMatrix zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; -$a->strings["Site Administrators"] = "Administratoren"; -$a->strings["Help:"] = "Hilfe:"; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation"; -$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; -$a->strings["Could not create table."] = "Kann Tabelle nicht erstellen."; -$a->strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; -$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; -$a->strings["System check"] = "Systemprüfung"; -$a->strings["Check again"] = "Bitte nochmal prüfen"; -$a->strings["Database connection"] = "Datenbank Verbindung"; -$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; -$a->strings["Database Server Name"] = "Datenbank-Servername"; -$a->strings["Default is localhost"] = "Standard ist localhost"; -$a->strings["Database Port"] = "Datenbank-Port"; -$a->strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; -$a->strings["Database Login Name"] = "Datenbank-Benutzername"; -$a->strings["Database Login Password"] = "Datenbank-Kennwort"; -$a->strings["Database Name"] = "Datenbank-Name"; -$a->strings["Database Type"] = "Datenbanktyp"; -$a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; -$a->strings["Website URL"] = "Server-URL"; -$a->strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; -$a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; -$a->strings["Site settings"] = "Seiteneinstellungen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; -$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."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; -$a->strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; -$a->strings["Command line PHP"] = "PHP Befehlszeile"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; -$a->strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; -$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"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; -$a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; -$a->strings["libCurl PHP module"] = "libCurl-PHP-Modul"; -$a->strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; -$a->strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; -$a->strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; -$a->strings["mb_string PHP module"] = "mb_string-PHP-Modul"; -$a->strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; -$a->strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; -$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"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; -$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; -$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."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; -$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."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; -$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."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; -$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."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; -$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."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; -$a->strings["%s is writable"] = "%s ist beschreibbar"; -$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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; -$a->strings["store is writable"] = "store ist schreibbar"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; -$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!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; -$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."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; -$a->strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; -$a->strings["Url rewrite is working"] = "Url rewrite funktioniert"; -$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."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; -$a->strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; -$a->strings["

What next

"] = "

Was als Nächstes

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; -$a->strings["No channel."] = "Kein Kanal."; -$a->strings["Common connections"] = "Gemeinsame Verbindungen"; -$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; -$a->strings["Blocked"] = "Blockiert"; -$a->strings["Ignored"] = "Ignoriert"; -$a->strings["Hidden"] = "Versteckt"; -$a->strings["Archived"] = "Archiviert"; -$a->strings["All"] = "Alle"; -$a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen"; -$a->strings["New Connections"] = "Neue Verbindungen"; -$a->strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; -$a->strings["All Connections"] = "Alle Verbindungen"; -$a->strings["Show all connections"] = "Alle Verbindungen anzeigen"; -$a->strings["Unblocked"] = "Freigegeben"; -$a->strings["Only show unblocked connections"] = "Nur freigegebene Verbindungen anzeigen"; -$a->strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; -$a->strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; -$a->strings["Only show archived connections"] = "Nur archivierte Verbindungen anzeigen"; -$a->strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit connection"] = "Verbindung bearbeiten"; -$a->strings["Search your connections"] = "Verbindungen durchsuchen"; -$a->strings["Finding: "] = "Ergebnisse:"; -$a->strings["webpage"] = "Webseite"; -$a->strings["block"] = "Block"; -$a->strings["layout"] = "Layout"; -$a->strings["%s element installed"] = "Element für %s installiert"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; -$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; -$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; -$a->strings["Thing updated"] = "Sache aktualisiert"; -$a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; -$a->strings["Thing added"] = "Sache hinzugefügt"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Sache anzeigen"; -$a->strings["item not found."] = "Eintrag nicht gefunden"; -$a->strings["Edit Thing"] = "Sache bearbeiten"; -$a->strings["Select a profile"] = "Wähle ein Profil"; -$a->strings["Post an activity"] = "Aktivitätsnachricht senden"; -$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -$a->strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; -$a->strings["URL of thing (optional)"] = "URL der Sache (optional)"; -$a->strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; -$a->strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; -$a->strings["Away"] = "Abwesend"; -$a->strings["Online"] = "Online"; -$a->strings["Channel added."] = "Kanal hinzugefügt."; -$a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -$a->strings["System Notifications"] = "System-Benachrichtigungen"; -$a->strings["network"] = "Netzwerk"; -$a->strings["RSS"] = "RSS"; -$a->strings["Layout updated."] = "Layout aktualisiert."; -$a->strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -$a->strings["Layout not found."] = "Layout nicht gefunden."; -$a->strings["Module Name:"] = "Modulname:"; -$a->strings["Layout Help"] = "Layout-Hilfe"; -$a->strings["App installed."] = "App installiert."; -$a->strings["Malformed app."] = "Fehlerhafte App."; -$a->strings["Embed code"] = "Code einbetten"; -$a->strings["Edit App"] = "App bearbeiten"; -$a->strings["Create App"] = "App erstellen"; -$a->strings["Name of app"] = "Name der App"; -$a->strings["Location (URL) of app"] = "Ort (URL) der App"; -$a->strings["Description"] = "Beschreibung"; -$a->strings["Photo icon URL"] = "URL zum Icon"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -$a->strings["Version ID"] = "Versions-ID"; -$a->strings["Price of app"] = "Preis der App"; -$a->strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; -$a->strings["- select -"] = "– auswählen –"; -$a->strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; -$a->strings["Nothing to import."] = "Nichts zu importieren."; -$a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; -$a->strings["Imported file is empty."] = "Die importierte Datei ist leer."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; -$a->strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; -$a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; -$a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -$a->strings["Import completed."] = "Import abgeschlossen."; -$a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; -$a->strings["Import Channel"] = "Kanal importieren"; -$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."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich."; -$a->strings["File to Upload"] = "Hochzuladende Datei:"; -$a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; -$a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; -$a->strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; -$a->strings["Your old login password"] = "Dein altes Passwort"; -$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."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; -$a->strings["Make this hub my primary location"] = "Dieser Red-Server ist mein primärer Server."; -$a->strings["Import existing posts if possible"] = "Existierende Beiträge importieren, falls möglich"; -$a->strings["Edit Layout"] = "Layout bearbeiten"; -$a->strings["Delete layout?"] = "Layout löschen?"; -$a->strings["Delete Layout"] = "Layout löschen"; -$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; -$a->strings["Room not found"] = "Chatraum nicht gefunden"; -$a->strings["Leave Room"] = "Raum verlassen"; -$a->strings["Delete This Room"] = "Diesen Raum löschen"; -$a->strings["I am away right now"] = "Ich bin gerade nicht da"; -$a->strings["I am online"] = "Ich bin online"; -$a->strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; -$a->strings["New Chatroom"] = "Neuer Chatraum"; -$a->strings["Chatroom Name"] = "Name des Chatraums"; -$a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -$a->strings["Edit Webpage"] = "Webseite bearbeiten"; -$a->strings["Delete webpage?"] = "Webseite löschen?"; -$a->strings["Delete Webpage"] = "Webseite löschen"; -$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; -$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; -$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; -$a->strings["Site Member (%s)"] = "Nutzer (%s)"; -$a->strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; -$a->strings["Password Reset"] = "Zurücksetzen des Kennworts"; -$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; -$a->strings["Your new password is"] = "Dein neues Passwort lautet"; -$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; -$a->strings["click here to login"] = "Klicke hier, um dich anzumelden"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; -$a->strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -$a->strings["Forgot your Password?"] = "Kennwort vergessen?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; -$a->strings["Email Address"] = "E-Mail Adresse"; -$a->strings["Reset"] = "Zurücksetzen"; -$a->strings["Website:"] = "Webseite:"; -$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; -$a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; -$a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; -$a->strings["Please join us on Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers."; -$a->strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; -$a->strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["Location:"] = "Ort:"; +$a->strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +$a->strings["Not specified"] = "Keine Angabe"; +$a->strings["Needs Action"] = "Aktion erforderlich"; +$a->strings["Completed"] = "Abgeschlossen"; +$a->strings["In Process"] = "In Bearbeitung"; +$a->strings["Cancelled"] = "gestrichen"; +$a->strings["Site Admin"] = "Hub-Administration"; +$a->strings["Address Book"] = "Adressbuch"; +$a->strings["Login"] = "Anmelden"; +$a->strings["Channel Manager"] = "Kanal-Manager"; +$a->strings["Matrix"] = "Matrix"; +$a->strings["Settings"] = "Einstellungen"; +$a->strings["Channel Home"] = "Mein Kanal"; +$a->strings["Profile"] = "Profil"; +$a->strings["Events"] = "Termine"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["Help"] = "Hilfe"; +$a->strings["Mail"] = "Mail"; +$a->strings["Mood"] = "Laune"; +$a->strings["Chat"] = "Chat"; +$a->strings["Probe"] = "Testen"; +$a->strings["Suggest"] = "Empfehlen"; +$a->strings["Random Channel"] = "Zufälliger Kanal"; +$a->strings["Invite"] = "Einladen"; +$a->strings["Features"] = "Funktionen"; +$a->strings["Language"] = "Sprache"; +$a->strings["Post"] = "Beitrag"; +$a->strings["Profile Photo"] = "Profilfoto"; +$a->strings["Update"] = "Aktualisieren"; +$a->strings["Install"] = "Installieren"; +$a->strings["Purchase"] = "Kaufen"; +$a->strings["Logged out."] = "Ausgeloggt."; +$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +$a->strings["Login failed."] = "Login fehlgeschlagen."; +$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["Install %s element: "] = "Element %s installieren: "; +$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; +$a->strings["webpage"] = "Webseite"; +$a->strings["layout"] = "Layout"; +$a->strings["block"] = "Block"; +$a->strings["menu"] = "Menü"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +$a->strings["post"] = "Beitrag"; +$a->strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; +$a->strings["$1 spoiler"] = "$1 Spoiler"; +$a->strings["$1 wrote:"] = "$1 schrieb:"; +$a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; +$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt"; +$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; +$a->strings["An invitation is required."] = "Eine Einladung wird benötigt"; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden"; +$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; +$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen"; +$a->strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; +$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +$a->strings["your registration password"] = "Dein Registrierungspasswort"; +$a->strings["Registration details for %s"] = "Registrierungsdetails für %s"; +$a->strings["Account approved."] = "Account bestätigt."; +$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen"; +$a->strings["Account verified. Please login."] = "Konto geprüft. Bitte melde Dich an!"; +$a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; +$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +$a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; +$a->strings["Channel location missing."] = "Adresse des Kanals fehlt."; +$a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; +$a->strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; +$a->strings["Protocol disabled."] = "Protokoll deaktiviert."; +$a->strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +$a->strings["local account not found."] = "Lokales Konto nicht gefunden."; +$a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; +$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."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +$a->strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", ); -$a->strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Please join my community on RedMatrix."] = "Schließe Dich uns in der RedMatrix an!"; -$a->strings["You will need to supply this invitation code: "] = "Gib folgenden Einladungs-Code ein:"; -$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)"; -$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Gib meine RedMatrix-Adresse im Suchfeld ein."; -$a->strings["or visit "] = "oder besuche"; -$a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; -$a->strings["Location not found."] = "Klon nicht gefunden."; -$a->strings["Primary location cannot be removed."] = "Der primäre Klon kann nicht gelöscht werden."; -$a->strings["No locations found."] = "Keine Klon-Adressen gefunden."; -$a->strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; -$a->strings["Location (address)"] = "URL (Adresse)"; -$a->strings["Primary Location"] = "Primärer Klon"; -$a->strings["Drop location"] = "Klon löschen"; -$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; -$a->strings["Source created."] = "Quelle erstellt."; -$a->strings["Source updated."] = "Quelle aktualisiert."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; -$a->strings["New Source"] = "Neue Quelle"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; -$a->strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; -$a->strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; -$a->strings["Channel Name"] = "Name des Kanals"; -$a->strings["Source not found."] = "Quelle nicht gefunden."; -$a->strings["Edit Source"] = "Quelle bearbeiten"; -$a->strings["Delete Source"] = "Quelle löschen"; -$a->strings["Source removed"] = "Quelle gelöscht"; -$a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; -$a->strings["Menu updated."] = "Menü aktualisiert."; -$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; -$a->strings["Menu created."] = "Menü erstellt."; -$a->strings["Unable to create menu."] = "Kann Menü nicht erstellen."; -$a->strings["Manage Menus"] = "Menüs verwalten"; -$a->strings["Drop"] = "Löschen"; -$a->strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; -$a->strings["Create a new menu"] = "Neues Menü erstellen"; -$a->strings["Delete this menu"] = "Lösche dieses Menü"; -$a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; -$a->strings["Edit this menu"] = "Dieses Menü bearbeiten"; -$a->strings["New Menu"] = "Neues Menü"; -$a->strings["Menu name"] = "Menü Name"; -$a->strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; -$a->strings["Menu title"] = "Menü Titel"; -$a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; -$a->strings["Allow bookmarks"] = "Erlaube Lesezeichen"; -$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; -$a->strings["Menu not found."] = "Menü nicht gefunden"; -$a->strings["Menu deleted."] = "Menü gelöscht."; -$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; -$a->strings["Edit Menu"] = "Menü bearbeiten"; -$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; -$a->strings["Modify"] = "Ändern"; -$a->strings["Permission Denied."] = "Zugriff verweigert."; -$a->strings["File not found."] = "Datei nicht gefunden."; -$a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; -$a->strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; -$a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; -$a->strings["Return to file list"] = "Zurück zur Dateiliste"; -$a->strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; -$a->strings["Attach this file to a new post"] = "Diese Datei an einen neuen Beitrag anhängen"; -$a->strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; -$a->strings["Do not show in shared with me folder of your connections"] = "Nicht im Ordner „Dateien, die mit mir geteilt wurden“ meiner Verbindungen anzeigen"; +$a->strings["Advanced"] = "Fortgeschritten"; +$a->strings["Find Channels"] = "Finde Kanäle"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; +$a->strings["Find"] = "Finde"; +$a->strings["Channel Suggestions"] = "Kanal-Vorschläge"; +$a->strings["Random Profile"] = "Zufallsprofil"; +$a->strings["Invite Friends"] = "Lade Freunde ein"; +$a->strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemeinsame Verbindung", + 1 => "%d gemeinsame Verbindungen", +); +$a->strings["show more"] = "mehr zeigen"; +$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."] = "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen."; +$a->strings["Add new connections to this collection (privacy group)"] = "Neue Verbindungen zu dieser Sammlung (Privatsphäre-Gruppe) hinzufügen"; +$a->strings["All Channels"] = "Alle Kanäle"; +$a->strings["edit"] = "Bearbeiten"; +$a->strings["Collections"] = "Sammlungen"; +$a->strings["Edit collection"] = "Sammlung bearbeiten"; +$a->strings["Add new collection"] = "Neue Sammlung hinzufügen"; +$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Tags"] = "Schlagwörter"; +$a->strings["Keywords"] = "Schlüsselwörter"; +$a->strings["have"] = "habe"; +$a->strings["has"] = "hat"; +$a->strings["want"] = "will"; +$a->strings["wants"] = "will"; +$a->strings["like"] = "mag"; +$a->strings["likes"] = "gefällt"; +$a->strings["dislike"] = "verurteile"; +$a->strings["dislikes"] = "missfällt"; +$a->strings["Directory Options"] = "Verzeichnisoptionen"; +$a->strings["Safe Mode"] = "Sicherer Modus"; +$a->strings["No"] = "Nein"; +$a->strings["Yes"] = "Ja"; +$a->strings["Public Forums Only"] = "Nur öffentliche Foren"; +$a->strings["This Website Only"] = "Nur dieser Hub"; +$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; +$a->strings["Empty name"] = "Namensfeld leer"; +$a->strings["Name too long"] = "Name ist zu lang"; +$a->strings["No account identifier"] = "Keine Account-Kennung"; +$a->strings["Nickname is required."] = "Spitzname ist erforderlich."; +$a->strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +$a->strings["Default Profile"] = "Standard-Profil"; +$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; +$a->strings["Change profile photo"] = "Profilfoto ändern"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/bearbeiten"; +$a->strings["Create New Profile"] = "Neues Profil erstellen"; +$a->strings["Edit Profile"] = "Profile bearbeiten"; +$a->strings["Profile Image"] = "Profilfoto:"; +$a->strings["visible to everybody"] = "sichtbar für jeden"; +$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +$a->strings["Gender:"] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Online Now"] = "gerade online"; +$a->strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[Heute]"; +$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:"; +$a->strings["[No description]"] = "[Keine Beschreibung]"; +$a->strings["Event Reminders"] = "Termin-Erinnerungen"; +$a->strings["Events this week:"] = "Termine in dieser Woche:"; +$a->strings["Full Name:"] = "Voller Name:"; +$a->strings["Like this channel"] = "Dieser Kanal gefällt mir"; +$a->strings["j F, Y"] = "j. F Y"; +$a->strings["j F"] = "j. F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +$a->strings["Hometown:"] = "Heimatstadt:"; +$a->strings["Tags:"] = "Schlagworte:"; +$a->strings["Political Views:"] = "Politische Ansichten:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["About:"] = "Über:"; +$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; +$a->strings["Likes:"] = "Gefällt:"; +$a->strings["Dislikes:"] = "Gefällt nicht:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; +$a->strings["My other channels:"] = "Meine anderen Kanäle:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Bücher, Literatur:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebe/Romantik:"; +$a->strings["Work/employment:"] = "Arbeit/Anstellung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Like this thing"] = "Gefällt mir"; +$a->strings["No recipient provided."] = "Kein Empfänger angegeben"; +$a->strings["[no subject]"] = "[no subject]"; +$a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; +$a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +$a->strings["Save to Folder"] = "In Ordner speichern"; +$a->strings["I will attend"] = "Ich werde teilnehmen"; +$a->strings["I will not attend"] = "Ich werde nicht teilnehmen"; +$a->strings["I might attend"] = "Ich werde vielleicht teilnehmen"; +$a->strings["I agree"] = "Ich stimme zu"; +$a->strings["I disagree"] = "Ich lehne ab"; +$a->strings["I abstain"] = "Ich enthalte mich"; +$a->strings["Add Star"] = "Stern hinzufügen"; +$a->strings["Remove Star"] = "Stern entfernen"; +$a->strings["Toggle Star Status"] = "Markierungsstatus (Stern) umschalten"; +$a->strings["starred"] = "markiert"; +$a->strings["Add Tag"] = "Tag hinzufügen"; +$a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; +$a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; +$a->strings["Share This"] = "Teilen"; +$a->strings["share"] = "Teilen"; +$a->strings["%d comment"] = array( + 0 => "%d Kommentar", + 1 => "%d Kommentare", +); +$a->strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s"; +$a->strings["to"] = "an"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["Delivery Report"] = "Zustellungsbericht"; +$a->strings["Save Bookmarks"] = "Favoriten speichern"; +$a->strings["Add to Calendar"] = "Zum Kalender hinzufügen"; +$a->strings["Mark all seen"] = "Alle als gelesen markieren"; +$a->strings["__ctx:noun__ Likes"] = "Gefällt mir"; +$a->strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; +$a->strings["This is you"] = "Das bist Du"; +$a->strings["Image"] = "Bild"; +$a->strings["Insert Link"] = "Link einfügen"; +$a->strings["Video"] = "Video"; +$a->strings["Permission denied"] = "Keine Berechtigung"; +$a->strings["(Unknown)"] = "(Unbekannt)"; +$a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; +$a->strings["Visible to you only."] = "Nur für Dich sichtbar."; +$a->strings["Visible to anybody in this network."] = "Für jedes Mitglied der RedMatrix sichtbar."; +$a->strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; +$a->strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; +$a->strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; +$a->strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; +$a->strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; +$a->strings["Item not found."] = "Element nicht gefunden."; +$a->strings["Collection not found."] = "Sammlung nicht gefunden"; +$a->strings["Collection is empty."] = "Sammlung ist leer."; +$a->strings["Collection: %s"] = "Sammlung: %s"; +$a->strings["Connection: %s"] = "Verbindung: %s"; +$a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; +$a->strings["Apps"] = "Apps"; +$a->strings["System"] = "System"; +$a->strings["Create Personal App"] = "Persönliche App erstellen"; +$a->strings["Edit Personal App"] = "Persönliche App bearbeiten"; +$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken"; +$a->strings["Suggestions"] = "Vorschläge"; +$a->strings["See more..."] = "Mehr anzeigen …"; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"; +$a->strings["Notes"] = "Notizen"; +$a->strings["Remove term"] = "Eintrag löschen"; +$a->strings["Archives"] = "Archive"; +$a->strings["Me"] = "Ich"; +$a->strings["Family"] = "Familie"; +$a->strings["Acquaintances"] = "Bekannte"; +$a->strings["All"] = "Alle"; +$a->strings["Refresh"] = "Aktualisieren"; +$a->strings["Account settings"] = "Konto-Einstellungen"; +$a->strings["Channel settings"] = "Kanal-Einstellungen"; +$a->strings["Additional features"] = "Zusätzliche Funktionen"; +$a->strings["Feature/Addon settings"] = "Plugin-Einstellungen"; +$a->strings["Display settings"] = "Anzeige-Einstellungen"; +$a->strings["Connected apps"] = "Verbundene Apps"; +$a->strings["Export channel"] = "Kanal exportieren"; +$a->strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; +$a->strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +$a->strings["Private Mail Menu"] = "Private Nachrichten"; +$a->strings["Check Mail"] = "Nachrichten abrufen"; +$a->strings["Combined View"] = "Kombinierte Anzeige"; +$a->strings["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["Conversations"] = "Konversationen"; +$a->strings["Received Messages"] = "Erhaltene Nachrichten"; +$a->strings["Sent Messages"] = "Gesendete Nachrichten"; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - G:i"; +$a->strings["Chat Rooms"] = "Chaträume"; +$a->strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +$a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +$a->strings["photo/image"] = "Foto/Bild"; +$a->strings["Rate Me"] = "Bewerte mich"; +$a->strings["View Ratings"] = "Bewertungen ansehen"; +$a->strings["Public Hubs"] = "Öffentliche Hubs"; +$a->strings["Forums"] = "Foren"; +$a->strings["Tasks"] = "Aufgaben"; +$a->strings["Documentation"] = "Dokumentation"; +$a->strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; +$a->strings["For Members"] = "Für Mitglieder"; +$a->strings["For Administrators"] = "Für Administratoren"; +$a->strings["For Developers"] = "Für Entwickler"; +$a->strings["Site"] = "Seite"; +$a->strings["Accounts"] = "Konten"; +$a->strings["Channels"] = "Kanäle"; +$a->strings["Plugins"] = "Plug-Ins"; +$a->strings["Themes"] = "Themes"; +$a->strings["Inspect queue"] = "Warteschlange kontrollieren"; +$a->strings["Profile Config"] = "Profilkonfiguration"; +$a->strings["DB updates"] = "DB-Aktualisierungen"; +$a->strings["Logs"] = "Protokolle"; +$a->strings["Admin"] = "Administration"; +$a->strings["Plugin Features"] = "Plug-In Funktionen"; +$a->strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +$a->strings["Invalid data packet"] = "Ungültiges Datenpaket"; +$a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; +$a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; +$a->strings["invalid target signature"] = "Ungültige Signatur des Ziels"; +$a->strings["Logout"] = "Abmelden"; +$a->strings["End this session"] = "Beende diese Sitzung"; +$a->strings["Home"] = "Home"; +$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["Your profile page"] = "Deine Profilseite"; +$a->strings["Edit Profiles"] = "Profile bearbeiten"; +$a->strings["Manage/Edit profiles"] = "Profile verwalten"; +$a->strings["Edit your profile"] = "Profil bearbeiten"; +$a->strings["Your photos"] = "Deine Bilder"; +$a->strings["Your files"] = "Deine Dateien"; +$a->strings["Your chatrooms"] = "Deine Chaträume"; +$a->strings["Your bookmarks"] = "Deine Lesezeichen"; +$a->strings["Your webpages"] = "Deine Webseiten"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["%s - click to logout"] = "%s - Klick zum Abmelden"; +$a->strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; +$a->strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Register"] = "Registrieren"; +$a->strings["Create an account"] = "Erzeuge ein Konto"; +$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; +$a->strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; +$a->strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; +$a->strings["Channel Directory"] = "Kanal-Verzeichnis"; +$a->strings["Grid"] = "Grid"; +$a->strings["Your grid"] = "Dein Grid"; +$a->strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; +$a->strings["Channel home"] = "Mein Kanal"; +$a->strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; +$a->strings["Connections"] = "Verbindungen"; +$a->strings["Notices"] = "Benachrichtigungen"; +$a->strings["Notifications"] = "Benachrichtigungen"; +$a->strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; +$a->strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; +$a->strings["Private mail"] = "Persönliche Mail"; +$a->strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; +$a->strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; +$a->strings["Event Calendar"] = "Terminkalender"; +$a->strings["See all events"] = "Alle Termine ansehen"; +$a->strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +$a->strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; +$a->strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +$a->strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; +$a->strings["Please wait..."] = "Bitte warten..."; +$a->strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; $a->strings["Contact not found."] = "Kontakt nicht gefunden"; $a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden."; $a->strings["Suggest Friends"] = "Kontakte vorschlagen"; $a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -$a->strings["Hub not found."] = "Server nicht gefunden."; -$a->strings["Poke/Prod"] = "Anstupsen/Knuffen"; -$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; -$a->strings["Recipient"] = "Empfänger"; -$a->strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; -$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -$a->strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; -$a->strings["Profile not found."] = "Profil nicht gefunden."; -$a->strings["Profile deleted."] = "Profil gelöscht."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Neues Profil erstellt."; -$a->strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; -$a->strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; -$a->strings["Profile Name is required."] = "Profil-Name erforderlich."; -$a->strings["Marital Status"] = "Familienstand"; -$a->strings["Romantic Partner"] = "Romantische Partner"; -$a->strings["Likes"] = "Gefällt"; -$a->strings["Dislikes"] = "Gefällt nicht"; -$a->strings["Work/Employment"] = "Arbeit/Anstellung"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Politische Ansichten"; -$a->strings["Gender"] = "Geschlecht"; -$a->strings["Sexual Preference"] = "Sexuelle Orientierung"; -$a->strings["Homepage"] = "Webseite"; -$a->strings["Interests"] = "Hobbys/Interessen"; -$a->strings["Address"] = "Adresse"; -$a->strings["Profile updated."] = "Profil aktualisiert."; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"; -$a->strings["Edit Profile Details"] = "Bearbeite Profil-Details"; -$a->strings["View this profile"] = "Dieses Profil ansehen"; -$a->strings["Change Profile Photo"] = "Profilfoto ändern"; -$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; -$a->strings["Clone this profile"] = "Dieses Profil klonen"; -$a->strings["Delete this profile"] = "Dieses Profil löschen"; -$a->strings["Import profile from file"] = "Profil aus einer Datei importieren"; -$a->strings["Export profile to file"] = "Profil in eine Datei exportieren"; -$a->strings["Profile Name:"] = "Profilname:"; -$a->strings["Your Full Name:"] = "Dein voller Name:"; -$a->strings["Title/Description:"] = "Titel/Beschreibung:"; -$a->strings["Your Gender:"] = "Dein Geschlecht:"; -$a->strings["Birthday :"] = "Geburtstag:"; -$a->strings["Street Address:"] = "Straße und Hausnummer:"; -$a->strings["Locality/City:"] = "Wohnort:"; -$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Region/Bundesstaat:"; -$a->strings[" Marital Status:"] = " Beziehungsstatus:"; -$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Seit [Datum]:"; -$a->strings["Homepage URL:"] = "Homepage URL:"; -$a->strings["Religious Views:"] = "Religiöse Ansichten:"; -$a->strings["Keywords:"] = "Schlüsselwörter:"; -$a->strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; -$a->strings["Used in directory listings"] = "Wird in Verzeichnis-Auflistungen verwendet"; -$a->strings["Tell us about yourself..."] = "Erzähle uns ein wenig von Dir …"; -$a->strings["Hobbies/Interests"] = "Hobbys/Interessen"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformation und soziale Netzwerke"; -$a->strings["My other channels"] = "Meine anderen Kanäle"; -$a->strings["Musical interests"] = "Musikalische Interessen"; -$a->strings["Books, literature"] = "Bücher, Literatur"; -$a->strings["Television"] = "Fernsehen"; -$a->strings["Film/dance/culture/entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; -$a->strings["Love/romance"] = "Liebe/Romantik"; -$a->strings["Work/employment"] = "Arbeit/Anstellung"; -$a->strings["School/education"] = "Schule/Ausbildung"; -$a->strings["This is your default profile."] = "Das ist Dein Standardprofil."; -$a->strings["Age: "] = "Alter:"; -$a->strings["Edit/Manage Profiles"] = "Profile bearbeiten/verwalten"; -$a->strings["Add profile things"] = "Sachen zum Profil hinzufügen"; -$a->strings["Include desirable objects in your profile"] = "Binde begehrenswerte Dinge in Dein Profil ein"; -$a->strings["No ratings"] = "Keine Bewertungen"; -$a->strings["Ratings"] = "Bewertungen"; -$a->strings["Rating: "] = "Bewertung: "; -$a->strings["Website: "] = "Webseite: "; -$a->strings["Description: "] = "Beschreibung: "; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$a->strings["Delegate Page Management"] = "Delegiere das Management für diese Seite"; -$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; -$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; -$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; -$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; -$a->strings["Add"] = "Hinzufügen"; -$a->strings["No entries."] = "Keine Einträge."; +$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; $a->strings["%d rating"] = array( 0 => "%d Bewertung", 1 => "%d Bewertungen", @@ -1654,45 +991,290 @@ $a->strings["%d rating"] = array( $a->strings["Gender: "] = "Geschlecht:"; $a->strings["Status: "] = "Status:"; $a->strings["Homepage: "] = "Webseite:"; -$a->strings["Hometown: "] = "Wohnort:"; -$a->strings["About: "] = "Über:"; +$a->strings["Description:"] = "Beschreibung:"; $a->strings["Public Forum:"] = "Öffentliches Forum:"; $a->strings["Keywords: "] = "Schlüsselwörter:"; +$a->strings["Don't suggest"] = "Nicht vorschlagen"; +$a->strings["Common connections:"] = "Gemeinsame Verbindungen:"; +$a->strings["Global Directory"] = "Globales Verzeichnis"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; $a->strings["Finding:"] = "Ergebnisse:"; $a->strings["next page"] = "nächste Seite"; $a->strings["previous page"] = "vorherige Seite"; +$a->strings["Sort options"] = "Sortieroptionen"; +$a->strings["Alphabetic"] = "alphabetisch"; +$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; +$a->strings["Newest to Oldest"] = "Neueste zuerst"; +$a->strings["Oldest to Newest"] = "Älteste zuerst"; $a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; -$a->strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; -$a->strings["Save Bookmark"] = "Lesezeichen speichern"; -$a->strings["URL of bookmark"] = "URL des Lesezeichens"; -$a->strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; +$a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +$a->strings["My Bookmarks"] = "Meine Lesezeichen"; +$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; +$a->strings["Invalid item."] = "Ungültiges Element."; +$a->strings["Channel not found."] = "Kanal nicht gefunden."; +$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["First Name"] = "Vorname"; +$a->strings["Last Name"] = "Nachname"; +$a->strings["Nickname"] = "Spitzname"; +$a->strings["Full Name"] = "Voller Name"; +$a->strings["Profile Photo 16px"] = "Profilfoto 16 px"; +$a->strings["Profile Photo 32px"] = "Profilfoto 32 px"; +$a->strings["Profile Photo 48px"] = "Profilfoto 48 px"; +$a->strings["Profile Photo 64px"] = "Profilfoto 64 px"; +$a->strings["Profile Photo 80px"] = "Profilfoto 80 px"; +$a->strings["Profile Photo 128px"] = "Profilfoto 128 px"; +$a->strings["Timezone"] = "Zeitzone"; +$a->strings["Homepage URL"] = "Homepage-URL"; +$a->strings["Birth Year"] = "Geburtsjahr"; +$a->strings["Birth Month"] = "Geburtsmonat"; +$a->strings["Birth Day"] = "Geburtstag"; +$a->strings["Birthdate"] = "Geburtsdatum"; +$a->strings["Gender"] = "Geschlecht"; +$a->strings["Like/Dislike"] = "Mögen/Nicht mögen"; +$a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; +$a->strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; +$a->strings["Invalid request."] = "Ungültige Anfrage."; +$a->strings["thing"] = "Sache"; +$a->strings["Channel unavailable."] = "Kanal nicht vorhanden."; +$a->strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; +$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; +$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; +$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; +$a->strings["Action completed."] = "Aktion durchgeführt."; +$a->strings["Thank you."] = "Vielen Dank."; $a->strings["Export Channel"] = "Kanal exportieren"; -$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."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; +$a->strings["Export your basic channel information to a 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 server hub, but does not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; $a->strings["Export Content"] = "Kanal und Inhalte exportieren"; -$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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Inhalte Deines Kanals, ist aber nicht unbedingt für den Import eines Kanals auf einem anderen Hub geeignet, da die Datei SEHR groß werden kann. Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; -$a->strings["No connections."] = "Keine Verbindungen."; -$a->strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; -$a->strings["invalid target signature"] = "Ungültige Signatur des Ziels"; +$a->strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; +$a->strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; +$a->strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; +$a->strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; +$a->strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; +$a->strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; +$a->strings["Away"] = "Abwesend"; +$a->strings["Online"] = "Online"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; +$a->strings["No channel."] = "Kein Kanal."; +$a->strings["Common connections"] = "Gemeinsame Verbindungen"; +$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +$a->strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; +$a->strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +$a->strings["posted an event"] = "hat einen Termin veröffentlicht"; +$a->strings["Documentation Search"] = "Suche in der Dokumentation"; +$a->strings["Help:"] = "Hilfe:"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; +$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; +$a->strings["Remove This Channel"] = "Diesen Kanal löschen"; +$a->strings["WARNING: "] = "WARNUNG: "; +$a->strings["This channel will be completely removed from the network. "] = "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht."; +$a->strings["This action is permanent and can not be undone!"] = "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!"; +$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; +$a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; +$a->strings["Remove Channel"] = "Kanal löschen"; +$a->strings["- select -"] = "– auswählen –"; +$a->strings["Menu not found."] = "Menü nicht gefunden"; +$a->strings["Unable to create element."] = "Element konnte nicht erstellt werden."; +$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; +$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; +$a->strings["Not found."] = "Nicht gefunden."; +$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; +$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; +$a->strings["Link Name"] = "Name des Links"; +$a->strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; +$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; +$a->strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; +$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; +$a->strings["Order in list"] = "Reihenfolge in der Liste"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; +$a->strings["Submit and finish"] = "Absenden und fertigstellen"; +$a->strings["Submit and continue"] = "Absenden und fortfahren"; +$a->strings["Menu:"] = "Menü:"; +$a->strings["Link Target"] = "Ziel des Links"; +$a->strings["Edit menu"] = "Menü bearbeiten"; +$a->strings["Edit element"] = "Bestandteil bearbeiten"; +$a->strings["Drop element"] = "Bestandteil löschen"; +$a->strings["New element"] = "Neues Bestandteil"; +$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; +$a->strings["Add menu element"] = "Menüelement hinzufügen"; +$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; +$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; +$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; +$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; +$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; +$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; +$a->strings["Link text"] = "Link Text"; +$a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; +$a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; +$a->strings["Connection updated."] = "Verbindung aktualisiert."; +$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; +$a->strings["is now connected to"] = "ist jetzt verbunden mit"; +$a->strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; +$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; +$a->strings["Connection has been removed."] = "Verbindung wurde gelöscht."; +$a->strings["View %s's profile"] = "%ss Profil ansehen"; +$a->strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; +$a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; +$a->strings["Recent Activity"] = "Kürzliche Aktivitäten"; +$a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; +$a->strings["Unblock"] = "Freigeben"; +$a->strings["Block"] = "Blockieren"; +$a->strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; +$a->strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; +$a->strings["Unignore"] = "Nicht ignorieren"; +$a->strings["Ignore"] = "Ignorieren"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; +$a->strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; +$a->strings["This connection is archived!"] = "Die Verbindung ist archiviert!"; +$a->strings["Unhide"] = "Wieder sichtbar machen"; +$a->strings["Hide"] = "Verstecken"; +$a->strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; +$a->strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; +$a->strings["Delete this connection"] = "Verbindung löschen"; +$a->strings["Approve this connection"] = "Verbindung genehmigen"; +$a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; +$a->strings["Set Affinity"] = "Beziehung festlegen"; +$a->strings["Set Profile"] = "Profil festlegen"; +$a->strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; +$a->strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; +$a->strings["This connection's address is"] = "Die Adresse dieses Kontakts ist"; +$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet."; +$a->strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; +$a->strings["Slide to adjust your rating"] = "Verschieben, um Deine Bewertung einzustellen"; +$a->strings["Optionally explain your rating"] = "Optional kannst Du Deine Bewertung begründen"; +$a->strings["Custom Filter"] = "Benutzerdefinierter Filter"; +$a->strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren"; +$a->strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Posts zu importieren."; +$a->strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren"; +$a->strings["This information is public!"] = "Diese Information ist öffentlich!"; +$a->strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; +$a->strings["Connection Request"] = "Verbindungsanfrage"; +$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) möchte sich mit Dir verbinden. Bitte genehmige die Verbindung, um Kommunikation zu ermöglichen."; +$a->strings["Approve"] = "Genehmigen"; +$a->strings["Approve Later"] = "Später genehmigen"; +$a->strings["inherited"] = "geerbt"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; +$a->strings["Their Settings"] = "Deren Einstellungen"; +$a->strings["My Settings"] = "Meine Einstellungen"; +$a->strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden."; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; +$a->strings["Last update:"] = "Letzte Aktualisierung:"; +$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; +$a->strings["Hub not found."] = "Server nicht gefunden."; +$a->strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; +$a->strings["Configuration Editor"] = "Konfigurationseditor"; +$a->strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; +$a->strings["Public Sites"] = "Öffentliche Server"; +$a->strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung bei \$Projectname. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen anderen Servern ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den verlinkten Seiten könnten nähere Details dazu stehen."; +$a->strings["Rate this hub"] = "Bewerte diesen Hub"; +$a->strings["Site URL"] = "Server-URL"; +$a->strings["Access Type"] = "Zugangstyp"; +$a->strings["Registration Policy"] = "Registrierungsrichtlinien"; +$a->strings["Location"] = "Ort"; +$a->strings["View hub ratings"] = "Bewertungen dieses Hubs ansehen"; +$a->strings["Rate"] = "Bewerten"; +$a->strings["View ratings"] = "Bewertungen ansehen"; +$a->strings["Permission Denied."] = "Zugriff verweigert."; +$a->strings["File not found."] = "Datei nicht gefunden."; +$a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; +$a->strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; +$a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; +$a->strings["Return to file list"] = "Zurück zur Dateiliste"; +$a->strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; +$a->strings["Share this file"] = "Diese Datei freigeben"; +$a->strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; +$a->strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; +$a->strings["Layout Name"] = "Layout-Name"; +$a->strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; +$a->strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; +$a->strings["Layout Description"] = "Layout-Beschreibung"; +$a->strings["Download PDL file"] = "PDL-Datei herunterladen"; +$a->strings["Poke/Prod"] = "Anstupsen/Knuffen"; +$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; +$a->strings["Recipient"] = "Empfänger"; +$a->strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; +$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; +$a->strings["No such group"] = "Sammlung nicht gefunden"; +$a->strings["No such channel"] = "Kanal nicht gefunden"; +$a->strings["forum"] = "Forum"; +$a->strings["Search Results For:"] = "Suchergebnisse für:"; +$a->strings["Collection is empty"] = "Sammlung ist leer"; +$a->strings["Collection: "] = "Sammlung:"; +$a->strings["Invalid connection."] = "Ungültige Verbindung."; +$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; +$a->strings["Room not found"] = "Chatraum nicht gefunden"; +$a->strings["Leave Room"] = "Raum verlassen"; +$a->strings["Delete This Room"] = "Diesen Raum löschen"; +$a->strings["I am away right now"] = "Ich bin gerade nicht da"; +$a->strings["I am online"] = "Ich bin online"; +$a->strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; +$a->strings["New Chatroom"] = "Neuer Chatraum"; +$a->strings["Chatroom Name"] = "Name des Chatraums"; +$a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +$a->strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; +$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; +$a->strings["Item not found"] = "Element nicht gefunden"; +$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +$a->strings["Delete item?"] = "Eintrag löschen?"; +$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; +$a->strings["Edit post"] = "Bearbeite Beitrag"; +$a->strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; +$a->strings["no results"] = "keine Ergebnisse"; +$a->strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; +$a->strings["channel sync processed"] = "Kanal-Sync verarbeitet"; +$a->strings["queued"] = "zur Warteschlange hinzugefügt"; +$a->strings["posted"] = "zugestellt"; +$a->strings["accepted for delivery"] = "für Zustellung akzeptiert"; +$a->strings["updated"] = "aktualisiert"; +$a->strings["update ignored"] = "Aktualisierung ignoriert"; +$a->strings["permission denied"] = "Zugriff verweigert"; +$a->strings["Delete block?"] = "Block löschen?"; +$a->strings["Edit Block"] = "Block bearbeiten"; +$a->strings["\$Projectname"] = "\$Projectname"; +$a->strings["Welcome to %s"] = "Willkommen auf %s"; +$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +$a->strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; +$a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +$a->strings["Post successful."] = "Veröffentlichung erfolgreich."; $a->strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; -$a->strings["Site"] = "Seite"; -$a->strings["Accounts"] = "Konten"; -$a->strings["Channels"] = "Kanäle"; -$a->strings["Plugins"] = "Plug-Ins"; -$a->strings["Themes"] = "Themes"; -$a->strings["Server"] = "Server"; -$a->strings["Profile Config"] = "Profilkonfiguration"; -$a->strings["DB updates"] = "DB-Aktualisierungen"; -$a->strings["Logs"] = "Protokolle"; -$a->strings["Plugin Features"] = "Plug-In Funktionen"; -$a->strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +$a->strings["# Accounts"] = "Anzahl der Konten"; +$a->strings["# blocked accounts"] = "Anzahl der blockierten Konten"; +$a->strings["# expired accounts"] = "Anzahl der abgelaufenen Konten"; +$a->strings["# expiring accounts"] = "Anzahl der ablaufenden Konten"; +$a->strings["# Channels"] = "Anzahl der Kanäle"; +$a->strings["# primary"] = "Anzahl der primären Kanäle"; +$a->strings["# clones"] = "Anzahl der Klone"; $a->strings["Message queues"] = "Nachrichten-Warteschlangen"; $a->strings["Administration"] = "Administration"; $a->strings["Summary"] = "Zusammenfassung"; -$a->strings["Registered users"] = "Registrierte Benutzer"; +$a->strings["Registered accounts"] = "Registrierte Konten"; $a->strings["Pending registrations"] = "Ausstehende Registrierungen"; -$a->strings["Version"] = "Version"; +$a->strings["Registered channels"] = "Registrierte Kanäle"; $a->strings["Active plugins"] = "Aktive Plug-Ins"; +$a->strings["Version"] = "Version"; $a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; +$a->strings["mobile"] = "mobil"; $a->strings["experimental"] = "experimentell"; $a->strings["unsupported"] = "nicht unterstützt"; $a->strings["Yes - with approval"] = "Ja - mit Zustimmung"; @@ -1712,8 +1294,6 @@ $a->strings["System theme"] = "System-Theme"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; $a->strings["Mobile system theme"] = "Mobile System-Theme:"; $a->strings["Theme for mobile devices"] = "Theme für mobile Geräte"; -$a->strings["Enable Diaspora Protocol"] = "Diaspora-Protokoll aktivieren"; -$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Kommunikation mit Diaspora und Friendica – experimentell"; $a->strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; $a->strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; $a->strings["Maximum image size"] = "Maximale Bildgröße"; @@ -1722,6 +1302,10 @@ $a->strings["Does this site allow new member registration?"] = "Erlaubt dieser S $a->strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; $a->strings["Register text"] = "Registrierungstext"; $a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; +$a->strings["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)"; +$a->strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen."; +$a->strings["Preserve site homepage URL"] = "Homepage-URL schützen"; +$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten."; $a->strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; $a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; @@ -1738,23 +1322,28 @@ $a->strings["Force publish"] = "Veröffentlichung erzwingen"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; $a->strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden"; $a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden."; -$a->strings["No login on Homepage"] = "Kein Login auf der Homepage"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)."; +$a->strings["login on Homepage"] = "Anmeldemaske auf der Homepage"; +$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; $a->strings["Proxy user"] = "Proxy Benutzer"; $a->strings["Proxy URL"] = "Proxy URL"; $a->strings["Network timeout"] = "Netzwerk-Timeout"; $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; $a->strings["Delivery interval"] = "Auslieferung Intervall"; $a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; +$a->strings["Deliveries per process"] = "Zustellungen pro Prozess"; +$a->strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5."; $a->strings["Poll interval"] = "Abfrageintervall"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; $a->strings["Maximum Load Average"] = "Maximales Load Average"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; +$a->strings["Expiration period in days for imported (matrix/network) content"] = "Zeitraum in Tagen, nach dem importierte Inhalte (aus dem Grid/Netzwerk) gelöscht werden sollen"; +$a->strings["0 for no expiration of imported content"] = "0 = keine Löschung importierter Inhalte"; $a->strings["No server found"] = "Kein Server gefunden"; $a->strings["ID"] = "ID"; $a->strings["for channel"] = "für Kanal"; $a->strings["on server"] = "auf Server"; $a->strings["Status"] = "Status"; +$a->strings["Server"] = "Server"; $a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; $a->strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; $a->strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; @@ -1764,45 +1353,61 @@ $a->strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; $a->strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; $a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; $a->strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s Nutzer blockiert/freigegeben", - 1 => "%s Nutzer blockiert/freigegeben", +$a->strings["Queue Statistics"] = "Warteschlangenstatistiken"; +$a->strings["Total Entries"] = "Einträge insgesamt"; +$a->strings["Priority"] = "Priorität"; +$a->strings["Destination URL"] = "Ziel-URL"; +$a->strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; +$a->strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; +$a->strings["Last known contact"] = "Letzter Kontakt"; +$a->strings["%s account blocked/unblocked"] = array( + 0 => "%s Konto blockiert/freigegeben", + 1 => "%s Konten blockiert/freigegeben", ); -$a->strings["%s user deleted"] = array( - 0 => "%s Nutzer gelöscht", - 1 => "%s Nutzer gelöscht", +$a->strings["%s account deleted"] = array( + 0 => "%s Konto gelöscht", + 1 => "%s Konten gelöscht", ); $a->strings["Account not found"] = "Konto nicht gefunden"; -$a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben"; -$a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert"; +$a->strings["Account '%s' deleted"] = "Konto '%s' gelöscht"; +$a->strings["Account '%s' blocked"] = "Konto '%s' blockiert"; +$a->strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; $a->strings["Users"] = "Benutzer"; $a->strings["select all"] = "Alle auswählen"; $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; $a->strings["Request date"] = "Antragsdatum"; $a->strings["No registrations."] = "Keine Registrierungen."; -$a->strings["Approve"] = "Genehmigen"; $a->strings["Deny"] = "Verweigern"; $a->strings["Register date"] = "Registrierungs-Datum"; $a->strings["Last login"] = "Letzte Anmeldung"; $a->strings["Expires"] = "Verfällt"; $a->strings["Service Class"] = "Service-Klasse"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; +$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?"; +$a->strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; $a->strings["%s channel censored/uncensored"] = array( 0 => "%s Kanal gesperrt/freigegeben", 1 => "%s Kanäle gesperrt/freigegeben", ); +$a->strings["%s channel code allowed/disallowed"] = array( + 0 => "Code für %s Kanal gesperrt/freigegeben", + 1 => "Code für %s Kanäle gesperrt/freigegeben", +); $a->strings["%s channel deleted"] = array( 0 => "%s Kanal gelöscht", 1 => "%s Kanäle gelöscht", ); $a->strings["Channel not found"] = "Kanal nicht gefunden"; $a->strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; -$a->strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; $a->strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; +$a->strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; +$a->strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben"; +$a->strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt"; $a->strings["Censor"] = "Sperren"; $a->strings["Uncensor"] = "Freigeben"; +$a->strings["Allow Code"] = "Code erlauben"; +$a->strings["Disallow Code"] = "Code sperren"; $a->strings["UID"] = "UID"; +$a->strings["Address"] = "Adresse"; $a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; $a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; $a->strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; @@ -1832,99 +1437,47 @@ $a->strings["Help text"] = "Hilfetext"; $a->strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; $a->strings["Field definition not found"] = "Feld-Definition nicht gefunden"; $a->strings["Edit Profile Field"] = "Profilfeld bearbeiten"; -$a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -$a->strings["Post successful."] = "Veröffentlichung erfolgreich."; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; -$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -$a->strings["Please login."] = "Bitte melde dich an."; -$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; -$a->strings["Remove This Account"] = "Dieses Konto löschen"; -$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden."; -$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; -$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; -$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; -$a->strings["Wall Photos"] = "Wall Fotos"; -$a->strings["Profile Match"] = "Profil-Übereinstimmungen"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "interessiert sich für:"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - G:i"; -$a->strings["Menu element updated."] = "Menü-Element aktualisiert."; -$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; -$a->strings["Menu element added."] = "Menü-Bestandteil hinzugefügt."; -$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; -$a->strings["Manage Menu Elements"] = "Menü-Bestandteile verwalten"; -$a->strings["Edit menu"] = "Menü bearbeiten"; -$a->strings["Edit element"] = "Bestandteil bearbeiten"; -$a->strings["Drop element"] = "Bestandteil löschen"; -$a->strings["New element"] = "Neues Bestandteil"; -$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; -$a->strings["Add menu element"] = "Menüelement hinzufügen"; -$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; -$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; -$a->strings["New Menu Element"] = "Neues Menü-Bestandteil"; -$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; -$a->strings["Link text"] = "Link Text"; -$a->strings["URL of link"] = "URL des Links"; -$a->strings["Use RedMatrix magic-auth if available"] = "Verwende die automatische RedMatrix-Authentifizierung (magic-auth), wenn verfügbar"; -$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; -$a->strings["Order in list"] = "Reihenfolge in der Liste"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; -$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; -$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; -$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; -$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; -$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -$a->strings["Total votes"] = "Stimmen gesamt"; -$a->strings["Average Rating"] = "Durchschnittliche Bewertung"; -$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; -$a->strings["Remove This Channel"] = "Diesen Kanal löschen"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet, kann dieser Prozess nicht wieder rückgängig gemacht werden."; -$a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; -$a->strings["Remove Channel"] = "Kanal löschen"; -$a->strings["Help with this feature"] = "Hilfe zu dieser Funktion"; -$a->strings["Layout Name"] = "Layout-Name"; -$a->strings["Like/Dislike"] = "Mögen/Nicht mögen"; -$a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; -$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren."; -$a->strings["Invalid request."] = "Ungültige Anfrage."; -$a->strings["thing"] = "Sache"; -$a->strings["Channel unavailable."] = "Kanal nicht vorhanden."; -$a->strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; -$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; -$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; -$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; -$a->strings["Action completed."] = "Aktion durchgeführt."; -$a->strings["Thank you."] = "Vielen Dank."; -$a->strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; -$a->strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; -$a->strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; -$a->strings["Message deleted."] = "Nachricht gelöscht."; -$a->strings["Message recalled."] = "Nachricht widerrufen."; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Send"] = "Absenden"; -$a->strings["Message not found."] = "Nachricht nicht gefunden."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["Recall message"] = "Nachricht widerrufen"; -$a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; -$a->strings["Private Conversation"] = "Private Unterhaltung"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; -$a->strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; -$a->strings["Discard"] = "Verwerfen"; +$a->strings["App installed."] = "App installiert."; +$a->strings["Malformed app."] = "Fehlerhafte App."; +$a->strings["Embed code"] = "Code einbetten"; +$a->strings["Edit App"] = "App bearbeiten"; +$a->strings["Create App"] = "App erstellen"; +$a->strings["Name of app"] = "Name der App"; +$a->strings["Location (URL) of app"] = "Ort (URL) der App"; +$a->strings["Description"] = "Beschreibung"; +$a->strings["Photo icon URL"] = "URL zum Icon"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +$a->strings["Version ID"] = "Versions-ID"; +$a->strings["Price of app"] = "Preis der App"; +$a->strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; +$a->strings["Unable to create menu."] = "Kann Menü nicht erstellen."; +$a->strings["Menu Name"] = "Name des Menüs"; +$a->strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; +$a->strings["Menu Title"] = "Menütitel"; +$a->strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; +$a->strings["Allow Bookmarks"] = "Lesezeichen erlauben"; +$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; +$a->strings["Submit and proceed"] = "Absenden und fortfahren"; +$a->strings["Drop"] = "Löschen"; +$a->strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; +$a->strings["Delete this menu"] = "Lösche dieses Menü"; +$a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; +$a->strings["Edit this menu"] = "Dieses Menü bearbeiten"; +$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; +$a->strings["Edit Menu"] = "Menü bearbeiten"; +$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; +$a->strings["Menu name"] = "Menü Name"; +$a->strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; +$a->strings["Menu title"] = "Menü Titel"; +$a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; +$a->strings["Allow bookmarks"] = "Erlaube Lesezeichen"; +$a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; +$a->strings["System Notifications"] = "System-Benachrichtigungen"; +$a->strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; $a->strings["Add a Channel"] = "Kanal hinzufügen"; $a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist Deine eigene Sammlung von zusammengehörigen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deines Hubs zulässt."; +$a->strings["Channel Name"] = "Name des Kanals"; $a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; $a->strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; $a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."; @@ -1932,7 +1485,30 @@ $a->strings["Or import an existing channel from another l $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"] = "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können"; $a->strings["Channel Type"] = "Kanaltyp"; $a->strings["Read more about roles"] = "Mehr Informationen über Rollen"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; +$a->strings["Discard"] = "Verwerfen"; +$a->strings["Layout updated."] = "Layout aktualisiert."; +$a->strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +$a->strings["Layout not found."] = "Layout nicht gefunden."; +$a->strings["Module Name:"] = "Modulname:"; +$a->strings["Layout Help"] = "Layout-Hilfe"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; +$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; +$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; +$a->strings["Site Member (%s)"] = "Nutzer (%s)"; +$a->strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; +$a->strings["Password Reset"] = "Zurücksetzen des Kennworts"; +$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; +$a->strings["Your new password is"] = "Dein neues Passwort lautet"; +$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; +$a->strings["click here to login"] = "Klicke hier, um dich anzumelden"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; +$a->strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +$a->strings["Forgot your Password?"] = "Kennwort vergessen?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; +$a->strings["Email Address"] = "E-Mail Adresse"; +$a->strings["Reset"] = "Zurücksetzen"; $a->strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; $a->strings["Album not found."] = "Album nicht gefunden."; $a->strings["Delete Album"] = "Album löschen"; @@ -1942,9 +1518,9 @@ $a->strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto $a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; $a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; $a->strings["Upload Photos"] = "Fotos hochladen"; -$a->strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; -$a->strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; -$a->strings["Do not show a status post for this upload"] = "Keine Statusnachricht für diesen Upload anzeigen"; +$a->strings["Enter an album name"] = "Namen für ein neues Album eingeben"; +$a->strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)"; +$a->strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; $a->strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; $a->strings["Contact Photos"] = "Kontakt-Bilder"; $a->strings["Show Newest First"] = "Neueste zuerst anzeigen"; @@ -1955,24 +1531,110 @@ $a->strings["Permission denied. Access to this item may be restricted."] = "Bere $a->strings["Photo not available"] = "Foto nicht verfügbar"; $a->strings["Use as profile photo"] = "Als Profilfoto verwenden"; $a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Previous"] = "Voriges"; $a->strings["View Full Size"] = "In voller Größe anzeigen"; +$a->strings["Next"] = "Nächste"; +$a->strings["Remove"] = "Entferne"; $a->strings["Edit photo"] = "Foto bearbeiten"; $a->strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; $a->strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; +$a->strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; +$a->strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; $a->strings["Caption"] = "Bildunterschrift"; $a->strings["Add a Tag"] = "Schlagwort hinzufügen"; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; $a->strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; $a->strings["In This Photo:"] = "Auf diesem Foto:"; +$a->strings["Map"] = "Karte"; $a->strings["View Album"] = "Album ansehen"; $a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; -$a->strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -$a->strings["posted an event"] = "hat einen Termin veröffentlicht"; -$a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -$a->strings["My Bookmarks"] = "Meine Lesezeichen"; -$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; +$a->strings["\$Projectname channel"] = "\$Projectname-Kanal"; +$a->strings["Website:"] = "Webseite:"; +$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; +$a->strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; +$a->strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; +$a->strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; +$a->strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; +$a->strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; +$a->strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; +$a->strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; +$a->strings["Event not found."] = "Termin nicht gefunden."; +$a->strings["l, F j"] = "l, j. F"; +$a->strings["Edit event"] = "Termin bearbeiten"; +$a->strings["Delete event"] = "Termin löschen"; +$a->strings["calendar"] = "Kalender"; +$a->strings["Create New Event"] = "Neuen Termin erstellen"; +$a->strings["Export"] = "Exportieren"; +$a->strings["Import"] = "Import"; +$a->strings["Event removed"] = "Termin gelöscht"; +$a->strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; +$a->strings["Event details"] = "Termin-Details"; +$a->strings["Starting date and Title are required."] = "Startdatum und Titel sind erforderlich."; +$a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; +$a->strings["Event Starts:"] = "Termin beginnt:"; +$a->strings["Finish date/time is not known or not relevant"] = "Ende Datum/Zeit sind unbekannt oder unwichtig"; +$a->strings["Event Finishes:"] = "Termin endet:"; +$a->strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; +$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Den Termin teilen"; +$a->strings["%s element installed"] = "Element für %s installiert"; +$a->strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; +$a->strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +$a->strings["Profile Match"] = "Profil-Übereinstimmungen"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "interessiert sich für:"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; +$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; +$a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; +$a->strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; +$a->strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; +$a->strings["female"] = "weiblich"; +$a->strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert"; +$a->strings["male"] = "männlich"; +$a->strings["%1\$s updated his %2\$s"] = "%1\$s hat sein %2\$s aktualisiert"; +$a->strings["%1\$s updated their %2\$s"] = "%1\$s hat sein/ihr %2\$s aktualisiert"; +$a->strings["profile photo"] = "Profilfoto"; +$a->strings["Photo not available."] = "Foto nicht verfügbar."; +$a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Wähle ein Profil:"; +$a->strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +$a->strings["or"] = "oder"; +$a->strings["skip this step"] = "diesen Schritt überspringen"; +$a->strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; +$a->strings["Crop Image"] = "Bild zuschneiden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; +$a->strings["Done Editing"] = "Bearbeitung fertigstellen"; +$a->strings["Channel added."] = "Kanal hinzugefügt."; +$a->strings["Tag removed"] = "Schlagwort entfernt"; +$a->strings["Remove Item Tag"] = "Schlagwort entfernen"; +$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; +$a->strings["No ratings"] = "Keine Bewertungen"; +$a->strings["Ratings"] = "Bewertungen"; +$a->strings["Rating: "] = "Bewertung: "; +$a->strings["Website: "] = "Webseite: "; +$a->strings["Description: "] = "Beschreibung: "; +$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; +$a->strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; +$a->strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; +$a->strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Message deleted."] = "Nachricht gelöscht."; +$a->strings["Message recalled."] = "Nachricht widerrufen."; +$a->strings["Send Private Message"] = "Private Nachricht senden"; +$a->strings["To:"] = "An:"; +$a->strings["Subject:"] = "Betreff:"; +$a->strings["Your message:"] = "Deine Nachricht:"; +$a->strings["Send"] = "Absenden"; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["Recall message"] = "Nachricht widerrufen"; +$a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; +$a->strings["Delete Conversation"] = "Unterhaltung löschen"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; +$a->strings["Page Title"] = "Seitentitel"; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; $a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; @@ -1990,54 +1652,479 @@ $a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladung $a->strings["Your email address"] = "Ihre E-Mail Adresse"; $a->strings["Choose a password"] = "Passwort"; $a->strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; +$a->strings["Block Name"] = "Block-Name"; +$a->strings["Block Title"] = "Titel des Blocks"; +$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; +$a->strings["Remove This Account"] = "Dieses Konto löschen"; +$a->strings["This account and all its channels will be completely removed from the network. "] = "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht."; +$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; +$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; +$a->strings["Remove Account"] = "Konto entfernen"; +$a->strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; +$a->strings["Item not available."] = "Element nicht verfügbar."; +$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; +$a->strings["Source created."] = "Quelle erstellt."; +$a->strings["Source updated."] = "Quelle aktualisiert."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; +$a->strings["New Source"] = "Neue Quelle"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; +$a->strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; +$a->strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; +$a->strings["Source not found."] = "Quelle nicht gefunden."; +$a->strings["Edit Source"] = "Quelle bearbeiten"; +$a->strings["Delete Source"] = "Quelle löschen"; +$a->strings["Source removed"] = "Quelle gelöscht"; +$a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; +$a->strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["network"] = "Netzwerk"; +$a->strings["RSS"] = "RSS"; +$a->strings["Please login."] = "Bitte melde dich an."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; $a->strings["The error message was:"] = "Die Fehlermeldung war:"; $a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; $a->strings["Remote Authentication"] = "Entfernte Authentifizierung"; $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; $a->strings["Authenticate"] = "Authentifizieren"; -$a->strings["Poll"] = "Umfrage"; -$a->strings["View Results"] = "Ergebnisse"; -$a->strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; +$a->strings["This directory server requires an access token"] = "Dieser Verzeichnis-Server benötigt ein Zugangstoken"; +$a->strings["Version %s"] = "Version %s"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; +$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +$a->strings["Tag: "] = "Schlagwort: "; +$a->strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; +$a->strings["Current load average: "] = "Aktuelles Load Average:"; +$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; +$a->strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Bitte besuche redmatrix.me, um mehr über \$Projectname zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["\$projectname issues"] = "\$projectname-Bugtracker"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; +$a->strings["Site Administrators"] = "Administratoren"; +$a->strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; +$a->strings["Nothing to import."] = "Nichts zu importieren."; +$a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; +$a->strings["Imported file is empty."] = "Die importierte Datei ist leer."; +$a->strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; +$a->strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; +$a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; +$a->strings["Import Channel"] = "Kanal importieren"; +$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."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; +$a->strings["File to Upload"] = "Hochzuladende Datei:"; +$a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; +$a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; +$a->strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; +$a->strings["Your old login password"] = "Dein altes Passwort"; +$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."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; +$a->strings["Make this hub my primary location"] = "Dieser Red-Server ist mein primärer Server."; +$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; +$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; +$a->strings["Thing updated"] = "Sache aktualisiert"; +$a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +$a->strings["Thing added"] = "Sache hinzugefügt"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Sache anzeigen"; +$a->strings["item not found."] = "Eintrag nicht gefunden"; +$a->strings["Edit Thing"] = "Sache bearbeiten"; +$a->strings["Select a profile"] = "Wähle ein Profil"; +$a->strings["Post an activity"] = "Aktivitätsnachricht senden"; +$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +$a->strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; +$a->strings["URL of thing (optional)"] = "URL der Sache (optional)"; +$a->strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; +$a->strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +$a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; +$a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; +$a->strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers."; +$a->strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; +$a->strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +$a->strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; +$a->strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; +$a->strings["You will need to supply this invitation code: "] = "Gib folgenden Einladungs-Code ein:"; +$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; +$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; +$a->strings["or visit "] = "oder besuche"; +$a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; +$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; +$a->strings["Source of Item"] = "Quelle des Elements"; +$a->strings["Name is required"] = "Name ist erforderlich"; +$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; +$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; +$a->strings["Password changed."] = "Kennwort geändert."; +$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; +$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse."; +$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."; +$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; +$a->strings["Settings updated."] = "Einstellungen aktualisiert."; +$a->strings["Add application"] = "Anwendung hinzufügen"; +$a->strings["Name of application"] = "Name der Anwendung"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Umleitung"; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; +$a->strings["Icon url"] = "Symbol-URL"; +$a->strings["Optional"] = "Optional"; +$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden."; +$a->strings["Connected Apps"] = "Verbundene Apps"; +$a->strings["Client key starts with"] = "Client Key beginnt mit"; +$a->strings["No name"] = "Kein Name"; +$a->strings["Remove authorization"] = "Authorisierung aufheben"; +$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; +$a->strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; +$a->strings["Account Settings"] = "Konto-Einstellungen"; +$a->strings["Enter New Password:"] = "Neues Passwort eingeben:"; +$a->strings["Confirm New Password:"] = "Neues Passwort bestätigen:"; +$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; +$a->strings["Email Address:"] = "Email Adresse:"; +$a->strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; +$a->strings["Off"] = "Aus"; +$a->strings["On"] = "An"; +$a->strings["Additional Features"] = "Zusätzliche Funktionen"; +$a->strings["Connector Settings"] = "Connector-Einstellungen"; +$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; +$a->strings["%s - (Experimental)"] = "%s – (experimentell)"; +$a->strings["Display Settings"] = "Anzeige-Einstellungen"; +$a->strings["Theme Settings"] = "Theme-Einstellungen"; +$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen"; +$a->strings["Content Settings"] = "Inhaltseinstellungen"; +$a->strings["Display Theme:"] = "Anzeige-Theme:"; +$a->strings["Mobile Theme:"] = "Mobile Theme:"; +$a->strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; +$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; +$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; +$a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; +$a->strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen"; +$a->strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; +$a->strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; +$a->strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; +$a->strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; +$a->strings["Use blog/list mode on matrix page"] = "Blog-/Listenmodus auf der Matrixseite verwenden"; +$a->strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; +$a->strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; +$a->strings["Matrix page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)"; +$a->strings["Nobody except yourself"] = "Niemand außer Dir selbst"; +$a->strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst"; +$a->strings["Approved connections"] = "Angenommene Verbindungen"; +$a->strings["Any connections"] = "Beliebige Verbindungen"; +$a->strings["Anybody on this website"] = "Jeder auf dieser Website"; +$a->strings["Anybody in this network"] = "Alle Red-Nutzer"; +$a->strings["Anybody authenticated"] = "Jeder authentifizierte"; +$a->strings["Anybody on the internet"] = "Jeder im Internet"; +$a->strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; +$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet"; +$a->strings["Channel Settings"] = "Kanal-Einstellungen"; +$a->strings["Basic Settings"] = "Grundeinstellungen"; +$a->strings["Your Timezone:"] = "Ihre Zeitzone:"; +$a->strings["Default Post Location:"] = "Standardstandort:"; +$a->strings["Geographical location to display on your posts"] = "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll"; +$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; +$a->strings["Adult Content"] = "Nicht jugendfreie Inhalte"; +$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"; +$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen"; +$a->strings["Your permissions are already configured. Click to view/adjust"] = "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern"; +$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen"; +$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil"; +$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen"; +$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)"; +$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)"; +$a->strings["Private - default private, never open or public"] = "Privat – Standard privat, nie offen oder öffentlich"; +$a->strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle standardmäßig blockiert"; +$a->strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten"; +$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren"; +$a->strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen"; +$a->strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen"; +$a->strings["0 or blank prevents expiration"] = "0 oder kein Inhalt verhindern das Verfallen"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; +$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; +$a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte"; +$a->strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; +$a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; +$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen"; +$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:"; +$a->strings["accepting a friend request"] = "Du eine Verbindungsanfrage annimmst"; +$a->strings["joining a forum/community"] = "Du einem Forum beitrittst"; +$a->strings["making an interesting profile change"] = "Du eine interessante Änderung an Deinem Profil vornimmst"; +$a->strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:"; +$a->strings["You receive a connection request"] = "Du eine Verbindungsanfrage erhältst"; +$a->strings["Your connections are confirmed"] = "Eine Verbindung bestätigt wurde"; +$a->strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt"; +$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert"; +$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst"; +$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst"; +$a->strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest"; +$a->strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"; +$a->strings["Show visual notifications including:"] = "Visuelle Benachrichtigungen anzeigen für:"; +$a->strings["Unseen matrix activity"] = "Ungesehene Matrix-Aktivität"; +$a->strings["Unseen channel activity"] = "Ungesehene Kanal-Aktivität"; +$a->strings["Unseen private messages"] = "Ungelesene persönliche Nachrichten"; +$a->strings["Recommended"] = "Empfohlen"; +$a->strings["Upcoming events"] = "Baldige Termine"; +$a->strings["Events today"] = "Heutige Termine"; +$a->strings["Upcoming birthdays"] = "Baldige Geburtstage"; +$a->strings["Not available in all themes"] = "Nicht in allen Themes verfügbar"; +$a->strings["System (personal) notifications"] = "System – (persönliche) Benachrichtigungen"; +$a->strings["System info messages"] = "System – Info-Nachrichten"; +$a->strings["System critical alerts"] = "System – kritische Warnungen"; +$a->strings["New connections"] = "Neue Verbindungen"; +$a->strings["System Registrations"] = "System – Registrierungen"; +$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an"; +$a->strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus"; +$a->strings["Must be greater than 0"] = "Muss größer als 0 sein"; +$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen"; +$a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen"; +$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!"; +$a->strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; +$a->strings["Default photo upload folder"] = "Voreingestellter Ordner für hochgeladene Fotos"; +$a->strings["Default file upload folder"] = "Voreingestellter Ordner für hochgeladene Dateien"; +$a->strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals"; +$a->strings["Remove this channel."] = "Diesen Kanal löschen"; +$a->strings["Xchan Lookup"] = "Xchan-Suche"; +$a->strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; +$a->strings["Create a new channel"] = "Neuen Kanal anlegen"; +$a->strings["Current Channel"] = "Aktueller Kanal"; +$a->strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; +$a->strings["Default Channel"] = "Standard Kanal"; +$a->strings["Make Default"] = "Zum Standard machen"; +$a->strings["%d new messages"] = "%d neue Nachrichten"; +$a->strings["%d new introductions"] = "%d neue Vorstellungen"; +$a->strings["Delegated Channels"] = "Delegierte Kanäle"; +$a->strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; +$a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; +$a->strings["Blocked"] = "Blockiert"; +$a->strings["Ignored"] = "Ignoriert"; +$a->strings["Hidden"] = "Versteckt"; +$a->strings["Archived"] = "Archiviert"; +$a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen"; +$a->strings["New Connections"] = "Neue Verbindungen"; +$a->strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; +$a->strings["All Connections"] = "Alle Verbindungen"; +$a->strings["Show all connections"] = "Alle Verbindungen anzeigen"; +$a->strings["Unblocked"] = "Freigegeben"; +$a->strings["Only show unblocked connections"] = "Nur freigegebene Verbindungen anzeigen"; +$a->strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; +$a->strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; +$a->strings["Only show archived connections"] = "Nur archivierte Verbindungen anzeigen"; +$a->strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit connection"] = "Verbindung bearbeiten"; +$a->strings["Search your connections"] = "Verbindungen durchsuchen"; +$a->strings["Finding: "] = "Ergebnisse:"; +$a->strings["Delete layout?"] = "Layout löschen?"; +$a->strings["Edit Layout"] = "Layout bearbeiten"; +$a->strings["Delete webpage?"] = "Webseite löschen?"; +$a->strings["Page link title"] = "Seitentitel-Link"; +$a->strings["Edit Webpage"] = "Webseite bearbeiten"; +$a->strings["Collection created."] = "Sammlung erstellt."; +$a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; +$a->strings["Collection updated."] = "Sammlung aktualisiert."; +$a->strings["Create a collection of channels."] = "Erstelle eine Sammlung von Kanälen."; +$a->strings["Collection Name: "] = "Name der Sammlung:"; +$a->strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; +$a->strings["Collection removed."] = "Sammlung gelöscht."; +$a->strings["Unable to remove collection."] = "Löschen der Sammlung nicht möglich."; +$a->strings["Collection Editor"] = "Sammlung-Editor"; +$a->strings["Members"] = "Mitglieder"; +$a->strings["All Connected Channels"] = "Alle verbundenen Kanäle"; +$a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; +$a->strings["Continue"] = "Fortfahren"; +$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; +$a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; +$a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; +$a->strings["No connections."] = "Keine Verbindungen."; +$a->strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; +$a->strings["Location not found."] = "Klon nicht gefunden."; +$a->strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; +$a->strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; +$a->strings["No locations found."] = "Keine Klon-Adressen gefunden."; +$a->strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +$a->strings["Location (address)"] = "URL (Adresse)"; +$a->strings["Primary Location"] = "Primärer Klon"; +$a->strings["Drop location"] = "Klon löschen"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; +$a->strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung"; +$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; +$a->strings["Could not create table."] = "Kann Tabelle nicht erstellen."; +$a->strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; +$a->strings["System check"] = "Systemprüfung"; +$a->strings["Check again"] = "Bitte nochmal prüfen"; +$a->strings["Database connection"] = "Datenbank Verbindung"; +$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; +$a->strings["Database Server Name"] = "Datenbank-Servername"; +$a->strings["Default is localhost"] = "Standard ist localhost"; +$a->strings["Database Port"] = "Datenbank-Port"; +$a->strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; +$a->strings["Database Login Name"] = "Datenbank-Benutzername"; +$a->strings["Database Login Password"] = "Datenbank-Kennwort"; +$a->strings["Database Name"] = "Datenbank-Name"; +$a->strings["Database Type"] = "Datenbanktyp"; +$a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; +$a->strings["Website URL"] = "Server-URL"; +$a->strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; +$a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; +$a->strings["Site settings"] = "Seiteneinstellungen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; +$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."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; +$a->strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; +$a->strings["Command line PHP"] = "PHP Befehlszeile"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; +$a->strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden."; +$a->strings["You can adjust these settings in the servers php.ini."] = "Du kannst diese Einstellungen in der php.ini des Servers ändern."; +$a->strings["PHP upload limits"] = "PHP-Hochladebeschränkungen"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; +$a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; +$a->strings["libCurl PHP module"] = "libCurl-PHP-Modul"; +$a->strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; +$a->strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; +$a->strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; +$a->strings["mb_string PHP module"] = "mb_string-PHP-Modul"; +$a->strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; +$a->strings["xml PHP module"] = "xml-PHP-Modul"; +$a->strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; +$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"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; +$a->strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; +$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."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; +$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."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; +$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."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; +$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."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; +$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."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; +$a->strings["%s is writable"] = "%s ist beschreibbar"; +$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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; +$a->strings["store is writable"] = "store ist schreibbar"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; +$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!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; +$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."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; +$a->strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; +$a->strings["Url rewrite is working"] = "Url rewrite funktioniert"; +$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."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; +$a->strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; +$a->strings["

What next

"] = "

Was als Nächstes

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; $a->strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; +$a->strings["NEW"] = "NEU"; $a->strings["Remove all files"] = "Alle Dateien löschen"; $a->strings["Remove this file"] = "Diese Datei löschen"; -$a->strings["Schema Default"] = "Standard-Schema"; -$a->strings["Sans-Serif"] = "Sans-Serif"; -$a->strings["Monospace"] = "Monospace"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; +$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["Profile deleted."] = "Profil gelöscht."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Neues Profil erstellt."; +$a->strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; +$a->strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; +$a->strings["Profile Name is required."] = "Profil-Name erforderlich."; +$a->strings["Marital Status"] = "Familienstand"; +$a->strings["Romantic Partner"] = "Romantische Partner"; +$a->strings["Likes"] = "Gefällt"; +$a->strings["Dislikes"] = "Gefällt nicht"; +$a->strings["Work/Employment"] = "Arbeit/Anstellung"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Politische Ansichten"; +$a->strings["Sexual Preference"] = "Sexuelle Orientierung"; +$a->strings["Homepage"] = "Webseite"; +$a->strings["Interests"] = "Hobbys/Interessen"; +$a->strings["Profile updated."] = "Profil aktualisiert."; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"; +$a->strings["Edit Profile Details"] = "Bearbeite Profil-Details"; +$a->strings["View this profile"] = "Dieses Profil ansehen"; +$a->strings["Change Profile Photo"] = "Profilfoto ändern"; +$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; +$a->strings["Clone this profile"] = "Dieses Profil klonen"; +$a->strings["Delete this profile"] = "Dieses Profil löschen"; +$a->strings["Import profile from file"] = "Profil aus einer Datei importieren"; +$a->strings["Export profile to file"] = "Profil in eine Datei exportieren"; +$a->strings["Profile Name:"] = "Profilname:"; +$a->strings["Your Full Name:"] = "Dein voller Name:"; +$a->strings["Title/Description:"] = "Titel/Beschreibung:"; +$a->strings["Your Gender:"] = "Dein Geschlecht:"; +$a->strings["Birthday :"] = "Geburtstag:"; +$a->strings["Street Address:"] = "Straße und Hausnummer:"; +$a->strings["Locality/City:"] = "Wohnort:"; +$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Region/Bundesstaat:"; +$a->strings[" Marital Status:"] = " Beziehungsstatus:"; +$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Seit [Datum]:"; +$a->strings["Homepage URL:"] = "Homepage URL:"; +$a->strings["Religious Views:"] = "Religiöse Ansichten:"; +$a->strings["Keywords:"] = "Schlüsselwörter:"; +$a->strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; +$a->strings["Used in directory listings"] = "Wird in Verzeichnis-Auflistungen verwendet"; +$a->strings["Tell us about yourself..."] = "Erzähle uns ein wenig von Dir …"; +$a->strings["Hobbies/Interests"] = "Hobbys/Interessen"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformation und soziale Netzwerke"; +$a->strings["My other channels"] = "Meine anderen Kanäle"; +$a->strings["Musical interests"] = "Musikalische Interessen"; +$a->strings["Books, literature"] = "Bücher, Literatur"; +$a->strings["Television"] = "Fernsehen"; +$a->strings["Film/dance/culture/entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; +$a->strings["Love/romance"] = "Liebe/Romantik"; +$a->strings["Work/employment"] = "Arbeit/Anstellung"; +$a->strings["School/education"] = "Schule/Ausbildung"; +$a->strings["This is your default profile."] = "Das ist Dein Standardprofil."; +$a->strings["Age: "] = "Alter:"; +$a->strings["Edit/Manage Profiles"] = "Profile bearbeiten/verwalten"; +$a->strings["Add profile things"] = "Sachen zum Profil hinzufügen"; +$a->strings["Include desirable objects in your profile"] = "Binde begehrenswerte Dinge in Dein Profil ein"; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; +$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; +$a->strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; +$a->strings["Visible To"] = "Sichtbar für"; +$a->strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; +$a->strings["Save Bookmark"] = "Lesezeichen speichern"; +$a->strings["URL of bookmark"] = "URL des Lesezeichens"; +$a->strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; +$a->strings["Import completed"] = "Import abgeschlossen"; +$a->strings["Import Items"] = "Beiträge importieren"; +$a->strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; +$a->strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; $a->strings["Theme settings"] = "Theme-Einstellungen"; -$a->strings["Set scheme"] = "Schema"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare"; -$a->strings["Set font face"] = "Schriftart"; -$a->strings["Set iconset"] = "Icon-Set"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ausmaß der großen Schatten (Voreinstellung 15px 15px 15px)"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ausmaß der kleinen Schatten (Voreinstellung 5px 5px 5px)"; -$a->strings["Set shadow color, default #000"] = "Farbe der Schatten (Voreinstellung #000)"; -$a->strings["Set radius size, default 5px"] = "Ecken-Radius (Voreinstellung 5px)"; -$a->strings["Set line-height for posts and comments"] = "Zeilenhöhe in Beiträgen und Kommentaren"; -$a->strings["Set background image"] = "Hintergrundbild"; -$a->strings["Set background attachment"] = "Hintergrunddatei"; -$a->strings["Set background color"] = "Hintergrundfarbe"; -$a->strings["Set section background image"] = "Hintergrundbild für die Section"; -$a->strings["Set section background color"] = "Hintergrundfarbe für die Section"; -$a->strings["Set color of items - use hex"] = "Farbe für Beiträge – Hex benutzen"; -$a->strings["Set color of links - use hex"] = "Farbe für Links – Hex benutzen"; -$a->strings["Set max-width for items. Default 400px"] = "Maximale Breite von Beiträgen (Voreinstellung 400px)"; -$a->strings["Set min-width for items. Default 240px"] = "Minimale Breite von Beiträgen (Voreinstellung 240px)"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Breite des \"generic content wrapper\" (Voreinstellung 48%)"; -$a->strings["Set color of fonts - use hex"] = "Schriftfarbe – Hex benutzen"; -$a->strings["Set background-size element"] = "Größe des Hintergrund-Elements"; -$a->strings["Item opacity"] = "Deckkraft der Beiträge"; -$a->strings["Display post previews only"] = "Nur Beitragsvorschau anzeigen"; -$a->strings["Display side bar on channel page"] = "Zeige die Seitenleiste auf der Kanal-Seite"; -$a->strings["Colour of the navigation bar"] = "Farbe der Navigationsleiste"; -$a->strings["Item float"] = "Beitragsfluss"; -$a->strings["Left offset of the section element"] = "Linker Rand des Section Elements"; -$a->strings["Right offset of the section element"] = "Rechter Rand des Section Elements"; -$a->strings["Section width"] = "Breite der Section"; -$a->strings["Left offset of the aside"] = "Linker Rand des Aside-Elements"; -$a->strings["Right offset of the aside element"] = "Rechter Rand des Aside-Elements"; -$a->strings["Light (Red Matrix default)"] = "Hell (RedMatrix-Voreinstellung)"; +$a->strings["Select scheme"] = "Schema wählen"; $a->strings["Narrow navbar"] = "Schmale Navigationsleiste"; $a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; $a->strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben"; @@ -2058,22 +2145,25 @@ $a->strings["Set the indent for comments"] = "Einzugsbreite für Kommentare"; $a->strings["Set the basic color for item icons"] = "Grundfarbe für Beitrags-Icons"; $a->strings["Set the hover color for item icons"] = "Farbe für Beitrags-Icons unter dem Mauszeiger"; $a->strings["Set font-size for the entire application"] = "Schriftgröße für die gesamte Anwendung"; +$a->strings["Example: 14px"] = "Beispiel: 14px"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare"; $a->strings["Set font-color for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare"; $a->strings["Set radius of corners"] = "Ecken-Radius"; $a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos"; -$a->strings["Set maximum width of conversation regions"] = "Maximalbreite der Unterhaltungsbereiche"; -$a->strings["Center conversation regions"] = "Konversationsbereich zentrieren"; +$a->strings["Set maximum width of content region in pixel"] = "Maximalbreite des Inhaltsbereichs in Pixel festlegen"; +$a->strings["Leave empty for default width"] = "Leer lassen für Standardbreite"; +$a->strings["Left align page content"] = "Seiteninhalt linksbündig anzeigen"; $a->strings["Set minimum opacity of nav bar - to hide it"] = "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)"; $a->strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern"; $a->strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren"; -$a->strings["Sloppy photo albums"] = "Schräge Fotoalben"; -$a->strings["Are you a clean desk or a messy desk person?"] = "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"; $a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; $a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; -$a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."; +$a->strings["Create an account to access services and applications within the Hubzilla"] = "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können."; $a->strings["Password"] = "Kennwort"; $a->strings["Remember me"] = "Angaben speichern"; $a->strings["Forgot your password?"] = "Passwort vergessen?"; -$a->strings["permission denied"] = "Zugriff verweigert"; -$a->strings["Got Zot?"] = "Haste schon Zot?"; $a->strings["toggle mobile"] = "auf/von mobile Ansicht wechseln"; +$a->strings["Website SSL certificate is not valid. Please correct."] = "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben."; +$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Website-SSL-Fehler für %s"; +$a->strings["Cron/Scheduled tasks not running."] = "Cron-Aufgaben laufen nicht."; +$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron-Aufgaben für %s laufen nicht"; -- cgit v1.2.3 From b5f382f0ea8b254ffaaac47db3936676af62b745 Mon Sep 17 00:00:00 2001 From: zottel Date: Wed, 30 Sep 2015 14:05:10 +0200 Subject: update German strings --- view/de/messages.po | 3655 ++++++++++++++++++++++++++------------------------- view/de/strings.php | 532 ++++---- 2 files changed, 2098 insertions(+), 2089 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index d3aaee480..460fd764b 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -15,21 +15,21 @@ # Frank Dieckmann , 2013 # Frank Dieckmann , 2013 # Kai , 2015 -# Oliver , 2013-2014 +# Oliver , 2013-2015 # Phellmes , 2014 # Steff , 2015 -# bavatar , 2013-2014 +# bavatar , 2013-2015 # do.t , 2014 # zottel , 2013-2015 -# sasiflo , 2014 +# sasiflo , 2014-2015 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-19 00:04-0700\n" -"PO-Revision-Date: 2015-06-24 13:12+0000\n" -"Last-Translator: zottel \n" -"Language-Team: German (http://www.transifex.com/projects/p/red-matrix/language/de/)\n" +"POT-Creation-Date: 2015-09-25 00:05-0700\n" +"PO-Revision-Date: 2015-09-30 11:58+0000\n" +"Last-Translator: Oliver \n" +"Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -47,902 +47,935 @@ msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" msgid "Profile Photos" msgstr "Profilfotos" -#: ../../include/text.php:395 -msgid "prev" -msgstr "vorherige" +#: ../../include/menu.php:107 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:266 +#: ../../include/ItemObject.php:100 ../../include/apps.php:254 +#: ../../mod/webpages.php:181 ../../mod/thing.php:255 +#: ../../mod/connections.php:242 ../../mod/connections.php:255 +#: ../../mod/connections.php:274 ../../mod/blocks.php:153 +#: ../../mod/editpost.php:106 ../../mod/editlayout.php:133 +#: ../../mod/editwebpage.php:178 ../../mod/editblock.php:134 +#: ../../mod/menu.php:106 ../../mod/settings.php:650 ../../mod/layouts.php:183 +msgid "Edit" +msgstr "Bearbeiten" -#: ../../include/text.php:397 -msgid "first" -msgstr "erste" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Häufig" -#: ../../include/text.php:426 -msgid "last" -msgstr "letzte" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" -#: ../../include/text.php:429 -msgid "next" -msgstr "nächste" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" -#: ../../include/text.php:439 -msgid "older" -msgstr "älter" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Täglich" -#: ../../include/text.php:441 -msgid "newer" -msgstr "neuer" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" -#: ../../include/text.php:834 -msgid "No connections" -msgstr "Keine Verbindungen" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" -#: ../../include/text.php:848 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Verbindung" -msgstr[1] "%d Verbindungen" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/text.php:861 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "Verbindungen anzeigen" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/text.php:918 ../../include/text.php:930 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "Suche" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/text.php:919 ../../include/text.php:931 -#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1457 -#: ../../mod/admin.php:1477 -msgid "Save" -msgstr "Speichern" +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 +#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 +#: ../../boot.php:1552 +msgid "Email" +msgstr "E-Mail" -#: ../../include/text.php:994 -msgid "poke" -msgstr "anstupsen" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/text.php:994 ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/text.php:995 -msgid "ping" -msgstr "anpingen" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../include/text.php:995 -msgid "pinged" -msgstr "pingte" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/text.php:996 -msgid "prod" -msgstr "knuffen" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/text.php:996 -msgid "prodded" -msgstr "knuffte" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/text.php:997 -msgid "slap" -msgstr "ohrfeigen" +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "Neuer Beitrag wurde erzeugt" -#: ../../include/text.php:997 -msgid "slapped" -msgstr "ohrfeigte" +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "hat %s's Beitrag kommentiert" -#: ../../include/text.php:998 -msgid "finger" -msgstr "befummeln" +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." +msgstr "Kein Benutzername in der Importdatei gefunden." -#: ../../include/text.php:998 -msgid "fingered" -msgstr "befummelte" +#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." -#: ../../include/text.php:999 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" +#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 +msgid "Import completed." +msgstr "Import abgeschlossen." -#: ../../include/text.php:999 -msgid "rebuffed" -msgstr "zurückgewiesen" +#: ../../include/group.php:26 +msgid "" +"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." +msgstr "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen." -#: ../../include/text.php:1009 -msgid "happy" -msgstr "glücklich" +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Standard-Sammlung für neue Kontakte" -#: ../../include/text.php:1010 -msgid "sad" -msgstr "traurig" +#: ../../include/group.php:254 ../../mod/admin.php:831 +msgid "All Channels" +msgstr "Alle Kanäle" -#: ../../include/text.php:1011 -msgid "mellow" -msgstr "sanft" +#: ../../include/group.php:276 +msgid "edit" +msgstr "Bearbeiten" -#: ../../include/text.php:1012 -msgid "tired" -msgstr "müde" +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Sammlungen" -#: ../../include/text.php:1013 -msgid "perky" -msgstr "frech" +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Sammlung bearbeiten" -#: ../../include/text.php:1014 -msgid "angry" -msgstr "sauer" +#: ../../include/group.php:300 +msgid "Add new collection" +msgstr "Neue Sammlung hinzufügen" -#: ../../include/text.php:1015 -msgid "stupified" -msgstr "verblüfft" +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanäle, die nicht in einer Sammlung sind" -#: ../../include/text.php:1016 -msgid "puzzled" -msgstr "verwirrt" +#: ../../include/group.php:303 ../../include/widgets.php:275 +msgid "add" +msgstr "hinzufügen" -#: ../../include/text.php:1017 -msgid "interested" -msgstr "interessiert" +#: ../../include/account.php:27 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" -#: ../../include/text.php:1018 -msgid "bitter" -msgstr "verbittert" +#: ../../include/account.php:29 +msgid "Your email domain is not among those allowed on this site" +msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt" -#: ../../include/text.php:1019 -msgid "cheerful" -msgstr "fröhlich" +#: ../../include/account.php:35 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." -#: ../../include/text.php:1020 -msgid "alive" -msgstr "lebendig" +#: ../../include/account.php:67 +msgid "An invitation is required." +msgstr "Eine Einladung ist erforderlich." -#: ../../include/text.php:1021 -msgid "annoyed" -msgstr "verärgert" +#: ../../include/account.php:71 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden" -#: ../../include/text.php:1022 -msgid "anxious" -msgstr "unruhig" +#: ../../include/account.php:121 +msgid "Please enter the required information." +msgstr "Bitte gib die erforderlichen Informationen ein." -#: ../../include/text.php:1023 -msgid "cranky" -msgstr "schrullig" +#: ../../include/account.php:188 +msgid "Failed to store account information." +msgstr "Speichern der Account-Informationen fehlgeschlagen" -#: ../../include/text.php:1024 -msgid "disturbed" -msgstr "verstört" +#: ../../include/account.php:246 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" -#: ../../include/text.php:1025 -msgid "frustrated" -msgstr "frustriert" +#: ../../include/account.php:312 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" -#: ../../include/text.php:1026 -msgid "depressed" -msgstr "deprimiert" +#: ../../include/account.php:314 ../../include/account.php:341 +#: ../../include/account.php:401 ../../include/network.php:1632 +msgid "Administrator" +msgstr "Administrator" -#: ../../include/text.php:1027 -msgid "motivated" -msgstr "motiviert" +#: ../../include/account.php:336 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" -#: ../../include/text.php:1028 -msgid "relaxed" -msgstr "entspannt" +#: ../../include/account.php:339 ../../include/account.php:399 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" -#: ../../include/text.php:1029 -msgid "surprised" -msgstr "überrascht" +#: ../../include/account.php:408 +msgid "Account approved." +msgstr "Account bestätigt." -#: ../../include/text.php:1201 -msgid "Monday" -msgstr "Montag" +#: ../../include/account.php:447 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s widerrufen" -#: ../../include/text.php:1201 -msgid "Tuesday" -msgstr "Dienstag" +#: ../../include/account.php:492 +msgid "Account verified. Please login." +msgstr "Konto geprüft. Bitte melde Dich an!" -#: ../../include/text.php:1201 -msgid "Wednesday" -msgstr "Mittwoch" +#: ../../include/account.php:705 ../../include/account.php:707 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/text.php:1201 -msgid "Thursday" -msgstr "Donnerstag" +#: ../../include/account.php:713 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../include/text.php:1201 -msgid "Friday" -msgstr "Freitag" +#: ../../include/account.php:718 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../include/text.php:1201 -msgid "Saturday" -msgstr "Samstag" +#: ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Verschiedenes" -#: ../../include/text.php:1201 -msgid "Sunday" -msgstr "Sonntag" +#: ../../include/datetime.php:132 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" -#: ../../include/text.php:1205 -msgid "January" -msgstr "Januar" +#: ../../include/datetime.php:235 ../../mod/events.php:672 +#: ../../mod/appman.php:91 ../../mod/appman.php:92 +msgid "Required" +msgstr "Erforderlich" -#: ../../include/text.php:1205 -msgid "February" -msgstr "Februar" +#: ../../include/datetime.php:262 ../../boot.php:2353 +msgid "never" +msgstr "Nie" -#: ../../include/text.php:1205 -msgid "March" -msgstr "März" +#: ../../include/datetime.php:268 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" -#: ../../include/text.php:1205 -msgid "April" -msgstr "April" +#: ../../include/datetime.php:271 +msgid "year" +msgstr "Jahr" -#: ../../include/text.php:1205 -msgid "May" -msgstr "Mai" +#: ../../include/datetime.php:271 +msgid "years" +msgstr "Jahre" -#: ../../include/text.php:1205 -msgid "June" -msgstr "Juni" +#: ../../include/datetime.php:272 +msgid "month" +msgstr "Monat" -#: ../../include/text.php:1205 -msgid "July" -msgstr "Juli" +#: ../../include/datetime.php:272 +msgid "months" +msgstr "Monate" -#: ../../include/text.php:1205 -msgid "August" -msgstr "August" +#: ../../include/datetime.php:273 +msgid "week" +msgstr "Woche" -#: ../../include/text.php:1205 -msgid "September" -msgstr "September" +#: ../../include/datetime.php:273 +msgid "weeks" +msgstr "Wochen" -#: ../../include/text.php:1205 -msgid "October" -msgstr "Oktober" +#: ../../include/datetime.php:274 +msgid "day" +msgstr "Tag" -#: ../../include/text.php:1205 -msgid "November" -msgstr "November" +#: ../../include/datetime.php:274 +msgid "days" +msgstr "Tage" -#: ../../include/text.php:1205 -msgid "December" -msgstr "Dezember" +#: ../../include/datetime.php:275 +msgid "hour" +msgstr "Stunde" -#: ../../include/text.php:1310 -msgid "unknown.???" -msgstr "unbekannt.???" +#: ../../include/datetime.php:275 +msgid "hours" +msgstr "Stunden" -#: ../../include/text.php:1311 -msgid "bytes" -msgstr "Bytes" +#: ../../include/datetime.php:276 +msgid "minute" +msgstr "Minute" -#: ../../include/text.php:1347 -msgid "remove category" -msgstr "Kategorie entfernen" +#: ../../include/datetime.php:276 +msgid "minutes" +msgstr "Minuten" -#: ../../include/text.php:1422 -msgid "remove from file" -msgstr "aus der Datei entfernen" +#: ../../include/datetime.php:277 +msgid "second" +msgstr "Sekunde" -#: ../../include/text.php:1498 ../../include/text.php:1509 -#: ../../mod/connedit.php:661 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" +#: ../../include/datetime.php:277 +msgid "seconds" +msgstr "Sekunden" -#: ../../include/text.php:1665 ../../mod/events.php:444 -msgid "Link to Source" -msgstr "Link zur Quelle" +#: ../../include/datetime.php:285 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" -#: ../../include/text.php:1686 ../../include/text.php:1757 -msgid "default" -msgstr "Standard" +#: ../../include/datetime.php:519 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" -#: ../../include/text.php:1694 -msgid "Page layout" -msgstr "Seitengestaltung" +#: ../../include/datetime.php:520 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../include/text.php:1694 -msgid "You can create your own with the layouts tool" -msgstr "Mit dem Layouts-Werkzeug kannst Du Deine eigenen Layouts erstellen" +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" -#: ../../include/text.php:1735 -msgid "Page content type" -msgstr "Art des Seiteninhalts" +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Sicherer Modus" -#: ../../include/text.php:1769 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/api.php:106 +#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 +#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 +#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:428 +#: ../../mod/settings.php:579 ../../mod/removeme.php:60 +#: ../../mod/connedit.php:647 ../../mod/connedit.php:675 +#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 +msgid "No" +msgstr "Nein" -#: ../../include/text.php:1888 ../../include/diaspora.php:2101 -#: ../../include/conversation.php:120 ../../mod/like.php:346 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "Foto" +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/api.php:105 +#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 +#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 +#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:430 +#: ../../mod/settings.php:579 ../../mod/removeme.php:60 +#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 +msgid "Yes" +msgstr "Ja" -#: ../../include/text.php:1891 ../../include/conversation.php:123 -#: ../../mod/like.php:348 ../../mod/tagger.php:47 -msgid "event" -msgstr "Termin" +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" -#: ../../include/text.php:1894 ../../include/diaspora.php:2101 -#: ../../include/conversation.php:148 ../../mod/like.php:346 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:51 -msgid "status" -msgstr "Status" +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Nur diese Website" -#: ../../include/text.php:1896 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "Kommentar" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Neue Seite" + +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:187 +#: ../../mod/blocks.php:159 ../../mod/layouts.php:188 +msgid "View" +msgstr "Ansicht" + +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 +#: ../../include/conversation.php:1166 ../../mod/webpages.php:188 +#: ../../mod/events.php:690 ../../mod/editpost.php:143 +#: ../../mod/photos.php:982 ../../mod/editwebpage.php:214 +#: ../../mod/editblock.php:170 +msgid "Preview" +msgstr "Vorschau" -#: ../../include/text.php:1901 -msgid "activity" -msgstr "Aktivität" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Aktionen" -#: ../../include/text.php:2196 -msgid "Design Tools" -msgstr "Gestaltungswerkzeuge" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../include/text.php:2199 ../../mod/blocks.php:147 -msgid "Blocks" -msgstr "Blöcke" +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" -#: ../../include/text.php:2200 ../../mod/menu.php:98 -msgid "Menus" -msgstr "Menüs" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:192 +#: ../../mod/blocks.php:150 ../../mod/menu.php:108 ../../mod/layouts.php:181 +msgid "Created" +msgstr "Erstellt" -#: ../../include/text.php:2201 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "Gestaltungen" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:193 +#: ../../mod/blocks.php:151 ../../mod/menu.php:109 ../../mod/layouts.php:182 +msgid "Edited" +msgstr "Geändert" -#: ../../include/text.php:2202 -msgid "Pages" -msgstr "Seiten" +#: ../../include/api.php:1234 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" -#: ../../include/text.php:2553 ../../include/RedDAV/RedBrowser.php:131 -msgid "Collection" -msgstr "Ordner" +#: ../../include/comanche.php:34 ../../mod/admin.php:390 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "Standard" -#: ../../include/menu.php:107 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:269 -#: ../../include/ItemObject.php:100 ../../include/apps.php:254 -#: ../../mod/webpages.php:181 ../../mod/thing.php:227 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/blocks.php:153 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:178 -#: ../../mod/editpost.php:113 ../../mod/menu.php:103 -#: ../../mod/editblock.php:140 ../../mod/settings.php:650 -#: ../../mod/layouts.php:183 -msgid "Edit" -msgstr "Bearbeiten" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dieses Element löschen?" -#: ../../include/diaspora.php:2130 ../../include/conversation.php:164 -#: ../../mod/like.php:394 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 +#: ../../mod/photos.php:980 ../../mod/photos.php:1098 +msgid "Comment" +msgstr "Kommentar" -#: ../../include/diaspora.php:2458 -msgid "Please choose" -msgstr "Bitte auswählen" +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 +msgid "[+] show all" +msgstr "[+] Alle anzeigen" -#: ../../include/diaspora.php:2460 -msgid "Agree" -msgstr "Zustimmen" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] Weniger anzeigen" -#: ../../include/diaspora.php:2462 -msgid "Disagree" -msgstr "Ablehnen" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] aufklappen" -#: ../../include/diaspora.php:2464 -msgid "Abstain" -msgstr "Enthalten" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] einklappen" -#: ../../include/diaspora.php:2486 ../../include/diaspora.php:2497 -#: ../../include/enotify.php:59 ../../mod/p.php:46 -msgid "$projectname" -msgstr "$projectname" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Kennwort zu kurz" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Kennwörter stimmen nicht überein" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" +#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +msgid "everybody" +msgstr "alle" -#: ../../include/group.php:26 -msgid "" -"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." -msgstr "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen." +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "geheime Passphrase" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standard-Sammlung für neue Kontakte" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Hinweis zur Passphrase" -#: ../../include/group.php:254 ../../mod/admin.php:831 -msgid "All Channels" -msgstr "Alle Kanäle" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." -#: ../../include/group.php:276 -msgid "edit" -msgstr "Bearbeiten" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alle schließen" -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Sammlungen" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nichts Neues hier" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Sammlung bearbeiten" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "Neue Sammlung hinzufügen" +#: ../../include/js_strings.php:20 ../../mod/rate.php:156 +#: ../../mod/connedit.php:683 +msgid "Rating" +msgstr "Bewertung" -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Beschreibung (optional)" -#: ../../include/group.php:303 ../../include/widgets.php:275 -msgid "add" -msgstr "hinzufügen" +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 +#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/thing.php:303 +#: ../../mod/thing.php:346 ../../mod/events.php:511 ../../mod/events.php:693 +#: ../../mod/group.php:81 ../../mod/photos.php:577 ../../mod/photos.php:654 +#: ../../mod/photos.php:941 ../../mod/photos.php:981 ../../mod/photos.php:1099 +#: ../../mod/pdledit.php:58 ../../mod/import.php:592 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/mitem.php:235 ../../mod/rate.php:167 +#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:156 +#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 +#: ../../mod/profiles.php:667 ../../mod/setup.php:327 ../../mod/setup.php:367 +#: ../../mod/admin.php:453 ../../mod/admin.php:819 ../../mod/admin.php:986 +#: ../../mod/admin.php:1118 ../../mod/admin.php:1312 ../../mod/admin.php:1397 +#: ../../mod/settings.php:588 ../../mod/settings.php:692 +#: ../../mod/settings.php:718 ../../mod/settings.php:746 +#: ../../mod/settings.php:769 ../../mod/settings.php:854 +#: ../../mod/settings.php:1050 ../../mod/mood.php:134 +#: ../../mod/connedit.php:704 ../../mod/mail.php:355 ../../mod/appman.php:99 +#: ../../mod/pconfig.php:108 ../../mod/poll.php:68 +#: ../../mod/bulksetclose.php:24 ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Bestätigen" -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Bitte geben Sie eine Link-URL ein" -#: ../../include/account.php:29 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Ungespeicherte Änderungen. Sind Sie sicher, dass Sie diese Seite verlassen möchten?" -#: ../../include/account.php:35 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." +#: ../../include/js_strings.php:26 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "Eine Einladung ist erforderlich." +#: ../../include/js_strings.php:27 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden" +#: ../../include/js_strings.php:28 +msgid "ago" +msgstr "her" -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "Bitte gib die erforderlichen Informationen ein." +#: ../../include/js_strings.php:29 +msgid "from now" +msgstr "von jetzt" -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "Speichern der Account-Informationen fehlgeschlagen" +#: ../../include/js_strings.php:30 +msgid "less than a minute" +msgstr "weniger als eine Minute" -#: ../../include/account.php:246 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" +#: ../../include/js_strings.php:31 +msgid "about a minute" +msgstr "ungefähr eine Minute" -#: ../../include/account.php:312 +#: ../../include/js_strings.php:32 #, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" +msgid "%d minutes" +msgstr "%d Minuten" -#: ../../include/account.php:314 ../../include/account.php:341 -#: ../../include/account.php:401 -msgid "Administrator" -msgstr "Administrator" +#: ../../include/js_strings.php:33 +msgid "about an hour" +msgstr "ungefähr eine Stunde" -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" +#: ../../include/js_strings.php:34 +#, php-format +msgid "about %d hours" +msgstr "ungefähr %d Stunden" -#: ../../include/account.php:339 ../../include/account.php:399 +#: ../../include/js_strings.php:35 +msgid "a day" +msgstr "ein Tag" + +#: ../../include/js_strings.php:36 #, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" +msgid "%d days" +msgstr "%d Tage" -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "Account bestätigt." +#: ../../include/js_strings.php:37 +msgid "about a month" +msgstr "ungefähr ein Monat" -#: ../../include/account.php:447 +#: ../../include/js_strings.php:38 #, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s widerrufen" +msgid "%d months" +msgstr "%d Monate" -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "Konto geprüft. Bitte melde Dich an!" +#: ../../include/js_strings.php:39 +msgid "about a year" +msgstr "ungefähr ein Jahr" -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." +#: ../../include/js_strings.php:40 +#, php-format +msgid "%d years" +msgstr "%d Jahre" -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." +#: ../../include/js_strings.php:41 +msgid " " +msgstr " " + +#: ../../include/js_strings.php:42 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." +#: ../../include/text.php:391 +msgid "prev" +msgstr "vorherige" -#: ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Verschiedenes" +#: ../../include/text.php:393 +msgid "first" +msgstr "erste" -#: ../../include/datetime.php:132 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" +#: ../../include/text.php:422 +msgid "last" +msgstr "letzte" -#: ../../include/datetime.php:235 ../../mod/events.php:635 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Erforderlich" +#: ../../include/text.php:425 +msgid "next" +msgstr "nächste" -#: ../../include/datetime.php:262 ../../boot.php:2354 -msgid "never" -msgstr "Nie" +#: ../../include/text.php:435 +msgid "older" +msgstr "älter" -#: ../../include/datetime.php:268 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" +#: ../../include/text.php:437 +msgid "newer" +msgstr "neuer" -#: ../../include/datetime.php:271 -msgid "year" -msgstr "Jahr" +#: ../../include/text.php:830 +msgid "No connections" +msgstr "Keine Verbindungen" -#: ../../include/datetime.php:271 -msgid "years" -msgstr "Jahre" +#: ../../include/text.php:844 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d Verbindung" +msgstr[1] "%d Verbindungen" -#: ../../include/datetime.php:272 -msgid "month" -msgstr "Monat" +#: ../../include/text.php:857 ../../mod/viewconnections.php:104 +msgid "View Connections" +msgstr "Verbindungen anzeigen" -#: ../../include/datetime.php:272 -msgid "months" -msgstr "Monate" +#: ../../include/text.php:914 ../../include/text.php:926 +#: ../../include/nav.php:165 ../../include/apps.php:147 +#: ../../mod/search.php:38 +msgid "Search" +msgstr "Suche" -#: ../../include/datetime.php:273 -msgid "week" -msgstr "Woche" +#: ../../include/text.php:915 ../../include/text.php:927 +#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1457 +#: ../../mod/admin.php:1477 +msgid "Save" +msgstr "Speichern" -#: ../../include/datetime.php:273 -msgid "weeks" -msgstr "Wochen" +#: ../../include/text.php:990 +msgid "poke" +msgstr "anstupsen" -#: ../../include/datetime.php:274 -msgid "day" -msgstr "Tag" +#: ../../include/text.php:990 ../../include/conversation.php:243 +msgid "poked" +msgstr "stupste" -#: ../../include/datetime.php:274 -msgid "days" -msgstr "Tage" +#: ../../include/text.php:991 +msgid "ping" +msgstr "anpingen" -#: ../../include/datetime.php:275 -msgid "hour" -msgstr "Stunde" +#: ../../include/text.php:991 +msgid "pinged" +msgstr "pingte" -#: ../../include/datetime.php:275 -msgid "hours" -msgstr "Stunden" +#: ../../include/text.php:992 +msgid "prod" +msgstr "knuffen" -#: ../../include/datetime.php:276 -msgid "minute" -msgstr "Minute" +#: ../../include/text.php:992 +msgid "prodded" +msgstr "knuffte" -#: ../../include/datetime.php:276 -msgid "minutes" -msgstr "Minuten" +#: ../../include/text.php:993 +msgid "slap" +msgstr "ohrfeigen" -#: ../../include/datetime.php:277 -msgid "second" -msgstr "Sekunde" +#: ../../include/text.php:993 +msgid "slapped" +msgstr "ohrfeigte" -#: ../../include/datetime.php:277 -msgid "seconds" -msgstr "Sekunden" +#: ../../include/text.php:994 +msgid "finger" +msgstr "befummeln" -#: ../../include/datetime.php:285 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" +#: ../../include/text.php:994 +msgid "fingered" +msgstr "befummelte" -#: ../../include/datetime.php:519 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" +#: ../../include/text.php:995 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" -#: ../../include/datetime.php:520 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" +#: ../../include/text.php:995 +msgid "rebuffed" +msgstr "zurückgewiesen" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" +#: ../../include/text.php:1005 +msgid "happy" +msgstr "glücklich" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:187 -#: ../../mod/blocks.php:159 ../../mod/layouts.php:188 -msgid "View" -msgstr "Ansicht" +#: ../../include/text.php:1006 +msgid "sad" +msgstr "traurig" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1155 ../../mod/webpages.php:188 -#: ../../mod/events.php:653 ../../mod/photos.php:982 -#: ../../mod/editwebpage.php:214 ../../mod/editpost.php:150 -#: ../../mod/editblock.php:176 -msgid "Preview" -msgstr "Vorschau" +#: ../../include/text.php:1007 +msgid "mellow" +msgstr "sanft" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "Aktionen" +#: ../../include/text.php:1008 +msgid "tired" +msgstr "müde" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../include/text.php:1009 +msgid "perky" +msgstr "frech" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" +#: ../../include/text.php:1010 +msgid "angry" +msgstr "sauer" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:192 -#: ../../mod/blocks.php:150 ../../mod/menu.php:105 ../../mod/layouts.php:181 -msgid "Created" -msgstr "Erstellt" +#: ../../include/text.php:1011 +msgid "stupified" +msgstr "verblüfft" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:193 -#: ../../mod/blocks.php:151 ../../mod/menu.php:106 ../../mod/layouts.php:182 -msgid "Edited" -msgstr "Geändert" +#: ../../include/text.php:1012 +msgid "puzzled" +msgstr "verwirrt" -#: ../../include/api.php:1193 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" +#: ../../include/text.php:1013 +msgid "interested" +msgstr "interessiert" -#: ../../include/comanche.php:34 ../../mod/admin.php:390 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" +#: ../../include/text.php:1014 +msgid "bitter" +msgstr "verbittert" -#: ../../include/dir_fns.php:143 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" +#: ../../include/text.php:1015 +msgid "cheerful" +msgstr "fröhlich" -#: ../../include/dir_fns.php:144 -msgid "Alphabetic" -msgstr "alphabetisch" +#: ../../include/text.php:1016 +msgid "alive" +msgstr "lebendig" -#: ../../include/dir_fns.php:145 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" +#: ../../include/text.php:1017 +msgid "annoyed" +msgstr "verärgert" -#: ../../include/dir_fns.php:146 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" +#: ../../include/text.php:1018 +msgid "anxious" +msgstr "unruhig" -#: ../../include/dir_fns.php:147 -msgid "Oldest to Newest" -msgstr "Älteste zuerst" +#: ../../include/text.php:1019 +msgid "cranky" +msgstr "schrullig" -#: ../../include/dir_fns.php:148 -msgid "Sort" -msgstr "Sortieren" +#: ../../include/text.php:1020 +msgid "disturbed" +msgstr "verstört" -#: ../../include/dir_fns.php:152 -msgid "Safe Mode" -msgstr "Sicherer Modus" +#: ../../include/text.php:1021 +msgid "frustrated" +msgstr "frustriert" -#: ../../include/dir_fns.php:154 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" +#: ../../include/text.php:1022 +msgid "depressed" +msgstr "deprimiert" -#: ../../include/dir_fns.php:155 -msgid "This Website Only" -msgstr "Nur diese Website" +#: ../../include/text.php:1023 +msgid "motivated" +msgstr "motiviert" -#: ../../include/event.php:19 ../../include/bb2diaspora.php:459 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" +#: ../../include/text.php:1024 +msgid "relaxed" +msgstr "entspannt" -#: ../../include/event.php:27 ../../include/bb2diaspora.php:465 -msgid "Starts:" -msgstr "Beginnt:" +#: ../../include/text.php:1025 +msgid "surprised" +msgstr "überrascht" -#: ../../include/event.php:37 ../../include/bb2diaspora.php:473 -msgid "Finishes:" -msgstr "Endet:" +#: ../../include/text.php:1197 +msgid "Monday" +msgstr "Montag" -#: ../../include/event.php:47 ../../include/bb2diaspora.php:481 -#: ../../include/identity.php:879 ../../mod/events.php:647 -#: ../../mod/directory.php:234 -msgid "Location:" -msgstr "Ort:" +#: ../../include/text.php:1197 +msgid "Tuesday" +msgstr "Dienstag" -#: ../../include/event.php:391 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" +#: ../../include/text.php:1197 +msgid "Wednesday" +msgstr "Mittwoch" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dieses Element löschen?" +#: ../../include/text.php:1197 +msgid "Thursday" +msgstr "Donnerstag" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:980 ../../mod/photos.php:1098 -msgid "Comment" -msgstr "Kommentar" +#: ../../include/text.php:1197 +msgid "Friday" +msgstr "Freitag" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" -msgstr "[+] Alle anzeigen" +#: ../../include/text.php:1197 +msgid "Saturday" +msgstr "Samstag" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Weniger anzeigen" +#: ../../include/text.php:1197 +msgid "Sunday" +msgstr "Sonntag" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] aufklappen" +#: ../../include/text.php:1201 +msgid "January" +msgstr "Januar" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] einklappen" +#: ../../include/text.php:1201 +msgid "February" +msgstr "Februar" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Kennwort zu kurz" +#: ../../include/text.php:1201 +msgid "March" +msgstr "März" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Kennwörter stimmen nicht überein" +#: ../../include/text.php:1201 +msgid "April" +msgstr "April" -#: ../../include/js_strings.php:13 ../../mod/photos.php:40 -msgid "everybody" -msgstr "alle" +#: ../../include/text.php:1201 +msgid "May" +msgstr "Mai" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "geheime Passphrase" +#: ../../include/text.php:1201 +msgid "June" +msgstr "Juni" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hinweis zur Passphrase" +#: ../../include/text.php:1201 +msgid "July" +msgstr "Juli" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." +#: ../../include/text.php:1201 +msgid "August" +msgstr "August" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alle schließen" +#: ../../include/text.php:1201 +msgid "September" +msgstr "September" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nichts Neues hier" +#: ../../include/text.php:1201 +msgid "October" +msgstr "Oktober" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" +#: ../../include/text.php:1201 +msgid "November" +msgstr "November" -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -msgid "Rating" -msgstr "Bewertung" +#: ../../include/text.php:1201 +msgid "December" +msgstr "Dezember" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Beschreibung (optional)" +#: ../../include/text.php:1306 +msgid "unknown.???" +msgstr "unbekannt.???" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/thing.php:275 -#: ../../mod/thing.php:318 ../../mod/events.php:656 ../../mod/group.php:81 -#: ../../mod/photos.php:577 ../../mod/photos.php:654 ../../mod/photos.php:941 -#: ../../mod/photos.php:981 ../../mod/photos.php:1099 ../../mod/pdledit.php:58 -#: ../../mod/import.php:504 ../../mod/chat.php:177 ../../mod/chat.php:211 -#: ../../mod/rate.php:167 ../../mod/invite.php:142 ../../mod/locs.php:105 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 -#: ../../mod/poke.php:166 ../../mod/profiles.php:667 ../../mod/setup.php:327 -#: ../../mod/setup.php:367 ../../mod/admin.php:453 ../../mod/admin.php:819 -#: ../../mod/admin.php:986 ../../mod/admin.php:1118 ../../mod/admin.php:1312 -#: ../../mod/admin.php:1397 ../../mod/settings.php:588 -#: ../../mod/settings.php:692 ../../mod/settings.php:718 -#: ../../mod/settings.php:746 ../../mod/settings.php:769 -#: ../../mod/settings.php:854 ../../mod/settings.php:1050 -#: ../../mod/mitem.php:237 ../../mod/mood.php:134 ../../mod/connedit.php:679 -#: ../../mod/mail.php:355 ../../mod/appman.php:99 ../../mod/poll.php:68 -#: ../../mod/bulksetclose.php:24 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Submit" -msgstr "Bestätigen" +#: ../../include/text.php:1307 +msgid "bytes" +msgstr "Bytes" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Bitte geben Sie eine Link-URL ein" +#: ../../include/text.php:1343 +msgid "remove category" +msgstr "Kategorie entfernen" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Ungespeicherte Änderungen. Sind Sie sicher, dass Sie diese Seite verlassen möchten?" +#: ../../include/text.php:1418 +msgid "remove from file" +msgstr "aus der Datei entfernen" -#: ../../include/js_strings.php:26 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/text.php:1494 ../../include/text.php:1505 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixFromNow" -msgstr " " +#: ../../include/text.php:1661 ../../mod/events.php:474 +msgid "Link to Source" +msgstr "Link zur Quelle" -#: ../../include/js_strings.php:28 -msgid "ago" -msgstr "her" +#: ../../include/text.php:1682 ../../include/text.php:1753 +msgid "default" +msgstr "Standard" -#: ../../include/js_strings.php:29 -msgid "from now" -msgstr "von jetzt" +#: ../../include/text.php:1690 +msgid "Page layout" +msgstr "Seitengestaltung" -#: ../../include/js_strings.php:30 -msgid "less than a minute" -msgstr "weniger als eine Minute" +#: ../../include/text.php:1690 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Gestaltungen erstellen" -#: ../../include/js_strings.php:31 -msgid "about a minute" -msgstr "ungefähr eine Minute" +#: ../../include/text.php:1731 +msgid "Page content type" +msgstr "Art des Seiteninhalts" -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d minutes" -msgstr "%d Minuten" +#: ../../include/text.php:1765 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" -#: ../../include/js_strings.php:33 -msgid "about an hour" -msgstr "ungefähr eine Stunde" +#: ../../include/text.php:1884 ../../include/diaspora.php:2119 +#: ../../include/conversation.php:120 ../../mod/like.php:349 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:43 +msgid "photo" +msgstr "Foto" -#: ../../include/js_strings.php:34 -#, php-format -msgid "about %d hours" -msgstr "ungefähr %d Stunden" +#: ../../include/text.php:1887 ../../include/conversation.php:123 +#: ../../mod/like.php:351 ../../mod/tagger.php:47 +msgid "event" +msgstr "Termin" -#: ../../include/js_strings.php:35 -msgid "a day" -msgstr "ein Tag" +#: ../../include/text.php:1890 ../../include/diaspora.php:2119 +#: ../../include/conversation.php:148 ../../mod/like.php:349 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +msgid "status" +msgstr "Status" -#: ../../include/js_strings.php:36 -#, php-format -msgid "%d days" -msgstr "%d Tage" +#: ../../include/text.php:1892 ../../include/conversation.php:150 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "Kommentar" -#: ../../include/js_strings.php:37 -msgid "about a month" -msgstr "ungefähr ein Monat" +#: ../../include/text.php:1897 +msgid "activity" +msgstr "Aktivität" -#: ../../include/js_strings.php:38 -#, php-format -msgid "%d months" -msgstr "%d Monate" +#: ../../include/text.php:2192 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" -#: ../../include/js_strings.php:39 -msgid "about a year" -msgstr "ungefähr ein Jahr" +#: ../../include/text.php:2195 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Blöcke" -#: ../../include/js_strings.php:40 -#, php-format -msgid "%d years" -msgstr "%d Jahre" +#: ../../include/text.php:2196 ../../mod/menu.php:101 +msgid "Menus" +msgstr "Menüs" -#: ../../include/js_strings.php:41 -msgid " " -msgstr " " +#: ../../include/text.php:2197 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Gestaltungen" -#: ../../include/js_strings.php:42 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/text.php:2198 +msgid "Pages" +msgstr "Seiten" + +#: ../../include/text.php:2549 ../../include/RedDAV/RedBrowser.php:131 +msgid "Collection" +msgstr "Ordner" #: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:268 +#: ../../include/RedDAV/RedBrowser.php:265 msgid "parent" msgstr "Übergeordnetes Verzeichnis" @@ -966,7 +999,7 @@ msgstr "Posteingang für überwachte Kalender" msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1019 +#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1030 #: ../../include/apps.php:336 ../../include/apps.php:387 #: ../../mod/photos.php:693 ../../mod/photos.php:1131 msgid "Unknown" @@ -983,7 +1016,7 @@ msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s von %2$s verwendet (%3$s%)" #: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/conversation.php:1609 ../../include/apps.php:135 +#: ../../include/conversation.php:1620 ../../include/apps.php:135 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Dateien" @@ -997,51 +1030,51 @@ msgid "Shared" msgstr "Geteilt" #: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/webpages.php:180 -#: ../../mod/blocks.php:152 ../../mod/menu.php:109 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/webpages.php:180 +#: ../../mod/blocks.php:152 ../../mod/menu.php:112 #: ../../mod/new_channel.php:121 ../../mod/layouts.php:175 msgid "Create" msgstr "Erstelle" #: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:362 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 #: ../../mod/photos.php:718 ../../mod/photos.php:1248 msgid "Upload" msgstr "Hochladen" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/admin.php:994 +#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 #: ../../mod/settings.php:590 ../../mod/settings.php:616 #: ../../mod/sharedwithme.php:95 msgid "Name" msgstr "Name" -#: ../../include/RedDAV/RedBrowser.php:265 +#: ../../include/RedDAV/RedBrowser.php:262 msgid "Type" msgstr "Typ" -#: ../../include/RedDAV/RedBrowser.php:266 ../../mod/sharedwithme.php:97 +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 msgid "Size" msgstr "Größe" -#: ../../include/RedDAV/RedBrowser.php:267 ../../mod/sharedwithme.php:98 +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 msgid "Last Modified" msgstr "Zuletzt geändert" -#: ../../include/RedDAV/RedBrowser.php:270 ../../include/ItemObject.php:120 -#: ../../include/conversation.php:660 ../../include/apps.php:255 -#: ../../mod/webpages.php:183 ../../mod/thing.php:228 ../../mod/group.php:176 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 +#: ../../include/conversation.php:671 ../../include/apps.php:255 +#: ../../mod/webpages.php:183 ../../mod/thing.php:256 ../../mod/group.php:176 #: ../../mod/blocks.php:155 ../../mod/photos.php:1062 -#: ../../mod/editlayout.php:107 ../../mod/editwebpage.php:225 -#: ../../mod/admin.php:826 ../../mod/admin.php:988 ../../mod/editblock.php:113 -#: ../../mod/settings.php:651 ../../mod/connedit.php:543 +#: ../../mod/editlayout.php:178 ../../mod/editwebpage.php:225 +#: ../../mod/editblock.php:180 ../../mod/admin.php:826 ../../mod/admin.php:988 +#: ../../mod/settings.php:651 ../../mod/connedit.php:563 msgid "Delete" msgstr "Löschen" -#: ../../include/RedDAV/RedBrowser.php:305 +#: ../../include/RedDAV/RedBrowser.php:302 msgid "Create new folder" msgstr "Neuen Ordner anlegen" -#: ../../include/RedDAV/RedBrowser.php:307 +#: ../../include/RedDAV/RedBrowser.php:304 msgid "Upload file" msgstr "Datei hochladen" @@ -1054,6 +1087,29 @@ msgstr "%1$ss Lesezeichen" msgid "view full size" msgstr "In Vollbildansicht anschauen" +#: ../../include/network.php:1585 ../../include/enotify.php:58 +msgid "$Projectname Notification" +msgstr "$Projectname-Benachrichtigung" + +#: ../../include/network.php:1586 ../../include/enotify.php:59 +#: ../../include/diaspora.php:2522 ../../include/diaspora.php:2533 +#: ../../mod/p.php:46 +msgid "$projectname" +msgstr "$projectname" + +#: ../../include/network.php:1588 ../../include/enotify.php:61 +msgid "Thank You," +msgstr "Danke." + +#: ../../include/network.php:1590 ../../include/enotify.php:63 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" + +#: ../../include/network.php:1646 +msgid "No Subject" +msgstr "Kein Betreff" + #: ../../include/features.php:38 msgid "General Features" msgstr "Allgemeine Funktionen" @@ -1120,7 +1176,7 @@ msgstr "Aufnahmeort" #: ../../include/features.php:47 msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Aufnahmeort auf einer Karte verlinken, falls verfügbar." +msgstr "Aufnahmeort des Fotos auf einer Karte verlinken, falls verfügbar." #: ../../include/features.php:49 msgid "Expert Mode" @@ -1160,9 +1216,9 @@ msgstr "Große Fotos" msgid "" "Include large (640px) photo thumbnails in posts. If not enabled, use small " "(320px) photo thumbnails" -msgstr "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt." +msgstr "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist dies deaktiviert, werden kleine Vorschaubilder (320px) angezeigt." -#: ../../include/features.php:59 ../../include/widgets.php:546 +#: ../../include/features.php:59 ../../include/widgets.php:548 #: ../../mod/sources.php:88 msgid "Channel Sources" msgstr "Kanal-Quellen" @@ -1186,7 +1242,7 @@ msgstr "Umfragewerkzeuge aktivieren" #: ../../include/features.php:61 msgid "Provide a class of post which others can vote on" -msgstr "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" +msgstr "Aktiviere die Umfragewerkzeuge, damit andere Benutzer über Deine Beiträge abstimmen können. Muss im Beitrag selbst noch aktiviert werden." #: ../../include/features.php:67 msgid "Network and Stream Filtering" @@ -1241,63 +1297,71 @@ msgid "Filter stream activity by depth of relationships" msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" #: ../../include/features.php:74 +msgid "Connection Filtering" +msgstr "Filter für Sammlungen" + +#: ../../include/features.php:74 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtere eingehende Beiträge von Kontakten auf der Basis von Schlüsselwörtern und dem Inhalt." + +#: ../../include/features.php:75 msgid "Suggest Channels" msgstr "Kanäle vorschlagen" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Show channel suggestions" msgstr "Kanalvorschläge anzeigen" -#: ../../include/features.php:79 +#: ../../include/features.php:80 msgid "Post/Comment Tools" msgstr "Beitrag-/Kommentarwerkzeuge" -#: ../../include/features.php:80 +#: ../../include/features.php:81 msgid "Tagging" msgstr "Verschlagworten" -#: ../../include/features.php:80 +#: ../../include/features.php:81 msgid "Ability to tag existing posts" msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Add categories to your posts" msgstr "Kategorien für Beiträge" -#: ../../include/features.php:82 ../../include/widgets.php:304 +#: ../../include/features.php:83 ../../include/widgets.php:304 #: ../../include/contact_widgets.php:57 msgid "Saved Folders" msgstr "Gespeicherte Ordner" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht Beiträge" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Ability to dislike posts/comments" msgstr "„Gefällt mir nicht“ ermöglichen" -#: ../../include/features.php:84 +#: ../../include/features.php:85 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:84 +#: ../../include/features.php:85 msgid "Ability to mark special posts with a star indicator" msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Provide a personal tag cloud on your channel page" msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" @@ -1315,7 +1379,7 @@ msgstr "Apps" msgid "System" msgstr "System" -#: ../../include/widgets.php:94 ../../include/conversation.php:1504 +#: ../../include/widgets.php:94 ../../include/conversation.php:1515 msgid "Personal" msgstr "Persönlich" @@ -1328,9 +1392,9 @@ msgid "Edit Personal App" msgstr "Persönliche App bearbeiten" #: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:945 -#: ../../include/identity.php:828 ../../mod/match.php:64 -#: ../../mod/directory.php:302 ../../mod/suggest.php:52 +#: ../../include/Contact.php:107 ../../include/conversation.php:956 +#: ../../include/identity.php:933 ../../mod/directory.php:316 +#: ../../mod/match.php:64 ../../mod/suggest.php:52 msgid "Connect" msgstr "Verbinden" @@ -1338,7 +1402,7 @@ msgstr "Verbinden" msgid "Ignore/Hide" msgstr "Ignorieren/Verstecken" -#: ../../include/widgets.php:143 ../../mod/connections.php:268 +#: ../../include/widgets.php:143 ../../mod/connections.php:128 msgid "Suggestions" msgstr "Vorschläge" @@ -1380,131 +1444,140 @@ msgstr "Alles" msgid "Archives" msgstr "Archive" -#: ../../include/widgets.php:427 ../../mod/connedit.php:572 +#: ../../include/widgets.php:429 ../../mod/connedit.php:583 msgid "Me" msgstr "Ich" -#: ../../include/widgets.php:428 ../../mod/connedit.php:573 +#: ../../include/widgets.php:430 ../../mod/connedit.php:584 msgid "Family" msgstr "Familie" -#: ../../include/widgets.php:429 ../../include/identity.php:394 +#: ../../include/widgets.php:431 ../../include/identity.php:394 #: ../../include/identity.php:395 ../../include/identity.php:402 #: ../../include/profile_selectors.php:80 ../../mod/settings.php:345 #: ../../mod/settings.php:349 ../../mod/settings.php:350 #: ../../mod/settings.php:353 ../../mod/settings.php:364 -#: ../../mod/connedit.php:574 +#: ../../mod/connedit.php:585 msgid "Friends" msgstr "Freunde" -#: ../../include/widgets.php:430 ../../mod/connedit.php:575 +#: ../../include/widgets.php:432 ../../mod/connedit.php:586 msgid "Acquaintances" msgstr "Bekannte" -#: ../../include/widgets.php:431 ../../mod/connections.php:231 -#: ../../mod/connections.php:246 ../../mod/connedit.php:576 +#: ../../include/widgets.php:433 ../../mod/connections.php:91 +#: ../../mod/connections.php:106 ../../mod/connedit.php:587 msgid "All" msgstr "Alle" -#: ../../include/widgets.php:450 +#: ../../include/widgets.php:452 msgid "Refresh" msgstr "Aktualisieren" -#: ../../include/widgets.php:485 +#: ../../include/widgets.php:487 msgid "Account settings" msgstr "Kontoeinstellungen" -#: ../../include/widgets.php:491 +#: ../../include/widgets.php:493 msgid "Channel settings" msgstr "Kanaleinstellungen" -#: ../../include/widgets.php:497 +#: ../../include/widgets.php:499 msgid "Additional features" msgstr "Zusätzliche Funktionen" -#: ../../include/widgets.php:503 +#: ../../include/widgets.php:505 msgid "Feature/Addon settings" msgstr "Funktion-/Addon-Einstellungen" -#: ../../include/widgets.php:509 +#: ../../include/widgets.php:511 msgid "Display settings" msgstr "Anzeigeeinstellungen" -#: ../../include/widgets.php:515 +#: ../../include/widgets.php:517 msgid "Connected apps" msgstr "Verbundene Apps" -#: ../../include/widgets.php:521 +#: ../../include/widgets.php:523 msgid "Export channel" msgstr "Kanal exportieren" -#: ../../include/widgets.php:530 ../../mod/connedit.php:653 +#: ../../include/widgets.php:532 ../../mod/connedit.php:674 msgid "Connection Default Permissions" msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../include/widgets.php:538 +#: ../../include/widgets.php:540 msgid "Premium Channel Settings" msgstr "Premium-Kanaleinstellungen" -#: ../../include/widgets.php:554 ../../include/nav.php:208 +#: ../../include/widgets.php:556 ../../include/nav.php:208 #: ../../include/apps.php:134 ../../mod/admin.php:1079 #: ../../mod/admin.php:1279 msgid "Settings" msgstr "Einstellungen" -#: ../../include/widgets.php:567 ../../mod/message.php:31 +#: ../../include/widgets.php:569 ../../mod/message.php:31 #: ../../mod/mail.php:128 msgid "Messages" msgstr "Nachrichten" -#: ../../include/widgets.php:570 +#: ../../include/widgets.php:572 msgid "Check Mail" msgstr "E-Mails abrufen" -#: ../../include/widgets.php:575 ../../include/nav.php:199 +#: ../../include/widgets.php:577 ../../include/nav.php:199 msgid "New Message" msgstr "Neue Nachricht" -#: ../../include/widgets.php:650 +#: ../../include/widgets.php:652 msgid "Chat Rooms" msgstr "Chaträume" -#: ../../include/widgets.php:670 +#: ../../include/widgets.php:672 msgid "Bookmarked Chatrooms" msgstr "Gespeicherte Chatrooms" -#: ../../include/widgets.php:690 +#: ../../include/widgets.php:692 msgid "Suggested Chatrooms" msgstr "Chatraum-Vorschläge" -#: ../../include/widgets.php:817 ../../include/widgets.php:875 +#: ../../include/widgets.php:819 ../../include/widgets.php:877 msgid "photo/image" msgstr "Foto/Bild" -#: ../../include/widgets.php:970 ../../include/widgets.php:972 +#: ../../include/widgets.php:972 ../../include/widgets.php:974 msgid "Rate Me" msgstr "Bewerte mich" -#: ../../include/widgets.php:976 +#: ../../include/widgets.php:978 msgid "View Ratings" msgstr "Bewertungen ansehen" -#: ../../include/widgets.php:987 +#: ../../include/widgets.php:989 msgid "Public Hubs" msgstr "Öffentliche Hubs" -#: ../../include/enotify.php:58 -msgid "$Projectname Notification" -msgstr "$Projectname-Benachrichtigung" +#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 +msgid "Starts:" +msgstr "Beginnt:" + +#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 +msgid "Finishes:" +msgstr "Endet:" -#: ../../include/enotify.php:61 -msgid "Thank You," -msgstr "Danke." +#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 +#: ../../include/identity.php:984 ../../mod/directory.php:302 +#: ../../mod/events.php:684 +msgid "Location:" +msgstr "Ort:" -#: ../../include/enotify.php:63 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" +#: ../../include/event.php:549 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" #: ../../include/enotify.php:96 #, php-format @@ -1685,79 +1758,13 @@ msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." msgid "[Red:Notify]" msgstr "[Red:Benachrichtigung]" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Häufig" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Täglich" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 -#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1552 -msgid "Email" -msgstr "E-Mail" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - #: ../../include/message.php:18 msgid "No recipient provided." msgstr "Kein Empfänger angegeben" #: ../../include/message.php:23 msgid "[no subject]" -msgstr "[no subject]" +msgstr "[kein Betreff]" #: ../../include/message.php:45 msgid "Unable to determine sender." @@ -1767,6 +1774,28 @@ msgstr "Kann Absender nicht bestimmen." msgid "Stored post could not be verified." msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." +#: ../../include/diaspora.php:2148 ../../include/conversation.php:164 +#: ../../mod/like.php:397 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s" + +#: ../../include/diaspora.php:2494 +msgid "Please choose" +msgstr "Bitte auswählen" + +#: ../../include/diaspora.php:2496 +msgid "Agree" +msgstr "Zustimmen" + +#: ../../include/diaspora.php:2498 +msgid "Disagree" +msgstr "Ablehnen" + +#: ../../include/diaspora.php:2500 +msgid "Abstain" +msgstr "Enthalten" + #: ../../include/follow.php:28 msgid "Channel is blocked on this site." msgstr "Der Kanal ist auf dieser Seite blockiert " @@ -1803,11 +1832,11 @@ msgstr "Lokales Konto nicht gefunden." msgid "Cannot connect to yourself." msgstr "Du kannst Dich nicht mit Dir selbst verbinden." -#: ../../include/ItemObject.php:89 ../../include/conversation.php:667 +#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 msgid "Private Message" msgstr "Private Nachricht" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:659 +#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 msgid "Select" msgstr "Auswählen" @@ -1840,13 +1869,13 @@ msgid "I abstain" msgstr "Ich enthalte mich" #: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1677 ../../mod/photos.php:1015 +#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 #: ../../mod/photos.php:1027 msgid "View all" msgstr "Alles anzeigen" #: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 -#: ../../include/conversation.php:1701 ../../include/identity.php:1138 +#: ../../include/conversation.php:1712 ../../include/identity.php:1243 #: ../../mod/photos.php:1019 msgctxt "noun" msgid "Like" @@ -1854,7 +1883,7 @@ msgid_plural "Likes" msgstr[0] "Gefällt mir" msgstr[1] "Gefällt mir" -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1704 +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 #: ../../mod/photos.php:1024 msgctxt "noun" msgid "Dislike" @@ -1878,11 +1907,11 @@ msgstr "Markierungsstatus (Stern) umschalten" msgid "starred" msgstr "markiert" -#: ../../include/ItemObject.php:227 ../../include/conversation.php:674 +#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../include/ItemObject.php:228 ../../include/conversation.php:675 +#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" @@ -1904,7 +1933,7 @@ msgstr "Mir gefällt das nicht (Umschalter)" #: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 msgid "dislike" -msgstr "verurteile" +msgstr "lehne ab" #: ../../include/ItemObject.php:259 msgid "Share This" @@ -1942,17 +1971,17 @@ msgstr "Wall-to-Wall" msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../include/ItemObject.php:312 ../../include/conversation.php:716 +#: ../../include/ItemObject.php:312 ../../include/conversation.php:727 #, php-format msgid "from %s" msgstr "via %s" -#: ../../include/ItemObject.php:315 ../../include/conversation.php:719 +#: ../../include/ItemObject.php:315 ../../include/conversation.php:730 #, php-format msgid "last edited: %s" msgstr "zuletzt bearbeitet: %s" -#: ../../include/ItemObject.php:316 ../../include/conversation.php:720 +#: ../../include/ItemObject.php:316 ../../include/conversation.php:731 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" @@ -1984,10 +2013,10 @@ msgstr "Gefällt nicht" msgid "Close" msgstr "Schließen" -#: ../../include/ItemObject.php:364 ../../include/conversation.php:737 -#: ../../include/conversation.php:1209 ../../mod/photos.php:962 -#: ../../mod/editlayout.php:153 ../../mod/editwebpage.php:192 -#: ../../mod/editpost.php:130 ../../mod/editblock.php:155 +#: ../../include/ItemObject.php:364 ../../include/conversation.php:748 +#: ../../include/conversation.php:1220 ../../mod/editpost.php:123 +#: ../../mod/photos.php:962 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:192 ../../mod/editblock.php:149 #: ../../mod/mail.php:241 ../../mod/mail.php:356 msgid "Please wait" msgstr "Bitte warten" @@ -1997,33 +2026,33 @@ msgstr "Bitte warten" msgid "This is you" msgstr "Das bist Du" -#: ../../include/ItemObject.php:669 ../../include/conversation.php:1181 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:179 -#: ../../mod/editpost.php:114 ../../mod/editblock.php:141 +#: ../../include/ItemObject.php:669 ../../include/conversation.php:1192 +#: ../../mod/editpost.php:107 ../../mod/editlayout.php:134 +#: ../../mod/editwebpage.php:179 ../../mod/editblock.php:135 msgid "Bold" msgstr "Fett" -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1182 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:180 -#: ../../mod/editpost.php:115 ../../mod/editblock.php:142 +#: ../../include/ItemObject.php:670 ../../include/conversation.php:1193 +#: ../../mod/editpost.php:108 ../../mod/editlayout.php:135 +#: ../../mod/editwebpage.php:180 ../../mod/editblock.php:136 msgid "Italic" msgstr "Kursiv" -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1183 -#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:181 -#: ../../mod/editpost.php:116 ../../mod/editblock.php:143 +#: ../../include/ItemObject.php:671 ../../include/conversation.php:1194 +#: ../../mod/editpost.php:109 ../../mod/editlayout.php:136 +#: ../../mod/editwebpage.php:181 ../../mod/editblock.php:137 msgid "Underline" msgstr "Unterstrichen" -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1184 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:182 -#: ../../mod/editpost.php:117 ../../mod/editblock.php:144 +#: ../../include/ItemObject.php:672 ../../include/conversation.php:1195 +#: ../../mod/editpost.php:110 ../../mod/editlayout.php:137 +#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:138 msgid "Quote" msgstr "Zitat" -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1185 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:183 -#: ../../mod/editpost.php:118 ../../mod/editblock.php:145 +#: ../../include/ItemObject.php:673 ../../include/conversation.php:1196 +#: ../../mod/editpost.php:111 ../../mod/editlayout.php:138 +#: ../../mod/editwebpage.php:183 ../../mod/editblock.php:139 msgid "Code" msgstr "Code" @@ -2039,8 +2068,8 @@ msgstr "Link einfügen" msgid "Video" msgstr "Video" -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1236 -#: ../../mod/editpost.php:158 ../../mod/mail.php:247 ../../mod/mail.php:361 +#: ../../include/ItemObject.php:680 ../../include/conversation.php:1247 +#: ../../mod/editpost.php:151 ../../mod/mail.php:247 ../../mod/mail.php:361 msgid "Encrypt text" msgstr "Text verschlüsseln" @@ -2052,7 +2081,7 @@ msgstr "Neues Fenster" msgid "Open the selected location in a different window or browser tab" msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" -#: ../../include/Contact.php:215 ../../mod/admin.php:739 +#: ../../include/Contact.php:212 #, php-format msgid "User '%s' deleted" msgstr "Benutzer '%s' gelöscht" @@ -2081,8 +2110,8 @@ msgstr "Home" msgid "Your posts and conversations" msgstr "Deine Beiträge und Unterhaltungen" -#: ../../include/nav.php:91 ../../include/conversation.php:942 -#: ../../mod/connedit.php:494 ../../mod/connedit.php:660 +#: ../../include/nav.php:91 ../../include/conversation.php:953 +#: ../../mod/connedit.php:510 msgid "View Profile" msgstr "Profil ansehen" @@ -2098,7 +2127,7 @@ msgstr "Profile bearbeiten" msgid "Manage/Edit profiles" msgstr "Profile verwalten" -#: ../../include/nav.php:95 ../../include/identity.php:851 +#: ../../include/nav.php:95 ../../include/identity.php:956 msgid "Edit Profile" msgstr "Profile bearbeiten" @@ -2106,7 +2135,7 @@ msgstr "Profile bearbeiten" msgid "Edit your profile" msgstr "Profil bearbeiten" -#: ../../include/nav.php:97 ../../include/conversation.php:1600 +#: ../../include/nav.php:97 ../../include/conversation.php:1611 #: ../../include/apps.php:139 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "Fotos" @@ -2127,7 +2156,7 @@ msgstr "Chat" msgid "Your chatrooms" msgstr "Deine Chaträume" -#: ../../include/nav.php:109 ../../include/conversation.php:1635 +#: ../../include/nav.php:109 ../../include/conversation.php:1646 #: ../../include/apps.php:129 msgid "Bookmarks" msgstr "Lesezeichen" @@ -2136,7 +2165,7 @@ msgstr "Lesezeichen" msgid "Your bookmarks" msgstr "Deine Lesezeichen" -#: ../../include/nav.php:113 ../../include/conversation.php:1645 +#: ../../include/nav.php:113 ../../include/conversation.php:1656 #: ../../include/apps.php:136 ../../mod/webpages.php:178 msgid "Webpages" msgstr "Webseiten" @@ -2196,7 +2225,6 @@ msgid "Search site content" msgstr "Durchsuche Seiten-Inhalt" #: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:366 msgid "Directory" msgstr "Verzeichnis" @@ -2228,7 +2256,7 @@ msgstr "Mein Kanal" msgid "Mark all channel notifications seen" msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" -#: ../../include/nav.php:187 ../../mod/connections.php:407 +#: ../../include/nav.php:187 ../../mod/connections.php:267 msgid "Connections" msgstr "Verbindungen" @@ -2273,7 +2301,7 @@ msgid "Outbox" msgstr "Ausgang" #: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:472 +#: ../../mod/events.php:503 msgid "Events" msgstr "Termine" @@ -2310,7 +2338,7 @@ msgstr "Administration" msgid "Site Setup and Configuration" msgstr "Seiten-Einrichtung und -Konfiguration" -#: ../../include/nav.php:247 ../../include/conversation.php:850 +#: ../../include/nav.php:247 ../../include/conversation.php:861 msgid "Loading..." msgstr "Lädt ..." @@ -2352,7 +2380,7 @@ msgstr "gefällt" #: ../../include/taxonomy.php:311 msgid "dislikes" -msgstr "missfällt" +msgstr "mag nicht" #: ../../include/activities.php:39 msgid " and " @@ -2525,7 +2553,7 @@ msgstr "Benutzerdefiniert/Expertenmodus" msgid "channel" msgstr "Kanal" -#: ../../include/conversation.php:167 ../../mod/like.php:396 +#: ../../include/conversation.php:167 ../../mod/like.php:399 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s nicht" @@ -2546,528 +2574,528 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s ist %2$s" -#: ../../include/conversation.php:572 ../../mod/photos.php:996 +#: ../../include/conversation.php:583 ../../mod/photos.php:996 msgctxt "title" msgid "Likes" msgstr "Gefällt mir" -#: ../../include/conversation.php:572 ../../mod/photos.php:996 +#: ../../include/conversation.php:583 ../../mod/photos.php:996 msgctxt "title" msgid "Dislikes" msgstr "Gefällt mir nicht" -#: ../../include/conversation.php:573 ../../mod/photos.php:997 +#: ../../include/conversation.php:584 ../../mod/photos.php:997 msgctxt "title" msgid "Agree" msgstr "Zustimmungen" -#: ../../include/conversation.php:573 ../../mod/photos.php:997 +#: ../../include/conversation.php:584 ../../mod/photos.php:997 msgctxt "title" msgid "Disagree" msgstr "Ablehnungen" -#: ../../include/conversation.php:573 ../../mod/photos.php:997 +#: ../../include/conversation.php:584 ../../mod/photos.php:997 msgctxt "title" msgid "Abstain" msgstr "Enthaltungen" -#: ../../include/conversation.php:574 ../../mod/photos.php:998 +#: ../../include/conversation.php:585 ../../mod/photos.php:998 msgctxt "title" msgid "Attending" msgstr "Zusagen" -#: ../../include/conversation.php:574 ../../mod/photos.php:998 +#: ../../include/conversation.php:585 ../../mod/photos.php:998 msgctxt "title" msgid "Not attending" msgstr "Absagen" -#: ../../include/conversation.php:574 ../../mod/photos.php:998 +#: ../../include/conversation.php:585 ../../mod/photos.php:998 msgctxt "title" msgid "Might attend" msgstr "Vielleicht" -#: ../../include/conversation.php:692 +#: ../../include/conversation.php:703 #, php-format msgid "View %s's profile @ %s" msgstr "%ss Profil auf %s ansehen" -#: ../../include/conversation.php:707 +#: ../../include/conversation.php:718 msgid "Categories:" msgstr "Kategorien:" -#: ../../include/conversation.php:708 +#: ../../include/conversation.php:719 msgid "Filed under:" msgstr "Gespeichert unter:" -#: ../../include/conversation.php:735 +#: ../../include/conversation.php:746 msgid "View in context" msgstr "Im Zusammenhang anschauen" -#: ../../include/conversation.php:846 +#: ../../include/conversation.php:857 msgid "remove" msgstr "lösche" -#: ../../include/conversation.php:851 +#: ../../include/conversation.php:862 msgid "Delete Selected Items" msgstr "Lösche die ausgewählten Elemente" -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:950 msgid "View Source" msgstr "Quelle anzeigen" -#: ../../include/conversation.php:940 +#: ../../include/conversation.php:951 msgid "Follow Thread" msgstr "Unterhaltung folgen" -#: ../../include/conversation.php:941 +#: ../../include/conversation.php:952 msgid "View Status" msgstr "Status ansehen" -#: ../../include/conversation.php:943 +#: ../../include/conversation.php:954 msgid "View Photos" msgstr "Fotos ansehen" -#: ../../include/conversation.php:944 +#: ../../include/conversation.php:955 msgid "Matrix Activity" msgstr "Matrix-Aktivität" -#: ../../include/conversation.php:946 +#: ../../include/conversation.php:957 msgid "Edit Contact" msgstr "Kontakt bearbeiten" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:958 msgid "Send PM" msgstr "Sende PN" -#: ../../include/conversation.php:948 ../../include/apps.php:145 +#: ../../include/conversation.php:959 ../../include/apps.php:145 msgid "Poke" msgstr "Anstupsen" -#: ../../include/conversation.php:1062 +#: ../../include/conversation.php:1073 #, php-format msgid "%s likes this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1062 +#: ../../include/conversation.php:1073 #, php-format msgid "%s doesn't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1066 +#: ../../include/conversation.php:1077 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d Person gefällt das." msgstr[1] "%2$d Leuten gefällt das." -#: ../../include/conversation.php:1068 +#: ../../include/conversation.php:1079 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d Person gefällt das nicht." msgstr[1] "%2$d Leuten gefällt das nicht." -#: ../../include/conversation.php:1074 +#: ../../include/conversation.php:1085 msgid "and" msgstr "und" -#: ../../include/conversation.php:1077 +#: ../../include/conversation.php:1088 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] ", und %d andere" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1089 #, php-format msgid "%s like this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1089 #, php-format msgid "%s don't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1140 +#: ../../include/conversation.php:1151 msgid "Visible to everybody" msgstr "Sichtbar für jeden" -#: ../../include/conversation.php:1141 ../../mod/mail.php:174 +#: ../../include/conversation.php:1152 ../../mod/mail.php:174 #: ../../mod/mail.php:289 msgid "Please enter a link URL:" msgstr "Gib eine URL ein:" -#: ../../include/conversation.php:1142 +#: ../../include/conversation.php:1153 msgid "Please enter a video link/URL:" msgstr "Gib einen Video-Link/URL ein:" -#: ../../include/conversation.php:1143 +#: ../../include/conversation.php:1154 msgid "Please enter an audio link/URL:" msgstr "Gib einen Audio-Link/URL ein:" -#: ../../include/conversation.php:1144 +#: ../../include/conversation.php:1155 msgid "Tag term:" msgstr "Schlagwort:" -#: ../../include/conversation.php:1145 ../../mod/filer.php:49 +#: ../../include/conversation.php:1156 ../../mod/filer.php:49 msgid "Save to Folder:" msgstr "Speichern in Ordner:" -#: ../../include/conversation.php:1146 +#: ../../include/conversation.php:1157 msgid "Where are you right now?" msgstr "Wo bist Du jetzt grade?" -#: ../../include/conversation.php:1147 ../../mod/editpost.php:52 +#: ../../include/conversation.php:1158 ../../mod/editpost.php:47 #: ../../mod/mail.php:175 ../../mod/mail.php:290 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Verfällt YYYY-MM-DD HH;MM" -#: ../../include/conversation.php:1174 ../../mod/webpages.php:182 +#: ../../include/conversation.php:1185 ../../mod/webpages.php:182 #: ../../mod/blocks.php:154 ../../mod/photos.php:961 ../../mod/layouts.php:184 msgid "Share" msgstr "Teilen" -#: ../../include/conversation.php:1176 +#: ../../include/conversation.php:1187 msgid "Page link name" msgstr "Link zur Seite" -#: ../../include/conversation.php:1179 +#: ../../include/conversation.php:1190 msgid "Post as" msgstr "Veröffentlichen als" -#: ../../include/conversation.php:1186 ../../mod/editlayout.php:145 -#: ../../mod/editwebpage.php:184 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:147 ../../mod/mail.php:238 ../../mod/mail.php:352 +#: ../../include/conversation.php:1197 ../../mod/editpost.php:112 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:184 +#: ../../mod/editblock.php:141 ../../mod/mail.php:238 ../../mod/mail.php:352 msgid "Upload photo" msgstr "Foto hochladen" -#: ../../include/conversation.php:1187 +#: ../../include/conversation.php:1198 msgid "upload photo" msgstr "Foto hochladen" -#: ../../include/conversation.php:1188 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:185 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:148 ../../mod/mail.php:239 ../../mod/mail.php:353 +#: ../../include/conversation.php:1199 ../../mod/editpost.php:113 +#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:185 +#: ../../mod/editblock.php:142 ../../mod/mail.php:239 ../../mod/mail.php:353 msgid "Attach file" msgstr "Datei anhängen" -#: ../../include/conversation.php:1189 +#: ../../include/conversation.php:1200 msgid "attach file" msgstr "Datei anfügen" -#: ../../include/conversation.php:1190 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:186 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:149 ../../mod/mail.php:240 ../../mod/mail.php:354 +#: ../../include/conversation.php:1201 ../../mod/editpost.php:114 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:186 +#: ../../mod/editblock.php:143 ../../mod/mail.php:240 ../../mod/mail.php:354 msgid "Insert web link" msgstr "Link einfügen" -#: ../../include/conversation.php:1191 +#: ../../include/conversation.php:1202 msgid "web link" msgstr "Web-Link" -#: ../../include/conversation.php:1192 +#: ../../include/conversation.php:1203 msgid "Insert video link" msgstr "Video-Link einfügen" -#: ../../include/conversation.php:1193 +#: ../../include/conversation.php:1204 msgid "video link" msgstr "Video-Link" -#: ../../include/conversation.php:1194 +#: ../../include/conversation.php:1205 msgid "Insert audio link" msgstr "Audio-Link einfügen" -#: ../../include/conversation.php:1195 +#: ../../include/conversation.php:1206 msgid "audio link" msgstr "Audio-Link" -#: ../../include/conversation.php:1196 ../../mod/editlayout.php:151 -#: ../../mod/editwebpage.php:190 ../../mod/editpost.php:125 -#: ../../mod/editblock.php:153 +#: ../../include/conversation.php:1207 ../../mod/editpost.php:118 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:190 +#: ../../mod/editblock.php:147 msgid "Set your location" msgstr "Legen Sie Ihren Standort fest" -#: ../../include/conversation.php:1197 +#: ../../include/conversation.php:1208 msgid "set location" msgstr "Standort festlegen" -#: ../../include/conversation.php:1198 ../../mod/editpost.php:127 +#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 msgid "Toggle voting" msgstr "Umfragewerkzeug aktivieren" -#: ../../include/conversation.php:1201 ../../mod/editlayout.php:152 -#: ../../mod/editwebpage.php:191 ../../mod/editpost.php:126 -#: ../../mod/editblock.php:154 +#: ../../include/conversation.php:1212 ../../mod/editpost.php:119 +#: ../../mod/editlayout.php:146 ../../mod/editwebpage.php:191 +#: ../../mod/editblock.php:148 msgid "Clear browser location" msgstr "Browser-Standort löschen" -#: ../../include/conversation.php:1202 +#: ../../include/conversation.php:1213 msgid "clear location" msgstr "Standort löschen" -#: ../../include/conversation.php:1204 ../../mod/editwebpage.php:207 -#: ../../mod/editpost.php:142 ../../mod/editblock.php:167 +#: ../../include/conversation.php:1215 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:207 ../../mod/editblock.php:161 msgid "Title (optional)" msgstr "Titel (optional)" -#: ../../include/conversation.php:1208 ../../mod/editlayout.php:168 -#: ../../mod/editwebpage.php:209 ../../mod/editpost.php:144 -#: ../../mod/editblock.php:170 +#: ../../include/conversation.php:1219 ../../mod/editpost.php:137 +#: ../../mod/editlayout.php:162 ../../mod/editwebpage.php:209 +#: ../../mod/editblock.php:164 msgid "Categories (optional, comma-separated list)" msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../include/conversation.php:1210 ../../mod/editlayout.php:154 -#: ../../mod/editwebpage.php:193 ../../mod/editpost.php:131 -#: ../../mod/editblock.php:156 +#: ../../include/conversation.php:1221 ../../mod/editpost.php:124 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:193 +#: ../../mod/editblock.php:150 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: ../../include/conversation.php:1211 +#: ../../include/conversation.php:1222 msgid "permissions" msgstr "Berechtigungen" -#: ../../include/conversation.php:1219 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:202 ../../mod/editpost.php:139 -#: ../../mod/editblock.php:164 +#: ../../include/conversation.php:1230 ../../mod/editpost.php:132 +#: ../../mod/editlayout.php:155 ../../mod/editwebpage.php:202 +#: ../../mod/editblock.php:158 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: ../../include/conversation.php:1221 ../../mod/editlayout.php:169 -#: ../../mod/editwebpage.php:210 ../../mod/editpost.php:145 -#: ../../mod/editblock.php:171 +#: ../../include/conversation.php:1232 ../../mod/editpost.php:138 +#: ../../mod/editlayout.php:163 ../../mod/editwebpage.php:210 +#: ../../mod/editblock.php:165 msgid "Example: bob@example.com, mary@example.com" msgstr "Beispiel: bob@example.com, mary@example.com" -#: ../../include/conversation.php:1234 ../../mod/editlayout.php:178 -#: ../../mod/editwebpage.php:219 ../../mod/editpost.php:156 -#: ../../mod/editblock.php:181 ../../mod/mail.php:245 ../../mod/mail.php:359 +#: ../../include/conversation.php:1245 ../../mod/editpost.php:149 +#: ../../mod/editlayout.php:172 ../../mod/editwebpage.php:219 +#: ../../mod/editblock.php:175 ../../mod/mail.php:245 ../../mod/mail.php:359 msgid "Set expiration date" msgstr "Verfallsdatum festlegen" -#: ../../include/conversation.php:1238 ../../mod/events.php:637 -#: ../../mod/editpost.php:160 +#: ../../include/conversation.php:1249 ../../mod/events.php:674 +#: ../../mod/editpost.php:153 msgid "OK" msgstr "Ok" -#: ../../include/conversation.php:1239 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:134 ../../mod/events.php:636 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:161 +#: ../../include/conversation.php:1250 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:134 ../../mod/events.php:673 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:154 #: ../../mod/settings.php:589 ../../mod/settings.php:615 msgid "Cancel" msgstr "Abbrechen" -#: ../../include/conversation.php:1481 +#: ../../include/conversation.php:1492 msgid "Discover" msgstr "Entdecken" -#: ../../include/conversation.php:1484 +#: ../../include/conversation.php:1495 msgid "Imported public streams" msgstr "Importierte öffentliche Beiträge" -#: ../../include/conversation.php:1489 +#: ../../include/conversation.php:1500 msgid "Commented Order" msgstr "Neueste Kommentare" -#: ../../include/conversation.php:1492 +#: ../../include/conversation.php:1503 msgid "Sort by Comment Date" msgstr "Nach Kommentardatum sortiert" -#: ../../include/conversation.php:1496 +#: ../../include/conversation.php:1507 msgid "Posted Order" msgstr "Neueste Beiträge" -#: ../../include/conversation.php:1499 +#: ../../include/conversation.php:1510 msgid "Sort by Post Date" msgstr "Nach Beitragsdatum sortiert" -#: ../../include/conversation.php:1507 +#: ../../include/conversation.php:1518 msgid "Posts that mention or involve you" msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/conversation.php:1513 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:107 +#: ../../include/conversation.php:1524 ../../mod/connections.php:72 +#: ../../mod/connections.php:85 ../../mod/menu.php:110 msgid "New" msgstr "Neu" -#: ../../include/conversation.php:1516 +#: ../../include/conversation.php:1527 msgid "Activity Stream - by date" msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/conversation.php:1522 +#: ../../include/conversation.php:1533 msgid "Starred" msgstr "Markiert" -#: ../../include/conversation.php:1525 +#: ../../include/conversation.php:1536 msgid "Favourite Posts" msgstr "Markierte Beiträge" -#: ../../include/conversation.php:1532 +#: ../../include/conversation.php:1543 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1535 +#: ../../include/conversation.php:1546 msgid "Posts flagged as SPAM" msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/conversation.php:1579 ../../mod/admin.php:993 +#: ../../include/conversation.php:1590 ../../mod/admin.php:993 msgid "Channel" msgstr "Kanal" -#: ../../include/conversation.php:1582 +#: ../../include/conversation.php:1593 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../include/conversation.php:1591 +#: ../../include/conversation.php:1602 msgid "About" msgstr "Über" -#: ../../include/conversation.php:1594 +#: ../../include/conversation.php:1605 msgid "Profile Details" msgstr "Profil-Details" -#: ../../include/conversation.php:1603 ../../include/photos.php:359 +#: ../../include/conversation.php:1614 ../../include/photos.php:359 msgid "Photo Albums" msgstr "Fotoalben" -#: ../../include/conversation.php:1612 +#: ../../include/conversation.php:1623 msgid "Files and Storage" msgstr "Dateien und Speicher" -#: ../../include/conversation.php:1622 ../../include/conversation.php:1625 +#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 msgid "Chatrooms" msgstr "Chaträume" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1649 msgid "Saved Bookmarks" msgstr "Gespeicherte Lesezeichen" -#: ../../include/conversation.php:1648 +#: ../../include/conversation.php:1659 msgid "Manage Webpages" msgstr "Webseiten verwalten" -#: ../../include/conversation.php:1707 +#: ../../include/conversation.php:1718 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Zusage" msgstr[1] "Zusagen" -#: ../../include/conversation.php:1710 +#: ../../include/conversation.php:1721 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Absage" msgstr[1] "Absagen" -#: ../../include/conversation.php:1713 +#: ../../include/conversation.php:1724 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] " Unentschlossen" msgstr[1] "Unentschlossene" -#: ../../include/conversation.php:1716 +#: ../../include/conversation.php:1727 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Zustimmung" msgstr[1] "Zustimmungen" -#: ../../include/conversation.php:1719 +#: ../../include/conversation.php:1730 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Ablehnung" msgstr[1] "Ablehnungen" -#: ../../include/conversation.php:1722 +#: ../../include/conversation.php:1733 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Enthaltung" msgstr[1] "Enthaltungen" -#: ../../include/items.php:413 ../../mod/like.php:270 +#: ../../include/items.php:413 ../../mod/like.php:273 #: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/bulksetclose.php:11 ../../index.php:381 +#: ../../mod/bulksetclose.php:11 ../../index.php:392 msgid "Permission denied" msgstr "Keine Berechtigung" -#: ../../include/items.php:1035 ../../include/items.php:1081 +#: ../../include/items.php:1101 ../../include/items.php:1147 msgid "(Unknown)" msgstr "(Unbekannt)" -#: ../../include/items.php:1249 +#: ../../include/items.php:1373 msgid "Visible to anybody on the internet." msgstr "Für jeden im Internet sichtbar." -#: ../../include/items.php:1251 +#: ../../include/items.php:1375 msgid "Visible to you only." msgstr "Nur für Dich sichtbar." -#: ../../include/items.php:1253 +#: ../../include/items.php:1377 msgid "Visible to anybody in this network." msgstr "Für jedes Mitglied der RedMatrix sichtbar." -#: ../../include/items.php:1255 +#: ../../include/items.php:1379 msgid "Visible to anybody authenticated." msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/items.php:1257 +#: ../../include/items.php:1381 #, php-format msgid "Visible to anybody on %s." msgstr "Für jeden auf %s sichtbar." -#: ../../include/items.php:1259 +#: ../../include/items.php:1383 msgid "Visible to all connections." msgstr "Für alle Verbindungen sichtbar." -#: ../../include/items.php:1261 +#: ../../include/items.php:1385 msgid "Visible to approved connections." msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/items.php:1263 +#: ../../include/items.php:1387 msgid "Visible to specific connections." msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/items.php:4075 ../../mod/thing.php:74 -#: ../../mod/display.php:36 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:167 ../../mod/admin.php:1025 -#: ../../mod/admin.php:1225 +#: ../../include/items.php:4286 ../../mod/thing.php:74 +#: ../../mod/filestorage.php:27 ../../mod/viewsrc.php:20 +#: ../../mod/admin.php:167 ../../mod/admin.php:1025 ../../mod/admin.php:1225 +#: ../../mod/display.php:36 msgid "Item not found." msgstr "Element nicht gefunden." -#: ../../include/items.php:4148 ../../include/attach.php:137 +#: ../../include/items.php:4359 ../../include/attach.php:137 #: ../../include/attach.php:184 ../../include/attach.php:247 #: ../../include/attach.php:261 ../../include/attach.php:305 #: ../../include/attach.php:319 ../../include/attach.php:350 #: ../../include/attach.php:546 ../../include/attach.php:618 #: ../../include/chat.php:131 ../../include/photos.php:26 #: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/manage.php:6 ../../mod/item.php:206 -#: ../../mod/item.php:214 ../../mod/item.php:978 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/webpages.php:69 ../../mod/thing.php:241 -#: ../../mod/thing.php:256 ../../mod/thing.php:290 +#: ../../mod/achievements.php:30 ../../mod/manage.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/webpages.php:69 ../../mod/thing.php:269 +#: ../../mod/thing.php:284 ../../mod/thing.php:318 #: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 #: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 -#: ../../mod/events.php:219 ../../mod/group.php:9 ../../mod/network.php:12 -#: ../../mod/common.php:35 ../../mod/connections.php:169 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/photos.php:69 -#: ../../mod/pdledit.php:21 ../../mod/authtest.php:13 +#: ../../mod/events.php:249 ../../mod/group.php:9 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:1005 ../../mod/network.php:12 +#: ../../mod/common.php:35 ../../mod/connections.php:29 +#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/editpost.php:13 +#: ../../mod/photos.php:69 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 #: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 -#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101 -#: ../../mod/editwebpage.php:125 ../../mod/rate.php:110 -#: ../../mod/editpost.php:13 ../../mod/invite.php:13 ../../mod/invite.php:104 -#: ../../mod/locs.php:77 ../../mod/sources.php:66 ../../mod/menu.php:69 -#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 -#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 -#: ../../mod/fsuggest.php:78 ../../mod/poke.php:128 ../../mod/profiles.php:188 +#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/mitem.php:111 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 +#: ../../mod/rate.php:110 ../../mod/editblock.php:65 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 +#: ../../mod/menu.php:72 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 +#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 +#: ../../mod/poke.php:128 ../../mod/profiles.php:188 #: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 ../../mod/setup.php:223 #: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/editblock.php:65 ../../mod/register.php:72 -#: ../../mod/settings.php:570 ../../mod/id.php:71 ../../mod/message.php:16 -#: ../../mod/mitem.php:115 ../../mod/mood.php:111 ../../mod/connedit.php:331 +#: ../../mod/register.php:72 ../../mod/settings.php:570 ../../mod/id.php:71 +#: ../../mod/message.php:16 ../../mod/mood.php:111 ../../mod/connedit.php:348 #: ../../mod/mail.php:114 ../../mod/notifications.php:66 #: ../../mod/regmod.php:17 ../../mod/new_channel.php:68 #: ../../mod/new_channel.php:99 ../../mod/appman.php:66 @@ -3076,42 +3104,42 @@ msgstr "Element nicht gefunden." #: ../../mod/channel.php:100 ../../mod/channel.php:219 #: ../../mod/channel.php:262 ../../mod/suggest.php:26 #: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 -#: ../../index.php:182 ../../index.php:382 +#: ../../index.php:182 ../../index.php:393 msgid "Permission denied." msgstr "Zugang verweigert" -#: ../../include/items.php:4550 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../include/items.php:4763 ../../mod/group.php:38 ../../mod/group.php:140 #: ../../mod/bulksetclose.php:51 msgid "Collection not found." msgstr "Sammlung nicht gefunden" -#: ../../include/items.php:4566 +#: ../../include/items.php:4779 msgid "Collection is empty." msgstr "Sammlung ist leer." -#: ../../include/items.php:4573 +#: ../../include/items.php:4786 #, php-format msgid "Collection: %s" msgstr "Sammlung: %s" -#: ../../include/items.php:4583 +#: ../../include/items.php:4796 ../../mod/connedit.php:674 #, php-format msgid "Connection: %s" msgstr "Verbindung: %s" -#: ../../include/items.php:4585 +#: ../../include/items.php:4798 msgid "Connection not found." msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/zot.php:666 +#: ../../include/zot.php:678 msgid "Invalid data packet" msgstr "Ungültiges Datenpaket" -#: ../../include/zot.php:682 +#: ../../include/zot.php:694 msgid "Unable to verify channel signature" msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/zot.php:2109 +#: ../../include/zot.php:2184 #, php-format msgid "Unable to verify site signature for %s" msgstr "Kann die Signatur der Seite von %s nicht verifizieren" @@ -3163,12 +3191,12 @@ msgstr "Verbinden/Folgen" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Beispiele: Robert Morgenstein, Angeln" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:362 ../../mod/directory.php:367 +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 +#: ../../mod/directory.php:384 ../../mod/connections.php:273 msgid "Find" msgstr "Finde" -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:366 +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 #: ../../mod/suggest.php:60 msgid "Channel Suggestions" msgstr "Kanal-Vorschläge" @@ -3208,7 +3236,7 @@ msgstr "Anzeigen" msgid "Don't show" msgstr "Nicht anzeigen" -#: ../../include/acl_selectors.php:248 ../../mod/events.php:654 +#: ../../include/acl_selectors.php:248 ../../mod/events.php:691 #: ../../mod/photos.php:571 ../../mod/photos.php:934 ../../mod/chat.php:209 #: ../../mod/filestorage.php:147 msgid "Permissions" @@ -3309,205 +3337,206 @@ msgstr "Kann die erstellte Identität nicht empfangen" msgid "Default Profile" msgstr "Standard-Profil" -#: ../../include/identity.php:631 +#: ../../include/identity.php:736 msgid "Requested channel is not available." msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../include/identity.php:678 ../../mod/profile.php:16 +#: ../../include/identity.php:783 ../../mod/profile.php:16 #: ../../mod/achievements.php:11 ../../mod/webpages.php:29 #: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29 #: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:54 ../../mod/editblock.php:29 +#: ../../mod/editblock.php:29 ../../mod/filestorage.php:54 #: ../../mod/layouts.php:29 msgid "Requested profile is not available." msgstr "Erwünschte Profil ist nicht verfügbar." -#: ../../include/identity.php:841 ../../mod/profiles.php:774 +#: ../../include/identity.php:946 ../../mod/profiles.php:774 msgid "Change profile photo" msgstr "Profilfoto ändern" -#: ../../include/identity.php:847 +#: ../../include/identity.php:952 msgid "Profiles" msgstr "Profile" -#: ../../include/identity.php:847 +#: ../../include/identity.php:952 msgid "Manage/edit profiles" msgstr "Profile verwalten/bearbeiten" -#: ../../include/identity.php:848 ../../mod/profiles.php:775 +#: ../../include/identity.php:953 ../../mod/profiles.php:775 msgid "Create New Profile" msgstr "Neues Profil erstellen" -#: ../../include/identity.php:863 ../../mod/profiles.php:786 +#: ../../include/identity.php:968 ../../mod/profiles.php:786 msgid "Profile Image" msgstr "Profilfoto:" -#: ../../include/identity.php:866 +#: ../../include/identity.php:971 msgid "visible to everybody" msgstr "sichtbar für jeden" -#: ../../include/identity.php:867 ../../mod/profiles.php:669 +#: ../../include/identity.php:972 ../../mod/profiles.php:669 #: ../../mod/profiles.php:790 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" -#: ../../include/identity.php:883 ../../include/identity.php:1122 +#: ../../include/identity.php:988 ../../include/identity.php:1227 msgid "Gender:" msgstr "Geschlecht:" -#: ../../include/identity.php:884 ../../include/identity.php:1166 +#: ../../include/identity.php:989 ../../include/identity.php:1271 msgid "Status:" msgstr "Status:" -#: ../../include/identity.php:885 ../../include/identity.php:1177 +#: ../../include/identity.php:990 ../../include/identity.php:1282 msgid "Homepage:" msgstr "Homepage:" -#: ../../include/identity.php:886 +#: ../../include/identity.php:991 msgid "Online Now" msgstr "gerade online" -#: ../../include/identity.php:969 ../../include/identity.php:1047 +#: ../../include/identity.php:1074 ../../include/identity.php:1152 #: ../../mod/ping.php:324 msgid "g A l F d" msgstr "l, j. F, G:i \\U\\h\\r" -#: ../../include/identity.php:970 ../../include/identity.php:1048 +#: ../../include/identity.php:1075 ../../include/identity.php:1153 msgid "F d" msgstr "d. F" -#: ../../include/identity.php:1015 ../../include/identity.php:1087 +#: ../../include/identity.php:1120 ../../include/identity.php:1192 #: ../../mod/ping.php:346 msgid "[today]" msgstr "[Heute]" -#: ../../include/identity.php:1026 +#: ../../include/identity.php:1131 msgid "Birthday Reminders" msgstr "Geburtstags Erinnerungen" -#: ../../include/identity.php:1027 +#: ../../include/identity.php:1132 msgid "Birthdays this week:" msgstr "Geburtstage in dieser Woche:" -#: ../../include/identity.php:1080 +#: ../../include/identity.php:1185 msgid "[No description]" msgstr "[Keine Beschreibung]" -#: ../../include/identity.php:1098 +#: ../../include/identity.php:1203 msgid "Event Reminders" msgstr "Termin-Erinnerungen" -#: ../../include/identity.php:1099 +#: ../../include/identity.php:1204 msgid "Events this week:" msgstr "Termine in dieser Woche:" -#: ../../include/identity.php:1112 ../../include/identity.php:1229 +#: ../../include/identity.php:1217 ../../include/identity.php:1334 #: ../../include/apps.php:138 ../../mod/profperm.php:112 msgid "Profile" msgstr "Profil" -#: ../../include/identity.php:1120 ../../mod/settings.php:1056 +#: ../../include/identity.php:1225 ../../mod/settings.php:1056 msgid "Full Name:" msgstr "Voller Name:" -#: ../../include/identity.php:1127 +#: ../../include/identity.php:1232 msgid "Like this channel" msgstr "Dieser Kanal gefällt mir" -#: ../../include/identity.php:1151 +#: ../../include/identity.php:1256 msgid "j F, Y" msgstr "j. F Y" -#: ../../include/identity.php:1152 +#: ../../include/identity.php:1257 msgid "j F" msgstr "j. F" -#: ../../include/identity.php:1159 +#: ../../include/identity.php:1264 msgid "Birthday:" msgstr "Geburtstag:" -#: ../../include/identity.php:1163 +#: ../../include/identity.php:1268 ../../mod/directory.php:297 msgid "Age:" msgstr "Alter:" -#: ../../include/identity.php:1172 +#: ../../include/identity.php:1277 #, php-format msgid "for %1$d %2$s" msgstr "seit %1$d %2$s" -#: ../../include/identity.php:1175 ../../mod/profiles.php:691 +#: ../../include/identity.php:1280 ../../mod/profiles.php:691 msgid "Sexual Preference:" msgstr "Sexuelle Orientierung:" -#: ../../include/identity.php:1179 ../../mod/profiles.php:693 +#: ../../include/identity.php:1284 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 msgid "Hometown:" msgstr "Heimatstadt:" -#: ../../include/identity.php:1181 +#: ../../include/identity.php:1286 msgid "Tags:" msgstr "Schlagworte:" -#: ../../include/identity.php:1183 ../../mod/profiles.php:694 +#: ../../include/identity.php:1288 ../../mod/profiles.php:694 msgid "Political Views:" msgstr "Politische Ansichten:" -#: ../../include/identity.php:1185 +#: ../../include/identity.php:1290 msgid "Religion:" msgstr "Religion:" -#: ../../include/identity.php:1187 +#: ../../include/identity.php:1292 ../../mod/directory.php:315 msgid "About:" msgstr "Über:" -#: ../../include/identity.php:1189 +#: ../../include/identity.php:1294 msgid "Hobbies/Interests:" msgstr "Hobbys/Interessen:" -#: ../../include/identity.php:1191 ../../mod/profiles.php:697 +#: ../../include/identity.php:1296 ../../mod/profiles.php:697 msgid "Likes:" msgstr "Gefällt:" -#: ../../include/identity.php:1193 ../../mod/profiles.php:698 +#: ../../include/identity.php:1298 ../../mod/profiles.php:698 msgid "Dislikes:" msgstr "Gefällt nicht:" -#: ../../include/identity.php:1195 +#: ../../include/identity.php:1300 msgid "Contact information and Social Networks:" msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/identity.php:1197 +#: ../../include/identity.php:1302 msgid "My other channels:" msgstr "Meine anderen Kanäle:" -#: ../../include/identity.php:1199 +#: ../../include/identity.php:1304 msgid "Musical interests:" msgstr "Musikalische Interessen:" -#: ../../include/identity.php:1201 +#: ../../include/identity.php:1306 msgid "Books, literature:" msgstr "Bücher, Literatur:" -#: ../../include/identity.php:1203 +#: ../../include/identity.php:1308 msgid "Television:" msgstr "Fernsehen:" -#: ../../include/identity.php:1205 +#: ../../include/identity.php:1310 msgid "Film/dance/culture/entertainment:" msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/identity.php:1207 +#: ../../include/identity.php:1312 msgid "Love/Romance:" msgstr "Liebe/Romantik:" -#: ../../include/identity.php:1209 +#: ../../include/identity.php:1314 msgid "Work/employment:" msgstr "Arbeit/Anstellung:" -#: ../../include/identity.php:1211 +#: ../../include/identity.php:1316 msgid "School/education:" msgstr "Schule/Ausbildung:" -#: ../../include/identity.php:1231 +#: ../../include/identity.php:1336 msgid "Like this thing" msgstr "Gefällt mir" @@ -3539,7 +3568,7 @@ msgstr "Größtenteils weiblich" #: ../../include/profile_selectors.php:6 msgid "Transgender" -msgstr "Transsexuell" +msgstr "Transgender" #: ../../include/profile_selectors.php:6 msgid "Intersex" @@ -3805,17 +3834,17 @@ msgstr "Installieren" msgid "Purchase" msgstr "Kaufen" -#: ../../include/bbcode.php:122 ../../include/bbcode.php:764 -#: ../../include/bbcode.php:767 ../../include/bbcode.php:772 -#: ../../include/bbcode.php:775 ../../include/bbcode.php:778 -#: ../../include/bbcode.php:781 ../../include/bbcode.php:786 -#: ../../include/bbcode.php:789 ../../include/bbcode.php:794 -#: ../../include/bbcode.php:797 ../../include/bbcode.php:800 -#: ../../include/bbcode.php:803 +#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 +#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 +#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 +#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 +#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 +#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 +#: ../../include/bbcode.php:807 msgid "Image/photo" msgstr "Bild/Foto" -#: ../../include/bbcode.php:161 ../../include/bbcode.php:814 +#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" @@ -3824,44 +3853,51 @@ msgstr "Verschlüsselter Inhalt" msgid "Install %s element: " msgstr "Element %s installieren: " -#: ../../include/bbcode.php:188 ../../mod/impel.php:37 +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, allerdings fehlen dir die nötigen Rechte es auf dieser Seite zu installieren." + +#: ../../include/bbcode.php:192 ../../mod/impel.php:37 msgid "webpage" msgstr "Webseite" -#: ../../include/bbcode.php:191 ../../mod/impel.php:47 +#: ../../include/bbcode.php:195 ../../mod/impel.php:47 msgid "layout" msgstr "Gestaltung" -#: ../../include/bbcode.php:194 ../../mod/impel.php:42 +#: ../../include/bbcode.php:198 ../../mod/impel.php:42 msgid "block" msgstr "Block" -#: ../../include/bbcode.php:197 ../../mod/impel.php:54 +#: ../../include/bbcode.php:201 ../../mod/impel.php:54 msgid "menu" msgstr "Menü" -#: ../../include/bbcode.php:211 +#: ../../include/bbcode.php:215 msgid "QR code" msgstr "QR-Code" -#: ../../include/bbcode.php:262 +#: ../../include/bbcode.php:266 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s schrieb den folgenden %2$s %3$s" -#: ../../include/bbcode.php:264 +#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 msgid "post" msgstr "Beitrag" -#: ../../include/bbcode.php:514 +#: ../../include/bbcode.php:518 msgid "Different viewers will see this text differently" msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" -#: ../../include/bbcode.php:725 +#: ../../include/bbcode.php:729 msgid "$1 spoiler" msgstr "$1 Spoiler" -#: ../../include/bbcode.php:752 +#: ../../include/bbcode.php:756 msgid "$1 wrote:" msgstr "$1 schrieb:" @@ -3949,35 +3985,94 @@ msgstr "%d neue Vorstellungen" msgid "Delegated Channels" msgstr "Delegierte Kanäle" -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." +#: ../../mod/directory.php:59 ../../mod/photos.php:441 ../../mod/search.php:13 +#: ../../mod/ratings.php:82 ../../mod/viewconnections.php:17 +#: ../../mod/display.php:13 +msgid "Public access denied." +msgstr "Öffentlicher Zugang verweigert." -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../mod/directory.php:234 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d Bewertung" +msgstr[1] "%d Bewertungen" -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." +#: ../../mod/directory.php:245 +msgid "Gender: " +msgstr "Geschlecht:" -#: ../../mod/item.php:901 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../mod/directory.php:247 +msgid "Status: " +msgstr "Status:" -#: ../../mod/item.php:1119 -msgid "Unable to obtain post information from database." -msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." +#: ../../mod/directory.php:249 +msgid "Homepage: " +msgstr "Webseite:" -#: ../../mod/item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." +#: ../../mod/directory.php:308 ../../mod/events.php:682 +msgid "Description:" +msgstr "Beschreibung:" -#: ../../mod/item.php:1133 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." +#: ../../mod/directory.php:317 +msgid "Public Forum:" +msgstr "Öffentliches Forum:" + +#: ../../mod/directory.php:320 +msgid "Keywords: " +msgstr "Schlüsselwörter:" + +#: ../../mod/directory.php:323 +msgid "Don't suggest" +msgstr "Nicht vorschlagen." + +#: ../../mod/directory.php:325 +msgid "Common connections:" +msgstr "Gemeinsame Verbindungen:" + +#: ../../mod/directory.php:374 +msgid "Global Directory" +msgstr "Globales Verzeichnis" + +#: ../../mod/directory.php:374 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: ../../mod/directory.php:380 +msgid "Finding:" +msgstr "Ergebnisse:" + +#: ../../mod/directory.php:385 +msgid "next page" +msgstr "nächste Seite" + +#: ../../mod/directory.php:385 +msgid "previous page" +msgstr "vorherige Seite" + +#: ../../mod/directory.php:386 +msgid "Sort options" +msgstr "Sortieroptionen" + +#: ../../mod/directory.php:387 +msgid "Alphabetic" +msgstr "alphabetisch" + +#: ../../mod/directory.php:388 +msgid "Reverse Alphabetic" +msgstr "Entgegengesetzt alphabetisch" + +#: ../../mod/directory.php:389 +msgid "Newest to Oldest" +msgstr "Neueste zuerst" + +#: ../../mod/directory.php:390 +msgid "Oldest to Newest" +msgstr "Älteste zuerst" + +#: ../../mod/directory.php:407 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." #: ../../mod/xchan.php:6 msgid "Xchan Lookup" @@ -3987,7 +4082,7 @@ msgstr "Xchan-Suche" msgid "Lookup xchan beginning with (or webbie): " msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../mod/xchan.php:37 ../../mod/menu.php:154 ../../mod/mitem.php:120 +#: ../../mod/xchan.php:37 ../../mod/mitem.php:116 ../../mod/menu.php:160 msgid "Not found." msgstr "Nicht gefunden." @@ -4009,26 +4104,6 @@ msgid "" " and/or create new posts for you?" msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" -#: ../../mod/api.php:105 ../../mod/photos.php:568 ../../mod/menu.php:91 -#: ../../mod/menu.php:145 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:430 -#: ../../mod/settings.php:579 ../../mod/mitem.php:163 ../../mod/mitem.php:164 -#: ../../mod/mitem.php:234 ../../mod/mitem.php:235 ../../mod/removeme.php:60 -#: ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1554 -msgid "Yes" -msgstr "Ja" - -#: ../../mod/api.php:106 ../../mod/photos.php:568 ../../mod/menu.php:91 -#: ../../mod/menu.php:145 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:428 -#: ../../mod/settings.php:579 ../../mod/mitem.php:163 ../../mod/mitem.php:164 -#: ../../mod/mitem.php:234 ../../mod/mitem.php:235 ../../mod/removeme.php:60 -#: ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1554 -msgid "No" -msgstr "Nein" - #: ../../mod/webpages.php:191 msgid "Page Title" msgstr "Seitentitel" @@ -4100,56 +4175,56 @@ msgstr "Eingeschränkter oder Premium-Kanal" msgid "Thing updated" msgstr "Sache aktualisiert" -#: ../../mod/thing.php:153 +#: ../../mod/thing.php:167 msgid "Object store: failed" msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../mod/thing.php:157 +#: ../../mod/thing.php:171 msgid "Thing added" msgstr "Sache hinzugefügt" -#: ../../mod/thing.php:175 +#: ../../mod/thing.php:203 #, php-format msgid "OBJ: %1$s %2$s %3$s" msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/thing.php:226 +#: ../../mod/thing.php:254 msgid "Show Thing" msgstr "Sache anzeigen" -#: ../../mod/thing.php:233 +#: ../../mod/thing.php:261 msgid "item not found." msgstr "Eintrag nicht gefunden" -#: ../../mod/thing.php:261 +#: ../../mod/thing.php:289 msgid "Edit Thing" msgstr "Sache bearbeiten" -#: ../../mod/thing.php:263 ../../mod/thing.php:310 +#: ../../mod/thing.php:291 ../../mod/thing.php:338 msgid "Select a profile" msgstr "Wähle ein Profil" -#: ../../mod/thing.php:267 ../../mod/thing.php:313 +#: ../../mod/thing.php:295 ../../mod/thing.php:341 msgid "Post an activity" msgstr "Aktivitätsnachricht senden" -#: ../../mod/thing.php:267 ../../mod/thing.php:313 +#: ../../mod/thing.php:295 ../../mod/thing.php:341 msgid "Only sends to viewers of the applicable profile" msgstr "Nur an Betrachter des ausgewählten Profils senden" -#: ../../mod/thing.php:269 ../../mod/thing.php:315 +#: ../../mod/thing.php:297 ../../mod/thing.php:343 msgid "Name of thing e.g. something" msgstr "Name der Sache, z. B. irgendwas" -#: ../../mod/thing.php:271 ../../mod/thing.php:316 +#: ../../mod/thing.php:299 ../../mod/thing.php:344 msgid "URL of thing (optional)" msgstr "URL der Sache (optional)" -#: ../../mod/thing.php:273 ../../mod/thing.php:317 +#: ../../mod/thing.php:301 ../../mod/thing.php:345 msgid "URL for photo of thing (optional)" msgstr "URL eines Fotos der Sache (optional)" -#: ../../mod/thing.php:308 +#: ../../mod/thing.php:336 msgid "Add Thing to your Profile" msgstr "Die Sache Deinem Profil hinzufügen" @@ -4246,8 +4321,8 @@ msgstr "Ungültiges Element." msgid "Channel not found." msgstr "Kanal nicht gefunden." -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:106 -#: ../../mod/page.php:89 ../../index.php:230 +#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:79 +#: ../../mod/page.php:89 ../../index.php:241 msgid "Page not found." msgstr "Seite nicht gefunden." @@ -4277,143 +4352,155 @@ msgstr "Sache" msgid "Channel unavailable." msgstr "Kanal nicht vorhanden." -#: ../../mod/like.php:228 +#: ../../mod/like.php:231 msgid "Previous action reversed." msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../mod/like.php:398 +#: ../../mod/like.php:401 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s stimmt %2$ss %3$s zu" -#: ../../mod/like.php:400 +#: ../../mod/like.php:403 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s lehnt %2$ss %3$s ab" -#: ../../mod/like.php:402 +#: ../../mod/like.php:405 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s enthält sich zu %2$ss %3$s" -#: ../../mod/like.php:404 +#: ../../mod/like.php:407 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s teil" -#: ../../mod/like.php:406 +#: ../../mod/like.php:409 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s nicht teil" -#: ../../mod/like.php:408 +#: ../../mod/like.php:411 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" -#: ../../mod/like.php:492 +#: ../../mod/like.php:507 msgid "Action completed." msgstr "Aktion durchgeführt." -#: ../../mod/like.php:493 +#: ../../mod/like.php:508 msgid "Thank you." msgstr "Vielen Dank." -#: ../../mod/events.php:87 +#: ../../mod/events.php:21 +msgid "Calendar entries imported." +msgstr "Kalendereinträge wurden importiert." + +#: ../../mod/events.php:23 +msgid "No calendar entries found." +msgstr "Keine Kalendereinträge gefunden." + +#: ../../mod/events.php:101 msgid "Event can not end before it has started." msgstr "Termin-Ende liegt vor dem Beginn." -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 +#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 msgid "Unable to generate preview." msgstr "Vorschau konnte nicht erzeugt werden." -#: ../../mod/events.php:96 +#: ../../mod/events.php:110 msgid "Event title and start time are required." msgstr "Titel und Startzeit des Termins sind erforderlich." -#: ../../mod/events.php:114 +#: ../../mod/events.php:128 msgid "Event not found." msgstr "Termin nicht gefunden." -#: ../../mod/events.php:396 +#: ../../mod/events.php:426 msgid "l, F j" msgstr "l, j. F" -#: ../../mod/events.php:418 +#: ../../mod/events.php:448 msgid "Edit event" msgstr "Termin bearbeiten" -#: ../../mod/events.php:419 +#: ../../mod/events.php:449 msgid "Delete event" msgstr "Termin löschen" -#: ../../mod/events.php:473 +#: ../../mod/events.php:483 +msgid "calendar" +msgstr "Kalender" + +#: ../../mod/events.php:504 msgid "Create New Event" msgstr "Neuen Termin erstellen" -#: ../../mod/events.php:474 ../../mod/photos.php:839 +#: ../../mod/events.php:505 ../../mod/photos.php:839 msgid "Previous" msgstr "Voriges" -#: ../../mod/events.php:475 ../../mod/photos.php:848 ../../mod/setup.php:281 +#: ../../mod/events.php:506 ../../mod/photos.php:848 ../../mod/setup.php:281 msgid "Next" msgstr "Nächste" -#: ../../mod/events.php:476 +#: ../../mod/events.php:507 msgid "Export" msgstr "Exportieren" -#: ../../mod/events.php:504 +#: ../../mod/events.php:510 +msgid "Import" +msgstr "Import" + +#: ../../mod/events.php:541 msgid "Event removed" msgstr "Termin gelöscht" -#: ../../mod/events.php:507 +#: ../../mod/events.php:544 msgid "Failed to remove event" msgstr "Termin konnte nicht gelöscht werden" -#: ../../mod/events.php:627 +#: ../../mod/events.php:664 msgid "Event details" msgstr "Termin-Details" -#: ../../mod/events.php:628 +#: ../../mod/events.php:665 msgid "Starting date and Title are required." msgstr "Startdatum und Titel sind erforderlich." -#: ../../mod/events.php:630 +#: ../../mod/events.php:667 msgid "Categories (comma-separated list)" msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../mod/events.php:632 +#: ../../mod/events.php:669 msgid "Event Starts:" msgstr "Termin beginnt:" -#: ../../mod/events.php:639 +#: ../../mod/events.php:676 msgid "Finish date/time is not known or not relevant" msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" -#: ../../mod/events.php:641 +#: ../../mod/events.php:678 msgid "Event Finishes:" msgstr "Termin endet:" -#: ../../mod/events.php:643 ../../mod/events.php:644 +#: ../../mod/events.php:680 ../../mod/events.php:681 msgid "Adjust for viewer timezone" msgstr "An die Zeitzone des Betrachters anpassen" -#: ../../mod/events.php:643 +#: ../../mod/events.php:680 msgid "" "Important for events that happen in a particular place. Not practical for " "global holidays." msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." -#: ../../mod/events.php:645 -msgid "Description:" -msgstr "Beschreibung:" - -#: ../../mod/events.php:649 +#: ../../mod/events.php:686 msgid "Title:" msgstr "Titel:" -#: ../../mod/events.php:651 +#: ../../mod/events.php:688 msgid "Share this event" msgstr "Den Termin teilen" @@ -4467,7 +4554,7 @@ msgstr "Bewerten" msgid "View ratings" msgstr "Bewertungen ansehen" -#: ../../mod/rpost.php:131 ../../mod/editpost.php:42 +#: ../../mod/rpost.php:131 ../../mod/editpost.php:158 msgid "Edit post" msgstr "Bearbeite Beitrag" @@ -4582,13 +4669,35 @@ msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" msgid "Site Administrators" msgstr "Administratoren" -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Hilfe:" +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." -#: ../../mod/help.php:76 ../../index.php:227 -msgid "Not Found" -msgstr "Nicht gefunden" +#: ../../mod/item.php:440 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." + +#: ../../mod/item.php:480 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." + +#: ../../mod/item.php:914 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." + +#: ../../mod/item.php:1146 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." + +#: ../../mod/item.php:1153 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." + +#: ../../mod/item.php:1160 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." #: ../../mod/network.php:91 msgid "No such group" @@ -4626,104 +4735,88 @@ msgstr "Kein Kanal." msgid "Common connections" msgstr "Gemeinsame Verbindungen" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." - -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Diese Website ist kein Verzeichnis-Server" - -#: ../../mod/connections.php:37 ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "Konnte nicht auf den Kontakteintrag zugreifen." - -#: ../../mod/connections.php:51 ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "Gewähltes Profil nicht gefunden." - -#: ../../mod/connections.php:94 ../../mod/connedit.php:214 -msgid "Connection updated." -msgstr "Verbindung aktualisiert." +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." -#: ../../mod/connections.php:96 ../../mod/connedit.php:216 -msgid "Failed to update connection record." -msgstr "Konnte den Verbindungseintrag nicht aktualisieren." +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Diese Website ist kein Verzeichnis-Server" -#: ../../mod/connections.php:192 ../../mod/connections.php:293 +#: ../../mod/connections.php:52 ../../mod/connections.php:153 msgid "Blocked" msgstr "Blockiert" -#: ../../mod/connections.php:197 ../../mod/connections.php:300 +#: ../../mod/connections.php:57 ../../mod/connections.php:160 msgid "Ignored" msgstr "Ignoriert" -#: ../../mod/connections.php:202 ../../mod/connections.php:314 +#: ../../mod/connections.php:62 ../../mod/connections.php:174 msgid "Hidden" msgstr "Versteckt" -#: ../../mod/connections.php:207 ../../mod/connections.php:307 +#: ../../mod/connections.php:67 ../../mod/connections.php:167 msgid "Archived" msgstr "Archiviert" -#: ../../mod/connections.php:271 +#: ../../mod/connections.php:131 msgid "Suggest new connections" msgstr "Neue Verbindungen vorschlagen" -#: ../../mod/connections.php:274 +#: ../../mod/connections.php:134 msgid "New Connections" msgstr "Neue Verbindungen" -#: ../../mod/connections.php:277 +#: ../../mod/connections.php:137 msgid "Show pending (new) connections" msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 +#: ../../mod/connections.php:140 ../../mod/profperm.php:139 msgid "All Connections" msgstr "Alle Verbindungen" -#: ../../mod/connections.php:283 +#: ../../mod/connections.php:143 msgid "Show all connections" msgstr "Alle Verbindungen anzeigen" -#: ../../mod/connections.php:286 +#: ../../mod/connections.php:146 msgid "Unblocked" msgstr "Freigegeben" -#: ../../mod/connections.php:289 +#: ../../mod/connections.php:149 msgid "Only show unblocked connections" msgstr "Nur freigegebene Verbindungen anzeigen" -#: ../../mod/connections.php:296 +#: ../../mod/connections.php:156 msgid "Only show blocked connections" msgstr "Nur blockierte Verbindungen anzeigen" -#: ../../mod/connections.php:303 +#: ../../mod/connections.php:163 msgid "Only show ignored connections" msgstr "Nur ignorierte Verbindungen anzeigen" -#: ../../mod/connections.php:310 +#: ../../mod/connections.php:170 msgid "Only show archived connections" msgstr "Nur archivierte Verbindungen anzeigen" -#: ../../mod/connections.php:317 +#: ../../mod/connections.php:177 msgid "Only show hidden connections" msgstr "Nur versteckte Verbindungen anzeigen" -#: ../../mod/connections.php:372 +#: ../../mod/connections.php:232 #, php-format msgid "%1$s [%2$s]" msgstr "%1$s [%2$s]" -#: ../../mod/connections.php:373 +#: ../../mod/connections.php:233 msgid "Edit connection" msgstr "Verbindung bearbeiten" -#: ../../mod/connections.php:411 +#: ../../mod/connections.php:271 msgid "Search your connections" msgstr "Verbindungen durchsuchen" -#: ../../mod/connections.php:412 +#: ../../mod/connections.php:272 msgid "Finding: " msgstr "Ergebnisse:" @@ -4735,10 +4828,34 @@ msgstr "Datenblockname" msgid "Block Title" msgstr "Titel des Blocks" -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" +#: ../../mod/editpost.php:20 ../../mod/editlayout.php:76 +#: ../../mod/editwebpage.php:77 ../../mod/editblock.php:78 +#: ../../mod/editblock.php:94 +msgid "Item not found" +msgstr "Element nicht gefunden" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." + +#: ../../mod/editpost.php:48 +msgid "Delete item?" +msgstr "Eintrag löschen?" + +#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 +#: ../../mod/editwebpage.php:187 ../../mod/editblock.php:144 +msgid "Insert YouTube video" +msgstr "YouTube-Video einfügen" + +#: ../../mod/editpost.php:116 ../../mod/editlayout.php:143 +#: ../../mod/editwebpage.php:188 ../../mod/editblock.php:145 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis [.ogg]-Video einfügen" + +#: ../../mod/editpost.php:117 ../../mod/editlayout.php:144 +#: ../../mod/editwebpage.php:189 ../../mod/editblock.php:146 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis [.ogg]-Audio einfügen" #: ../../mod/cloud.php:120 msgid "$Projectname - Guests: Username: {your email address}, Password: +++" @@ -4760,12 +4877,6 @@ msgstr "Album löschen" msgid "Delete Photo" msgstr "Foto löschen" -#: ../../mod/photos.php:441 ../../mod/search.php:13 ../../mod/display.php:13 -#: ../../mod/ratings.php:82 ../../mod/directory.php:47 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Öffentlicher Zugang verweigert." - #: ../../mod/photos.php:452 msgid "No photos selected" msgstr "Keine Fotos ausgewählt" @@ -4988,76 +5099,76 @@ msgstr "– auswählen –" msgid "Your service plan only allows %d channels." msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../mod/import.php:51 +#: ../../mod/import.php:60 msgid "Nothing to import." msgstr "Nichts zu importieren." -#: ../../mod/import.php:75 +#: ../../mod/import.php:84 msgid "Unable to download data from old server" msgstr "Daten können vom alten Server nicht heruntergeladen werden" -#: ../../mod/import.php:81 +#: ../../mod/import.php:90 msgid "Imported file is empty." msgstr "Die importierte Datei ist leer." -#: ../../mod/import.php:106 +#: ../../mod/import.php:110 +msgid "The data provided is not compatible with this project." +msgstr "Die bereitgestellten Daten sind mit diesem Projekt nicht kompatibel." + +#: ../../mod/import.php:115 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." + +#: ../../mod/import.php:135 msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." - -#: ../../mod/import.php:147 +#: ../../mod/import.php:176 msgid "Channel clone failed. Import failed." msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." -#: ../../mod/import.php:157 +#: ../../mod/import.php:186 msgid "Cloned channel not found. Import failed." msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import abgeschlossen." - -#: ../../mod/import.php:487 +#: ../../mod/import.php:574 msgid "You must be logged in to use this feature." msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." -#: ../../mod/import.php:492 +#: ../../mod/import.php:579 msgid "Import Channel" msgstr "Kanal importieren" -#: ../../mod/import.php:493 +#: ../../mod/import.php:580 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 "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich." +"or provide an export file." +msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen RadMatrix-Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." -#: ../../mod/import.php:494 +#: ../../mod/import.php:581 msgid "File to Upload" msgstr "Hochzuladende Datei:" -#: ../../mod/import.php:495 +#: ../../mod/import.php:582 msgid "Or provide the old server/hub details" msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" -#: ../../mod/import.php:496 +#: ../../mod/import.php:583 msgid "Your old identity address (xyz@example.com)" msgstr "Bisherige Kanal-Adresse (xyz@example.com)" -#: ../../mod/import.php:497 +#: ../../mod/import.php:584 msgid "Your old login email address" msgstr "Deine alte Login-E-Mail-Adresse" -#: ../../mod/import.php:498 +#: ../../mod/import.php:585 msgid "Your old login password" msgstr "Dein altes Passwort" -#: ../../mod/import.php:499 +#: ../../mod/import.php:586 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" @@ -5065,52 +5176,39 @@ msgid "" "primary location for files, photos, and media." msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." -#: ../../mod/import.php:500 +#: ../../mod/import.php:587 msgid "Make this hub my primary location" msgstr "Dieser Red-Server ist mein primärer Server." -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Existierende Beiträge importieren, falls möglich" - -#: ../../mod/editlayout.php:76 ../../mod/editwebpage.php:77 -#: ../../mod/editpost.php:20 ../../mod/editblock.php:78 -#: ../../mod/editblock.php:94 -msgid "Item not found" -msgstr "Element nicht gefunden" +#: ../../mod/import.php:588 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" -#: ../../mod/editlayout.php:106 -msgid "Edit Layout" -msgstr "Gestaltung bearbeiten" +#: ../../mod/import.php:589 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." -#: ../../mod/editlayout.php:117 +#: ../../mod/editlayout.php:111 msgid "Delete layout?" msgstr "Gestaltung löschen?" -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:187 -#: ../../mod/editpost.php:122 ../../mod/editblock.php:150 -msgid "Insert YouTube video" -msgstr "YouTube-Video einfügen" - -#: ../../mod/editlayout.php:149 ../../mod/editwebpage.php:188 -#: ../../mod/editpost.php:123 ../../mod/editblock.php:151 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis [.ogg]-Video einfügen" - -#: ../../mod/editlayout.php:150 ../../mod/editwebpage.php:189 -#: ../../mod/editpost.php:124 ../../mod/editblock.php:152 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis [.ogg]-Audio einfügen" - -#: ../../mod/editlayout.php:164 ../../mod/layouts.php:124 +#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 msgid "Layout Description (Optional)" msgstr "Gestaltungsbeschreibung (Optional)" -#: ../../mod/editlayout.php:166 ../../mod/layouts.php:121 +#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 #: ../../mod/layouts.php:179 msgid "Layout Name" msgstr "Gestaltungsname" +#: ../../mod/editlayout.php:177 +msgid "Edit Layout" +msgstr "Gestaltung bearbeiten" + #: ../../mod/chat.php:19 ../../mod/channel.php:25 msgid "You must be logged in to see this page." msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." @@ -5152,6 +5250,126 @@ msgstr "Name des Chatraums" msgid "%1$s's Chatrooms" msgstr "%1$ss Chaträume" +#: ../../mod/mitem.php:24 ../../mod/menu.php:138 +msgid "Menu not found." +msgstr "Menü nicht gefunden" + +#: ../../mod/mitem.php:48 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." + +#: ../../mod/mitem.php:72 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." + +#: ../../mod/mitem.php:88 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." + +#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" + +#: ../../mod/mitem.php:155 ../../mod/mitem.php:227 ../../mod/settings.php:1083 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" + +#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 +msgid "Link Name" +msgstr "Name des Links" + +#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" + +#: ../../mod/mitem.php:158 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." + +#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" + +#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" + +#: ../../mod/mitem.php:162 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" + +#: ../../mod/mitem.php:163 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" + +#: ../../mod/mitem.php:171 +msgid "Menu:" +msgstr "Menü:" + +#: ../../mod/mitem.php:174 +msgid "Link Target" +msgstr "Ziel des Links" + +#: ../../mod/mitem.php:177 +msgid "Edit menu" +msgstr "Menü bearbeiten" + +#: ../../mod/mitem.php:180 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" + +#: ../../mod/mitem.php:181 +msgid "Drop element" +msgstr "Bestandteil löschen" + +#: ../../mod/mitem.php:182 +msgid "New element" +msgstr "Neues Bestandteil" + +#: ../../mod/mitem.php:183 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" + +#: ../../mod/mitem.php:184 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" + +#: ../../mod/mitem.php:185 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" + +#: ../../mod/mitem.php:186 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" + +#: ../../mod/mitem.php:203 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." + +#: ../../mod/mitem.php:215 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." + +#: ../../mod/mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." + +#: ../../mod/mitem.php:224 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" + +#: ../../mod/mitem.php:230 +msgid "Link text" +msgstr "Link Text" + #: ../../mod/editwebpage.php:152 msgid "Delete webpage?" msgstr "Webseite löschen?" @@ -5176,7 +5394,7 @@ msgstr "Kein gültiges Konto gefunden." msgid "Password reset request issued. Check your email." msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 #, php-format msgid "Site Member (%s)" msgstr "Nutzer (%s)" @@ -5192,52 +5410,52 @@ msgid "" "Password reset failed." msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../mod/lostpass.php:85 ../../boot.php:1558 +#: ../../mod/lostpass.php:86 ../../boot.php:1558 msgid "Password Reset" msgstr "Zurücksetzen des Kennworts" -#: ../../mod/lostpass.php:86 +#: ../../mod/lostpass.php:87 msgid "Your password has been reset as requested." msgstr "Dein Passwort wurde wie angefordert neu erstellt." -#: ../../mod/lostpass.php:87 +#: ../../mod/lostpass.php:88 msgid "Your new password is" msgstr "Dein neues Passwort lautet" -#: ../../mod/lostpass.php:88 +#: ../../mod/lostpass.php:89 msgid "Save or copy your new password - and then" msgstr "Speichere oder kopiere Dein neues Passwort – und dann" -#: ../../mod/lostpass.php:89 +#: ../../mod/lostpass.php:90 msgid "click here to login" msgstr "Klicke hier, um dich anzumelden" -#: ../../mod/lostpass.php:90 +#: ../../mod/lostpass.php:91 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Ihr Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." -#: ../../mod/lostpass.php:107 +#: ../../mod/lostpass.php:108 #, php-format msgid "Your password has changed at %s" msgstr "Auf %s wurde Dein Passwort geändert" -#: ../../mod/lostpass.php:122 +#: ../../mod/lostpass.php:123 msgid "Forgot your Password?" msgstr "Kennwort vergessen?" -#: ../../mod/lostpass.php:123 +#: ../../mod/lostpass.php:124 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." -#: ../../mod/lostpass.php:124 +#: ../../mod/lostpass.php:125 msgid "Email Address" msgstr "E-Mail Adresse" -#: ../../mod/lostpass.php:125 +#: ../../mod/lostpass.php:126 msgid "Reset" msgstr "Zurücksetzen" @@ -5248,23 +5466,23 @@ msgstr "Webseite:" #: ../../mod/rate.php:160 #, php-format msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" +msgstr "Entfernter Kanal [%s] (auf diesem Server noch unbekannt)" -#: ../../mod/rate.php:161 ../../mod/connedit.php:663 +#: ../../mod/rate.php:161 msgid "Rating (this information is public)" msgstr "Bewertung (öffentlich sichtbar)" -#: ../../mod/rate.php:162 ../../mod/connedit.php:664 +#: ../../mod/rate.php:162 msgid "Optionally explain your rating (this information is public)" msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../mod/editblock.php:117 +msgid "Delete block?" +msgstr "Block löschen?" -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eintrag löschen?" +#: ../../mod/editblock.php:179 +msgid "Edit Block" +msgstr "Block bearbeiten" #: ../../mod/invite.php:25 msgid "Total invitation limit exceeded." @@ -5322,7 +5540,7 @@ msgstr "Gib folgenden Einladungs-Code ein:" #: ../../mod/invite.php:135 msgid "" "1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registriere Dich auf irgendeinem $Projectname-Server (sie sind alle miteinander verbunden)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Server (sie sind alle miteinander verbunden)" #: ../../mod/invite.php:137 msgid "2. Enter my $Projectname network address into the site searchbar." @@ -5427,95 +5645,91 @@ msgstr "Quelle gelöscht" msgid "Unable to remove source." msgstr "Konnte die Quelle nicht löschen." -#: ../../mod/menu.php:44 +#: ../../mod/menu.php:45 msgid "Unable to update menu." msgstr "Kann Menü nicht aktualisieren." -#: ../../mod/menu.php:53 +#: ../../mod/menu.php:56 msgid "Unable to create menu." msgstr "Kann Menü nicht erstellen." -#: ../../mod/menu.php:89 ../../mod/menu.php:101 +#: ../../mod/menu.php:92 ../../mod/menu.php:104 msgid "Menu Name" msgstr "Name des Menüs" -#: ../../mod/menu.php:89 +#: ../../mod/menu.php:92 msgid "Unique name (not visible on webpage) - required" msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" -#: ../../mod/menu.php:90 ../../mod/menu.php:102 +#: ../../mod/menu.php:93 ../../mod/menu.php:105 msgid "Menu Title" msgstr "Menütitel" -#: ../../mod/menu.php:90 +#: ../../mod/menu.php:93 msgid "Visible on webpage - leave empty for no title" msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" -#: ../../mod/menu.php:91 +#: ../../mod/menu.php:94 msgid "Allow Bookmarks" msgstr "Lesezeichen erlauben" -#: ../../mod/menu.php:91 ../../mod/menu.php:145 +#: ../../mod/menu.php:94 ../../mod/menu.php:151 msgid "Menu may be used to store saved bookmarks" msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" -#: ../../mod/menu.php:92 ../../mod/menu.php:147 +#: ../../mod/menu.php:95 ../../mod/menu.php:153 msgid "Submit and proceed" msgstr "Absenden und fortfahren" -#: ../../mod/menu.php:104 +#: ../../mod/menu.php:107 msgid "Drop" msgstr "Löschen" -#: ../../mod/menu.php:108 +#: ../../mod/menu.php:111 msgid "Bookmarks allowed" msgstr "Lesezeichen erlaubt" -#: ../../mod/menu.php:110 +#: ../../mod/menu.php:113 msgid "Delete this menu" msgstr "Lösche dieses Menü" -#: ../../mod/menu.php:111 ../../mod/menu.php:142 +#: ../../mod/menu.php:114 ../../mod/menu.php:148 msgid "Edit menu contents" msgstr "Bearbeite Menü Inhalte" -#: ../../mod/menu.php:112 +#: ../../mod/menu.php:115 msgid "Edit this menu" msgstr "Dieses Menü bearbeiten" -#: ../../mod/menu.php:126 +#: ../../mod/menu.php:130 msgid "Menu could not be deleted." msgstr "Menü konnte nicht gelöscht werden." -#: ../../mod/menu.php:134 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menü nicht gefunden" - -#: ../../mod/menu.php:139 +#: ../../mod/menu.php:143 msgid "Edit Menu" msgstr "Menü bearbeiten" -#: ../../mod/menu.php:141 +#: ../../mod/menu.php:147 msgid "Add or remove entries to this menu" msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" -#: ../../mod/menu.php:143 +#: ../../mod/menu.php:149 msgid "Menu name" msgstr "Menü Name" -#: ../../mod/menu.php:143 +#: ../../mod/menu.php:149 msgid "Must be unique, only seen by you" msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" -#: ../../mod/menu.php:144 +#: ../../mod/menu.php:150 msgid "Menu title" msgstr "Menü Titel" -#: ../../mod/menu.php:144 +#: ../../mod/menu.php:150 msgid "Menu title as seen by others" msgstr "Menü Titel wie er von anderen gesehen wird" -#: ../../mod/menu.php:145 +#: ../../mod/menu.php:151 msgid "Allow bookmarks" msgstr "Erlaube Lesezeichen" @@ -5871,7 +6085,7 @@ msgstr "Schule/Ausbildung" msgid "This is your default profile." msgstr "Das ist Dein Standardprofil." -#: ../../mod/profiles.php:728 ../../mod/directory.php:218 +#: ../../mod/profiles.php:728 msgid "Age: " msgstr "Alter:" @@ -5959,7 +6173,7 @@ msgstr "Datenbank Verbindung" msgid "" "In order to install $Projectname we need to know how to connect to your " "database." -msgstr "Um $Projectname installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." +msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." #: ../../mod/setup.php:306 msgid "" @@ -6017,7 +6231,7 @@ msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, dami #: ../../mod/setup.php:319 ../../mod/setup.php:361 msgid "Website URL" -msgstr "Server-URL" +msgstr "URL der Webseite" #: ../../mod/setup.php:319 ../../mod/setup.php:361 msgid "Please use SSL (https) URL if available." @@ -6323,72 +6537,21 @@ msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." msgid "OpenID protocol error. No ID returned." msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:286 +#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:287 #, php-format msgid "Welcome %s. Remote authentication successful." msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../mod/directory.php:224 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d Bewertung" -msgstr[1] "%d Bewertungen" - -#: ../../mod/directory.php:236 -msgid "Gender: " -msgstr "Geschlecht:" - -#: ../../mod/directory.php:238 -msgid "Status: " -msgstr "Status:" - -#: ../../mod/directory.php:240 -msgid "Homepage: " -msgstr "Webseite:" - -#: ../../mod/directory.php:243 -msgid "Hometown: " -msgstr "Wohnort:" - -#: ../../mod/directory.php:245 -msgid "About: " -msgstr "Über:" - -#: ../../mod/directory.php:303 -msgid "Public Forum:" -msgstr "Öffentliches Forum:" - -#: ../../mod/directory.php:306 -msgid "Keywords: " -msgstr "Schlüsselwörter:" - -#: ../../mod/directory.php:311 +#: ../../mod/tagger.php:96 #, php-format -msgid "Common connections: %s" -msgstr "Gemeinsame Verbindungen: %s" - -#: ../../mod/directory.php:363 -msgid "Finding:" -msgstr "Ergebnisse:" - -#: ../../mod/directory.php:368 -msgid "next page" -msgstr "nächste Seite" - -#: ../../mod/directory.php:368 -msgid "previous page" -msgstr "vorherige Seite" - -#: ../../mod/directory.php:385 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +#: ../../mod/uexport.php:45 ../../mod/uexport.php:46 msgid "Export Channel" msgstr "Kanal exportieren" -#: ../../mod/uexport.php:35 +#: ../../mod/uexport.php:47 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 " @@ -6396,11 +6559,11 @@ msgid "" "content." msgstr "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." -#: ../../mod/uexport.php:36 +#: ../../mod/uexport.php:48 msgid "Export Content" msgstr "Kanal und Inhalte exportieren" -#: ../../mod/uexport.php:37 +#: ../../mod/uexport.php:49 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 " @@ -6922,31 +7085,36 @@ msgstr "Letzter bekannter Kontakt" #: ../../mod/admin.php:683 #, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s Nutzer blockiert/freigegeben" -msgstr[1] "%s Nutzer blockiert/freigegeben" +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s Konto blockiert/freigegeben" +msgstr[1] "%s Konten blockiert/freigegeben" #: ../../mod/admin.php:691 #, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s Nutzer gelöscht" -msgstr[1] "%s Nutzer gelöscht" +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s Konto gelöscht" +msgstr[1] "%s Konten gelöscht" #: ../../mod/admin.php:727 msgid "Account not found" msgstr "Konto nicht gefunden" +#: ../../mod/admin.php:739 +#, php-format +msgid "Account '%s' deleted" +msgstr "Konte '%s' gelöscht" + #: ../../mod/admin.php:747 #, php-format -msgid "User '%s' blocked" -msgstr "Benutzer '%s' blockiert" +msgid "Account '%s' blocked" +msgstr "Konto '%s' blockiert" #: ../../mod/admin.php:755 #, php-format -msgid "User '%s' unblocked" -msgstr "Benutzer '%s' freigegeben" +msgid "Account '%s' unblocked" +msgstr "Konto '%s' freigegeben" #: ../../mod/admin.php:818 ../../mod/admin.php:830 msgid "Users" @@ -6968,7 +7136,7 @@ msgstr "Antragsdatum" msgid "No registrations." msgstr "Keine Registrierungen." -#: ../../mod/admin.php:824 +#: ../../mod/admin.php:824 ../../mod/connedit.php:699 msgid "Approve" msgstr "Genehmigen" @@ -6976,13 +7144,11 @@ msgstr "Genehmigen" msgid "Deny" msgstr "Verweigern" -#: ../../mod/admin.php:827 ../../mod/connedit.php:517 -#: ../../mod/connedit.php:720 +#: ../../mod/admin.php:827 ../../mod/connedit.php:531 msgid "Block" msgstr "Blockieren" -#: ../../mod/admin.php:828 ../../mod/connedit.php:517 -#: ../../mod/connedit.php:720 +#: ../../mod/admin.php:828 ../../mod/connedit.php:531 msgid "Unblock" msgstr "Freigeben" @@ -7004,15 +7170,15 @@ msgstr "Service-Klasse" #: ../../mod/admin.php:833 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Ausgewählte Konten werden gelöscht.\\n\\nAlles was diese Konten auf dieser Seite veröffentlicht haben wird permanent gelöscht werden!\\n\\nBist du dir sicher?" #: ../../mod/admin.php:834 msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" #: ../../mod/admin.php:870 #, php-format @@ -7215,14 +7381,6 @@ msgstr "Konnte Deinen Server nicht finden." msgid "Post successful." msgstr "Veröffentlichung erfolgreich." -#: ../../mod/editblock.php:112 -msgid "Edit Block" -msgstr "Block bearbeiten" - -#: ../../mod/editblock.php:123 -msgid "Delete block?" -msgstr "Block löschen?" - #: ../../mod/register.php:44 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." @@ -7342,6 +7500,18 @@ msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus d msgid "Remove Account" msgstr "Konto entfernen" +#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +msgid "Help:" +msgstr "Hilfe:" + +#: ../../mod/help.php:76 ../../index.php:238 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: ../../mod/help.php:100 +msgid "$Projectname Documentation" +msgstr "$Projectname Dokkumentation" + #: ../../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 ../../mod/update_public.php:21 @@ -7766,10 +7936,6 @@ msgstr "Kann die Spam-Aktivität verringern" msgid "Default Post Permissions" msgstr "Standardmäßige Beitragsberechtigungen" -#: ../../mod/settings.php:1083 ../../mod/mitem.php:159 ../../mod/mitem.php:229 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - #: ../../mod/settings.php:1087 msgid "Channel permissions category:" msgstr "Zugriffsrechte-Kategorie des Kanals:" @@ -8018,118 +8184,6 @@ msgstr "Unterhaltung löschen" msgid "D, d M Y - g:i A" msgstr "D, d. M Y - G:i" -#: ../../mod/mitem.php:51 -msgid "Unable to create element." -msgstr "Element konnte nicht erstellt werden." - -#: ../../mod/mitem.php:74 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../mod/mitem.php:89 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:228 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:176 -msgid "Link Name" -msgstr "Name des Links" - -#: ../../mod/mitem.php:162 ../../mod/mitem.php:233 -msgid "Link or Submenu Target" -msgstr "Ziel des Links oder Untermenüs" - -#: ../../mod/mitem.php:162 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:234 -msgid "Use magic-auth if available" -msgstr "Magic-Auth verwenden, falls verfügbar" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:235 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:236 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:236 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" - -#: ../../mod/mitem.php:166 -msgid "Submit and finish" -msgstr "Absenden und fertigstellen" - -#: ../../mod/mitem.php:167 -msgid "Submit and continue" -msgstr "Absenden und fortfahren" - -#: ../../mod/mitem.php:174 -msgid "Menu:" -msgstr "Menü:" - -#: ../../mod/mitem.php:177 -msgid "Link Target" -msgstr "Ziel des Links" - -#: ../../mod/mitem.php:180 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../mod/mitem.php:183 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../mod/mitem.php:184 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../mod/mitem.php:185 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../mod/mitem.php:186 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../mod/mitem.php:187 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../mod/mitem.php:188 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:189 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:206 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../mod/mitem.php:217 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../mod/mitem.php:219 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../mod/mitem.php:226 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - -#: ../../mod/mitem.php:232 -msgid "Link text" -msgstr "Link Text" - #: ../../mod/mood.php:131 msgid "Set your current mood and tell your friends" msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" @@ -8166,314 +8220,254 @@ msgid "" "removed from the network" msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../mod/connedit.php:262 +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Konnte nicht auf den Kontakteintrag zugreifen." + +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Gewähltes Profil nicht gefunden." + +#: ../../mod/connedit.php:219 +msgid "Connection updated." +msgstr "Verbindung aktualisiert." + +#: ../../mod/connedit.php:221 +msgid "Failed to update connection record." +msgstr "Konnte den Verbindungseintrag nicht aktualisieren." + +#: ../../mod/connedit.php:267 msgid "is now connected to" msgstr "ist jetzt verbunden mit" -#: ../../mod/connedit.php:375 +#: ../../mod/connedit.php:392 msgid "Could not access address book record." msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../mod/connedit.php:389 +#: ../../mod/connedit.php:406 msgid "Refresh failed - channel is currently unavailable." msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../mod/connedit.php:396 -msgid "Channel has been unblocked" -msgstr "Kanal nicht mehr blockiert" - -#: ../../mod/connedit.php:397 -msgid "Channel has been blocked" -msgstr "Kanal blockiert" - -#: ../../mod/connedit.php:401 ../../mod/connedit.php:413 -#: ../../mod/connedit.php:425 ../../mod/connedit.php:437 -#: ../../mod/connedit.php:453 +#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 +#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 +#: ../../mod/connedit.php:470 msgid "Unable to set address book parameters." msgstr "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../mod/connedit.php:408 -msgid "Channel has been unignored" -msgstr "Kanal wird nicht mehr ignoriert" - -#: ../../mod/connedit.php:409 -msgid "Channel has been ignored" -msgstr "Kanal wird ignoriert" - -#: ../../mod/connedit.php:420 -msgid "Channel has been unarchived" -msgstr "Kanal wurde aus dem Archiv zurück geholt" - -#: ../../mod/connedit.php:421 -msgid "Channel has been archived" -msgstr "Kanal wurde archiviert" - -#: ../../mod/connedit.php:432 -msgid "Channel has been unhidden" -msgstr "Kanal wird nicht mehr versteckt" - -#: ../../mod/connedit.php:433 -msgid "Channel has been hidden" -msgstr "Kanal wurde versteckt" - -#: ../../mod/connedit.php:448 -msgid "Channel has been approved" -msgstr "Kanal wurde zugelassen" - -#: ../../mod/connedit.php:449 -msgid "Channel has been unapproved" -msgstr "Zulassung des Kanals entfernt" - -#: ../../mod/connedit.php:477 +#: ../../mod/connedit.php:494 msgid "Connection has been removed." msgstr "Verbindung wurde gelöscht." -#: ../../mod/connedit.php:497 +#: ../../mod/connedit.php:513 #, php-format msgid "View %s's profile" msgstr "%ss Profil ansehen" -#: ../../mod/connedit.php:501 +#: ../../mod/connedit.php:517 msgid "Refresh Permissions" msgstr "Zugriffsrechte neu laden" -#: ../../mod/connedit.php:504 +#: ../../mod/connedit.php:520 msgid "Fetch updated permissions" msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../mod/connedit.php:508 +#: ../../mod/connedit.php:524 msgid "Recent Activity" msgstr "Kürzliche Aktivitäten" -#: ../../mod/connedit.php:511 +#: ../../mod/connedit.php:527 msgid "View recent posts and comments" msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../mod/connedit.php:520 +#: ../../mod/connedit.php:534 msgid "Block (or Unblock) all communications with this connection" msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" -#: ../../mod/connedit.php:524 ../../mod/connedit.php:721 +#: ../../mod/connedit.php:535 +msgid "This connection is blocked!" +msgstr "Die Verbindung ist geblockt!" + +#: ../../mod/connedit.php:539 msgid "Unignore" msgstr "Nicht ignorieren" -#: ../../mod/connedit.php:524 ../../mod/connedit.php:721 -#: ../../mod/notifications.php:51 +#: ../../mod/connedit.php:539 ../../mod/notifications.php:51 msgid "Ignore" msgstr "Ignorieren" -#: ../../mod/connedit.php:527 +#: ../../mod/connedit.php:542 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" -#: ../../mod/connedit.php:530 +#: ../../mod/connedit.php:543 +msgid "This connection is ignored!" +msgstr "Die Verbindung wird ignoriert!" + +#: ../../mod/connedit.php:547 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: ../../mod/connedit.php:530 +#: ../../mod/connedit.php:547 msgid "Archive" msgstr "Archivieren" -#: ../../mod/connedit.php:533 +#: ../../mod/connedit.php:550 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" -#: ../../mod/connedit.php:536 +#: ../../mod/connedit.php:551 +msgid "This connection is archived!" +msgstr "Die Verbindung ist archiviert." + +#: ../../mod/connedit.php:555 msgid "Unhide" msgstr "Wieder sichtbar machen" -#: ../../mod/connedit.php:536 +#: ../../mod/connedit.php:555 msgid "Hide" msgstr "Verstecken" -#: ../../mod/connedit.php:539 +#: ../../mod/connedit.php:558 msgid "Hide or Unhide this connection from your other connections" msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../mod/connedit.php:546 +#: ../../mod/connedit.php:559 +msgid "This connection is hidden!" +msgstr "Die Verbindung ist versteckt!" + +#: ../../mod/connedit.php:566 msgid "Delete this connection" msgstr "Verbindung löschen" -#: ../../mod/connedit.php:637 ../../mod/connedit.php:675 +#: ../../mod/connedit.php:647 msgid "Approve this connection" msgstr "Verbindung genehmigen" -#: ../../mod/connedit.php:637 +#: ../../mod/connedit.php:647 msgid "Accept connection to allow communication" msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../mod/connedit.php:653 -#, php-format -msgid "Connections: settings for %s" -msgstr "Verbindungseinstellungen für %s" +#: ../../mod/connedit.php:652 +msgid "Set Affinity" +msgstr "Beziehung festlegen" -#: ../../mod/connedit.php:654 -msgid "Apply these permissions automatically" -msgstr "Diese Berechtigungen automatisch anwenden" +#: ../../mod/connedit.php:655 +msgid "Set Profile" +msgstr "Profil festlegen" #: ../../mod/connedit.php:658 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verbindungen an." - -#: ../../mod/connedit.php:662 -msgid "Slide to adjust your degree of friendship" -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" +msgid "Set Affinity & Profile" +msgstr "Beziehung und Profile festlegen" -#: ../../mod/connedit.php:671 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert. Bitte sieh Dir die Zugriffsrechte auf dieser Seite an und ändere sie, wenn Du willst. Dieser Kontakt kann evtl. nicht mit Dir kommunizieren, bevor Du nicht auf dieser Seite auf „Senden“ geklickt hast – erst dieser Klick speichert die gewünschten Zugriffsrechte." - -#: ../../mod/connedit.php:674 -msgid "inherited" -msgstr "geerbt" +#: ../../mod/connedit.php:675 +msgid "Apply these permissions automatically" +msgstr "Diese Berechtigungen automatisch anwenden" #: ../../mod/connedit.php:677 -msgid "Connection has no individual permissions!" -msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" - -#: ../../mod/connedit.php:678 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Abhängig von Ihren Privatsphäreeinstellungen könnte das passen, eventuell sollten Sie aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen." +msgid "This connection's address is" +msgstr "Die Adresse des Kontakts lautet" #: ../../mod/connedit.php:680 -msgid "Profile Visibility" -msgstr "Sichtbarkeit des Profils" - -#: ../../mod/connedit.php:681 -#, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen verwendet." #: ../../mod/connedit.php:682 -msgid "Contact Information / Notes" -msgstr "Kontaktinformationen / Notizen" +msgid "Slide to adjust your degree of friendship" +msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../mod/connedit.php:683 -msgid "Edit contact notes" -msgstr "Kontaktnotizen bearbeiten" +#: ../../mod/connedit.php:684 +msgid "Slide to adjust your rating" +msgstr "Verschieben, um deine Bewertung festzulegen" -#: ../../mod/connedit.php:685 -msgid "Their Settings" -msgstr "Deren Einstellungen" +#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 +msgid "Optionally explain your rating" +msgstr "Optional kannst du deine Bewertung beschreiben" -#: ../../mod/connedit.php:686 -msgid "My Settings" -msgstr "Meine Einstellungen" +#: ../../mod/connedit.php:687 +msgid "Custom Filter" +msgstr "Benutzerdefinierter Filter" #: ../../mod/connedit.php:688 +msgid "Only import posts with this text" +msgstr "Importiere nur Beiträge mit diesem Text" + +#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert, und Du hast keine Voreinstellungen für die Zugriffsrechte von Verbindungen angelegt. Bitte sieh Dir die Einstellungen an, ändere sie bei Bedarf und klicke auf [Senden], um den Vorgang abzuschließen." +"words one per line or #tags or /patterns/, leave blank to import all posts" +msgstr "Einzelne Worte pro Zeile, #Tags oder /Muster/. Frei lassen, um alle Posts zu importieren." #: ../../mod/connedit.php:689 -msgid "Clear/Disable Automatic Permissions" -msgstr "Automatische Berechtigungen abschalten/entfernen" - -#: ../../mod/connedit.php:690 -msgid "Forum Members" -msgstr "Forum Mitglieder" +msgid "Do not import posts with this text" +msgstr "Importiere keine Einträge mit diesem Text" #: ../../mod/connedit.php:691 -msgid "Soapbox" -msgstr "Marktschreier" - -#: ../../mod/connedit.php:692 -msgid "Full Sharing (typical social network permissions)" -msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" - -#: ../../mod/connedit.php:693 -msgid "Cautious Sharing " -msgstr "Vorsichtiges Teilen" - -#: ../../mod/connedit.php:694 -msgid "Follow Only" -msgstr "Nur folgen" - -#: ../../mod/connedit.php:695 -msgid "Individual Permissions" -msgstr "Individuelle Zugriffsrechte" +msgid "This information is public!" +msgstr "Diese Information ist öffentlich!" #: ../../mod/connedit.php:696 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Einige Berechtigungen werden von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen." +msgid "Connection Pending Approval" +msgstr "Verbindung wartet auf Bestätigung" #: ../../mod/connedit.php:697 -msgid "Advanced Permissions" -msgstr "Zugriffsrechte für Fortgeschrittene" +msgid "Connection Request" +msgstr "Verbindungs Anfrage" #: ../../mod/connedit.php:698 -msgid "Simple Permissions (select one and submit)" -msgstr "Einfache Berechtigungseinstellungen (wählen Sie eine aus und klicken Sie auf Absenden)" - -#: ../../mod/connedit.php:702 #, php-format -msgid "Visit %s's profile - %s" -msgstr "%ss Profil besuchen - %s" +msgid "" +"(%s) would like to connect with you. Please approve this connection to allow" +" communication." +msgstr "(%s) möchte sich mit dir verbinden. Bitte genehmige die Verbindung um eine Kommunikation zu ermöglichen." -#: ../../mod/connedit.php:703 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freigeben" +#: ../../mod/connedit.php:700 +msgid "Approve Later" +msgstr "Bestätige später" -#: ../../mod/connedit.php:704 -msgid "Ignore contact" -msgstr "Kontakt ignorieren" +#: ../../mod/connedit.php:703 +msgid "inherited" +msgstr "geerbt" #: ../../mod/connedit.php:705 -msgid "Repair URL settings" -msgstr "URL-Einstellungen reparieren" +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../mod/connedit.php:706 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" +#: ../../mod/connedit.php:707 +msgid "Their Settings" +msgstr "Deren Einstellungen" #: ../../mod/connedit.php:708 -msgid "Delete contact" -msgstr "Kontakt löschen" - -#: ../../mod/connedit.php:712 -msgid "Last update:" -msgstr "Letzte Aktualisierung:" - -#: ../../mod/connedit.php:714 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" - -#: ../../mod/connedit.php:716 -msgid "Update now" -msgstr "Jetzt aktualisieren" +msgid "My Settings" +msgstr "Meine Einstellungen" -#: ../../mod/connedit.php:722 -msgid "Currently blocked" -msgstr "Derzeit blockiert" +#: ../../mod/connedit.php:710 +msgid "Individual Permissions" +msgstr "Individuelle Zugriffsrechte" -#: ../../mod/connedit.php:723 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" +#: ../../mod/connedit.php:711 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität, als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../mod/connedit.php:724 -msgid "Currently archived" -msgstr "Derzeit archiviert" +#: ../../mod/connedit.php:712 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität, als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../mod/connedit.php:725 -msgid "Currently pending" -msgstr "Derzeit anstehend" +#: ../../mod/connedit.php:713 +msgid "Last update:" +msgstr "Letzte Aktualisierung:" #: ../../mod/rmagic.php:40 msgid "" @@ -8583,7 +8577,7 @@ msgstr "Verwerfen" msgid "Please login." msgstr "Bitte melde dich an." -#: ../../mod/post.php:235 +#: ../../mod/post.php:236 msgid "" "Remote authentication blocked. You are logged into this site locally. Please" " logout and retry." @@ -8730,6 +8724,21 @@ msgstr "Lesezeichen meiner Kontakte" msgid "Insufficient permissions. Request redirected to profile page." msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." +#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert spezielles Vorgehen, die Bearbeitung wurde blockiert." + +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" + +#: ../../mod/pconfig.php:50 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlass diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." + #: ../../mod/suggest.php:35 msgid "" "No suggestions available. If this is a new site, please try again in 24 " @@ -8778,7 +8787,7 @@ msgid "Monospace" msgstr "Monospace (dicktengleich)" #: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "Theme-Einstellungen" @@ -8787,7 +8796,7 @@ msgid "Set scheme" msgstr "Schema festlegen" #: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set font-size for posts and comments" msgstr "Schriftgröße für Beiträge und Kommentare festlegen" @@ -8911,127 +8920,127 @@ msgstr "Rechter offset der Seitenleiste" msgid "Light (Red Matrix default)" msgstr "Hell (RedMatrix-Voreinstellung)" -#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:103 msgid "Select scheme" msgstr "Schema wählen" -#: ../../view/theme/redbasic/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "Schmale Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Navigation bar background color" msgstr "Hintergrundfarbe der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Navigation bar gradient top color" msgstr "Farbverlauf der Navigationsleiste: Farbe oben" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Navigation bar gradient bottom color" msgstr "Farbverlauf der Navigationsleiste: Farbe unten" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Navigation active button gradient top color" msgstr "Navigations-Button aktiv: Farbe für Farbverlauf oben" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Navigation active button gradient bottom color" msgstr "Navigations-Button aktiv: Farbe für Farbverlauf unten" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Navigation bar border color " msgstr "Farbe für den Rand der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Navigation bar icon color " msgstr "Farbe für die Icons der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar active icon color " msgstr "Farbe für aktive Icons der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:113 msgid "link color" msgstr "Farbe für Links" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Set font-color for banner" msgstr "Farbe der Schrift des Banners" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Set the background color" msgstr "Hintergrundfarbe festlegen" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Set the background image" msgstr "Hintergrundbild festlegen" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Set the background color of items" msgstr "Hintergrundfarbe für Beiträge festlegen" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Set the background color of comments" msgstr "Hintergrundfarbe für Kommentare festlegen" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Set the border color of comments" msgstr "Farbe des Randes von Kommentaren festlegen" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:120 msgid "Set the indent for comments" msgstr "Einzugsbreite für Kommentare festlegen" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set the basic color for item icons" msgstr "Grundfarbe für Beitragssymbole festlegen" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the hover color for item icons" msgstr "Farbe für Beitragssymbole unter dem Mauszeiger festlegen" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set font-size for the entire application" msgstr "Schriftgröße für die gesamte Anwendung festlegen" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Example: 14px" msgstr "Beispiel: 14px" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-color for posts and comments" msgstr "Schriftfarbe für Beiträge und Kommentare festlegen" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set radius of corners" msgstr "Eckenradius festlegen" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set shadow depth of photos" msgstr "Schattentiefe von Fotos festlegen" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set maximum width of content region in pixel" msgstr "Maximalbreite des Inhaltsbereichs in Pixel festlegen" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Leave empty for default width" msgstr "Leer lassen für Standardbreite" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Center page content" msgstr "Seiteninhalt zentrieren" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Mindestdeckkraft der Navigationsleiste festlegen - zum Verstecken" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set size of conversation author photo" msgstr "Größe der Avatare von Themenstartern festlegen" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set size of followup author photos" msgstr "Größe der Avatare von Kommentatoren festlegen" @@ -9062,24 +9071,24 @@ msgstr "Angaben speichern" msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:2178 +#: ../../boot.php:2177 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" -#: ../../boot.php:2313 +#: ../../boot.php:2312 msgid "Website SSL certificate is not valid. Please correct." msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." -#: ../../boot.php:2316 +#: ../../boot.php:2315 #, php-format msgid "[red] Website SSL error for %s" msgstr "[red] Website-SSL-Fehler für %s" -#: ../../boot.php:2353 +#: ../../boot.php:2352 msgid "Cron/Scheduled tasks not running." msgstr "Cron-Aufgaben laufen nicht." -#: ../../boot.php:2357 +#: ../../boot.php:2356 #, php-format msgid "[red] Cron tasks not running on %s" msgstr "[red] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de/strings.php b/view/de/strings.php index a66d19943..a4a92552a 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -7,103 +7,28 @@ function string_plural_select_de($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; $a->strings["Profile Photos"] = "Profilfotos"; -$a->strings["prev"] = "vorherige"; -$a->strings["first"] = "erste"; -$a->strings["last"] = "letzte"; -$a->strings["next"] = "nächste"; -$a->strings["older"] = "älter"; -$a->strings["newer"] = "neuer"; -$a->strings["No connections"] = "Keine Verbindungen"; -$a->strings["%d Connection"] = array( - 0 => "%d Verbindung", - 1 => "%d Verbindungen", -); -$a->strings["View Connections"] = "Verbindungen anzeigen"; -$a->strings["Search"] = "Suche"; -$a->strings["Save"] = "Speichern"; -$a->strings["poke"] = "anstupsen"; -$a->strings["poked"] = "stupste"; -$a->strings["ping"] = "anpingen"; -$a->strings["pinged"] = "pingte"; -$a->strings["prod"] = "knuffen"; -$a->strings["prodded"] = "knuffte"; -$a->strings["slap"] = "ohrfeigen"; -$a->strings["slapped"] = "ohrfeigte"; -$a->strings["finger"] = "befummeln"; -$a->strings["fingered"] = "befummelte"; -$a->strings["rebuff"] = "eine Abfuhr erteilen"; -$a->strings["rebuffed"] = "zurückgewiesen"; -$a->strings["happy"] = "glücklich"; -$a->strings["sad"] = "traurig"; -$a->strings["mellow"] = "sanft"; -$a->strings["tired"] = "müde"; -$a->strings["perky"] = "frech"; -$a->strings["angry"] = "sauer"; -$a->strings["stupified"] = "verblüfft"; -$a->strings["puzzled"] = "verwirrt"; -$a->strings["interested"] = "interessiert"; -$a->strings["bitter"] = "verbittert"; -$a->strings["cheerful"] = "fröhlich"; -$a->strings["alive"] = "lebendig"; -$a->strings["annoyed"] = "verärgert"; -$a->strings["anxious"] = "unruhig"; -$a->strings["cranky"] = "schrullig"; -$a->strings["disturbed"] = "verstört"; -$a->strings["frustrated"] = "frustriert"; -$a->strings["depressed"] = "deprimiert"; -$a->strings["motivated"] = "motiviert"; -$a->strings["relaxed"] = "entspannt"; -$a->strings["surprised"] = "überrascht"; -$a->strings["Monday"] = "Montag"; -$a->strings["Tuesday"] = "Dienstag"; -$a->strings["Wednesday"] = "Mittwoch"; -$a->strings["Thursday"] = "Donnerstag"; -$a->strings["Friday"] = "Freitag"; -$a->strings["Saturday"] = "Samstag"; -$a->strings["Sunday"] = "Sonntag"; -$a->strings["January"] = "Januar"; -$a->strings["February"] = "Februar"; -$a->strings["March"] = "März"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "August"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "Dezember"; -$a->strings["unknown.???"] = "unbekannt.???"; -$a->strings["bytes"] = "Bytes"; -$a->strings["remove category"] = "Kategorie entfernen"; -$a->strings["remove from file"] = "aus der Datei entfernen"; -$a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -$a->strings["Link to Source"] = "Link zur Quelle"; -$a->strings["default"] = "Standard"; -$a->strings["Page layout"] = "Seitengestaltung"; -$a->strings["You can create your own with the layouts tool"] = "Mit dem Layouts-Werkzeug kannst Du Deine eigenen Layouts erstellen"; -$a->strings["Page content type"] = "Art des Seiteninhalts"; -$a->strings["Select an alternate language"] = "Wähle eine alternative Sprache"; -$a->strings["photo"] = "Foto"; -$a->strings["event"] = "Termin"; -$a->strings["status"] = "Status"; -$a->strings["comment"] = "Kommentar"; -$a->strings["activity"] = "Aktivität"; -$a->strings["Design Tools"] = "Gestaltungswerkzeuge"; -$a->strings["Blocks"] = "Blöcke"; -$a->strings["Menus"] = "Menüs"; -$a->strings["Layouts"] = "Gestaltungen"; -$a->strings["Pages"] = "Seiten"; -$a->strings["Collection"] = "Ordner"; $a->strings["Edit"] = "Bearbeiten"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -$a->strings["Please choose"] = "Bitte auswählen"; -$a->strings["Agree"] = "Zustimmen"; -$a->strings["Disagree"] = "Ablehnen"; -$a->strings["Abstain"] = "Enthalten"; -$a->strings["\$projectname"] = "\$projectname"; +$a->strings["Frequently"] = "Häufig"; +$a->strings["Hourly"] = "Stündlich"; +$a->strings["Twice daily"] = "Zwei Mal am Tag"; +$a->strings["Daily"] = "Täglich"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-Mail"; +$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["created a new post"] = "Neuer Beitrag wurde erzeugt"; $a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +$a->strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden."; +$a->strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; +$a->strings["Import completed."] = "Import abgeschlossen."; $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."] = "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen."; $a->strings["Default privacy group for new contacts"] = "Standard-Sammlung für neue Kontakte"; $a->strings["All Channels"] = "Alle Kanäle"; @@ -153,6 +78,12 @@ $a->strings["seconds"] = "Sekunden"; $a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; $a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; $a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +$a->strings["Directory Options"] = "Verzeichnisoptionen"; +$a->strings["Safe Mode"] = "Sicherer Modus"; +$a->strings["No"] = "Nein"; +$a->strings["Yes"] = "Ja"; +$a->strings["Public Forums Only"] = "Nur öffentliche Foren"; +$a->strings["This Website Only"] = "Nur diese Website"; $a->strings["New Page"] = "Neue Seite"; $a->strings["View"] = "Ansicht"; $a->strings["Preview"] = "Vorschau"; @@ -163,20 +94,6 @@ $a->strings["Created"] = "Erstellt"; $a->strings["Edited"] = "Geändert"; $a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; $a->strings["Default"] = "Standard"; -$a->strings["Directory Options"] = "Verzeichnisoptionen"; -$a->strings["Alphabetic"] = "alphabetisch"; -$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; -$a->strings["Newest to Oldest"] = "Neueste zuerst"; -$a->strings["Oldest to Newest"] = "Älteste zuerst"; -$a->strings["Sort"] = "Sortieren"; -$a->strings["Safe Mode"] = "Sicherer Modus"; -$a->strings["Public Forums Only"] = "Nur öffentliche Foren"; -$a->strings["This Website Only"] = "Nur diese Website"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["Location:"] = "Ort:"; -$a->strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; $a->strings["Delete this item?"] = "Dieses Element löschen?"; $a->strings["Comment"] = "Kommentar"; $a->strings["[+] show all"] = "[+] Alle anzeigen"; @@ -198,7 +115,7 @@ $a->strings["Submit"] = "Bestätigen"; $a->strings["Please enter a link URL"] = "Bitte geben Sie eine Link-URL ein"; $a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Sind Sie sicher, dass Sie diese Seite verlassen möchten?"; $a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = " "; +$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; $a->strings["ago"] = "her"; $a->strings["from now"] = "von jetzt"; $a->strings["less than a minute"] = "weniger als eine Minute"; @@ -214,6 +131,94 @@ $a->strings["about a year"] = "ungefähr ein Jahr"; $a->strings["%d years"] = "%d Jahre"; $a->strings[" "] = " "; $a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["prev"] = "vorherige"; +$a->strings["first"] = "erste"; +$a->strings["last"] = "letzte"; +$a->strings["next"] = "nächste"; +$a->strings["older"] = "älter"; +$a->strings["newer"] = "neuer"; +$a->strings["No connections"] = "Keine Verbindungen"; +$a->strings["%d Connection"] = array( + 0 => "%d Verbindung", + 1 => "%d Verbindungen", +); +$a->strings["View Connections"] = "Verbindungen anzeigen"; +$a->strings["Search"] = "Suche"; +$a->strings["Save"] = "Speichern"; +$a->strings["poke"] = "anstupsen"; +$a->strings["poked"] = "stupste"; +$a->strings["ping"] = "anpingen"; +$a->strings["pinged"] = "pingte"; +$a->strings["prod"] = "knuffen"; +$a->strings["prodded"] = "knuffte"; +$a->strings["slap"] = "ohrfeigen"; +$a->strings["slapped"] = "ohrfeigte"; +$a->strings["finger"] = "befummeln"; +$a->strings["fingered"] = "befummelte"; +$a->strings["rebuff"] = "eine Abfuhr erteilen"; +$a->strings["rebuffed"] = "zurückgewiesen"; +$a->strings["happy"] = "glücklich"; +$a->strings["sad"] = "traurig"; +$a->strings["mellow"] = "sanft"; +$a->strings["tired"] = "müde"; +$a->strings["perky"] = "frech"; +$a->strings["angry"] = "sauer"; +$a->strings["stupified"] = "verblüfft"; +$a->strings["puzzled"] = "verwirrt"; +$a->strings["interested"] = "interessiert"; +$a->strings["bitter"] = "verbittert"; +$a->strings["cheerful"] = "fröhlich"; +$a->strings["alive"] = "lebendig"; +$a->strings["annoyed"] = "verärgert"; +$a->strings["anxious"] = "unruhig"; +$a->strings["cranky"] = "schrullig"; +$a->strings["disturbed"] = "verstört"; +$a->strings["frustrated"] = "frustriert"; +$a->strings["depressed"] = "deprimiert"; +$a->strings["motivated"] = "motiviert"; +$a->strings["relaxed"] = "entspannt"; +$a->strings["surprised"] = "überrascht"; +$a->strings["Monday"] = "Montag"; +$a->strings["Tuesday"] = "Dienstag"; +$a->strings["Wednesday"] = "Mittwoch"; +$a->strings["Thursday"] = "Donnerstag"; +$a->strings["Friday"] = "Freitag"; +$a->strings["Saturday"] = "Samstag"; +$a->strings["Sunday"] = "Sonntag"; +$a->strings["January"] = "Januar"; +$a->strings["February"] = "Februar"; +$a->strings["March"] = "März"; +$a->strings["April"] = "April"; +$a->strings["May"] = "Mai"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "Dezember"; +$a->strings["unknown.???"] = "unbekannt.???"; +$a->strings["bytes"] = "Bytes"; +$a->strings["remove category"] = "Kategorie entfernen"; +$a->strings["remove from file"] = "aus der Datei entfernen"; +$a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; +$a->strings["Link to Source"] = "Link zur Quelle"; +$a->strings["default"] = "Standard"; +$a->strings["Page layout"] = "Seitengestaltung"; +$a->strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Gestaltungen erstellen"; +$a->strings["Page content type"] = "Art des Seiteninhalts"; +$a->strings["Select an alternate language"] = "Wähle eine alternative Sprache"; +$a->strings["photo"] = "Foto"; +$a->strings["event"] = "Termin"; +$a->strings["status"] = "Status"; +$a->strings["comment"] = "Kommentar"; +$a->strings["activity"] = "Aktivität"; +$a->strings["Design Tools"] = "Gestaltungswerkzeuge"; +$a->strings["Blocks"] = "Blöcke"; +$a->strings["Menus"] = "Menüs"; +$a->strings["Layouts"] = "Gestaltungen"; +$a->strings["Pages"] = "Seiten"; +$a->strings["Collection"] = "Ordner"; $a->strings["parent"] = "Übergeordnetes Verzeichnis"; $a->strings["Principal"] = "Prinzipal"; $a->strings["Addressbook"] = "Adressbuch"; @@ -237,6 +242,11 @@ $a->strings["Create new folder"] = "Neuen Ordner anlegen"; $a->strings["Upload file"] = "Datei hochladen"; $a->strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; $a->strings["view full size"] = "In Vollbildansicht anschauen"; +$a->strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung"; +$a->strings["\$projectname"] = "\$projectname"; +$a->strings["Thank You,"] = "Danke."; +$a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["No Subject"] = "Kein Betreff"; $a->strings["General Features"] = "Allgemeine Funktionen"; $a->strings["Content Expiration"] = "Verfall von Inhalten"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."; @@ -253,7 +263,7 @@ $a->strings["Enables a tool to store notes and reminders"] = "Aktiviert ein Werk $a->strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; $a->strings["Change channels directly from within the navigation dropdown menu"] = "Wechsle direkt über das Navigationsmenü zu anderen Kanälen"; $a->strings["Photo Location"] = "Aufnahmeort"; -$a->strings["If location data is available on uploaded photos, link this to a map."] = "Aufnahmeort auf einer Karte verlinken, falls verfügbar."; +$a->strings["If location data is available on uploaded photos, link this to a map."] = "Aufnahmeort des Fotos auf einer Karte verlinken, falls verfügbar."; $a->strings["Expert Mode"] = "Expertenmodus"; $a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren"; $a->strings["Premium Channel"] = "Premium-Kanal"; @@ -262,13 +272,13 @@ $a->strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; $a->strings["Use Markdown"] = "Markdown benutzen"; $a->strings["Allow use of \"Markdown\" to format posts"] = "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen"; $a->strings["Large Photos"] = "Große Fotos"; -$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt."; +$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist dies deaktiviert, werden kleine Vorschaubilder (320px) angezeigt."; $a->strings["Channel Sources"] = "Kanal-Quellen"; $a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"; $a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)"; $a->strings["Enable voting tools"] = "Umfragewerkzeuge aktivieren"; -$a->strings["Provide a class of post which others can vote on"] = "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)"; +$a->strings["Provide a class of post which others can vote on"] = "Aktiviere die Umfragewerkzeuge, damit andere Benutzer über Deine Beiträge abstimmen können. Muss im Beitrag selbst noch aktiviert werden."; $a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; $a->strings["Search by Date"] = "Suche nach Datum"; $a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; @@ -282,6 +292,8 @@ $a->strings["Network New Tab"] = "Netzwerkreiter Neu"; $a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"; $a->strings["Affinity Tool"] = "Beziehungswerkzeug"; $a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung"; +$a->strings["Connection Filtering"] = "Filter für Sammlungen"; +$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtere eingehende Beiträge von Kontakten auf der Basis von Schlüsselwörtern und dem Inhalt."; $a->strings["Suggest Channels"] = "Kanäle vorschlagen"; $a->strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; $a->strings["Post/Comment Tools"] = "Beitrag-/Kommentarwerkzeuge"; @@ -341,9 +353,11 @@ $a->strings["photo/image"] = "Foto/Bild"; $a->strings["Rate Me"] = "Bewerte mich"; $a->strings["View Ratings"] = "Bewertungen ansehen"; $a->strings["Public Hubs"] = "Öffentliche Hubs"; -$a->strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung"; -$a->strings["Thank You,"] = "Danke."; -$a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["Location:"] = "Ort:"; +$a->strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; $a->strings["%s "] = "%s "; $a->strings["[Red:Notify] New mail received at %s"] = "[Red:Benachrichtigung] Neue Mail auf %s empfangen"; $a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; @@ -380,26 +394,15 @@ $a->strings["Name:"] = "Name:"; $a->strings["Photo:"] = "Foto:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; $a->strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; -$a->strings["Frequently"] = "Häufig"; -$a->strings["Hourly"] = "Stündlich"; -$a->strings["Twice daily"] = "Zwei Mal am Tag"; -$a->strings["Daily"] = "Täglich"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-Mail"; -$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["No recipient provided."] = "Kein Empfänger angegeben"; -$a->strings["[no subject]"] = "[no subject]"; +$a->strings["[no subject]"] = "[kein Betreff]"; $a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; $a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; +$a->strings["Please choose"] = "Bitte auswählen"; +$a->strings["Agree"] = "Zustimmen"; +$a->strings["Disagree"] = "Ablehnen"; +$a->strings["Abstain"] = "Enthalten"; $a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; $a->strings["Channel location missing."] = "Adresse des Kanals fehlt."; $a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; @@ -437,7 +440,7 @@ $a->strings["Add Tag"] = "Tag hinzufügen"; $a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; $a->strings["like"] = "mag"; $a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; -$a->strings["dislike"] = "verurteile"; +$a->strings["dislike"] = "lehne ab"; $a->strings["Share This"] = "Teilen"; $a->strings["share"] = "Teilen"; $a->strings["%d comment"] = array( @@ -543,7 +546,7 @@ $a->strings["has"] = "hat"; $a->strings["want"] = "will"; $a->strings["wants"] = "will"; $a->strings["likes"] = "gefällt"; -$a->strings["dislikes"] = "missfällt"; +$a->strings["dislikes"] = "mag nicht"; $a->strings[" and "] = "und"; $a->strings["public profile"] = "öffentliches Profil"; $a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; @@ -833,7 +836,7 @@ $a->strings["Currently Male"] = "Momentan männlich"; $a->strings["Currently Female"] = "Momentan weiblich"; $a->strings["Mostly Male"] = "Größtenteils männlich"; $a->strings["Mostly Female"] = "Größtenteils weiblich"; -$a->strings["Transgender"] = "Transsexuell"; +$a->strings["Transgender"] = "Transgender"; $a->strings["Intersex"] = "Zwischengeschlechtlich"; $a->strings["Transsexual"] = "Transsexuell"; $a->strings["Hermaphrodite"] = "Zwitter"; @@ -900,6 +903,7 @@ $a->strings["Purchase"] = "Kaufen"; $a->strings["Image/photo"] = "Bild/Foto"; $a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; $a->strings["Install %s element: "] = "Element %s installieren: "; +$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, allerdings fehlen dir die nötigen Rechte es auf dieser Seite zu installieren."; $a->strings["webpage"] = "Webseite"; $a->strings["layout"] = "Gestaltung"; $a->strings["block"] = "Block"; @@ -930,13 +934,30 @@ $a->strings["Make Default"] = "Zum Standard machen"; $a->strings["%d new messages"] = "%d neue Nachrichten"; $a->strings["%d new introductions"] = "%d neue Vorstellungen"; $a->strings["Delegated Channels"] = "Delegierte Kanäle"; -$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -$a->strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; +$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; +$a->strings["%d rating"] = array( + 0 => "%d Bewertung", + 1 => "%d Bewertungen", +); +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Status: "] = "Status:"; +$a->strings["Homepage: "] = "Webseite:"; +$a->strings["Description:"] = "Beschreibung:"; +$a->strings["Public Forum:"] = "Öffentliches Forum:"; +$a->strings["Keywords: "] = "Schlüsselwörter:"; +$a->strings["Don't suggest"] = "Nicht vorschlagen."; +$a->strings["Common connections:"] = "Gemeinsame Verbindungen:"; +$a->strings["Global Directory"] = "Globales Verzeichnis"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Finding:"] = "Ergebnisse:"; +$a->strings["next page"] = "nächste Seite"; +$a->strings["previous page"] = "vorherige Seite"; +$a->strings["Sort options"] = "Sortieroptionen"; +$a->strings["Alphabetic"] = "alphabetisch"; +$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; +$a->strings["Newest to Oldest"] = "Neueste zuerst"; +$a->strings["Oldest to Newest"] = "Älteste zuerst"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; $a->strings["Xchan Lookup"] = "Xchan-Suche"; $a->strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; $a->strings["Not found."] = "Nicht gefunden."; @@ -944,8 +965,6 @@ $a->strings["Authorize application connection"] = "Zugriff für die Anwendung au $a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; $a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nein"; $a->strings["Page Title"] = "Seitentitel"; $a->strings["Channel added."] = "Kanal hinzugefügt."; $a->strings["Tag removed"] = "Schlagwort entfernt"; @@ -1013,6 +1032,8 @@ $a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\ $a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; $a->strings["Action completed."] = "Aktion durchgeführt."; $a->strings["Thank you."] = "Vielen Dank."; +$a->strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; +$a->strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; $a->strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; $a->strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; $a->strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; @@ -1020,10 +1041,12 @@ $a->strings["Event not found."] = "Termin nicht gefunden."; $a->strings["l, F j"] = "l, j. F"; $a->strings["Edit event"] = "Termin bearbeiten"; $a->strings["Delete event"] = "Termin löschen"; +$a->strings["calendar"] = "Kalender"; $a->strings["Create New Event"] = "Neuen Termin erstellen"; $a->strings["Previous"] = "Voriges"; $a->strings["Next"] = "Nächste"; $a->strings["Export"] = "Exportieren"; +$a->strings["Import"] = "Import"; $a->strings["Event removed"] = "Termin gelöscht"; $a->strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; $a->strings["Event details"] = "Termin-Details"; @@ -1034,7 +1057,6 @@ $a->strings["Finish date/time is not known or not relevant"] = "Ende Datum/Zeit $a->strings["Event Finishes:"] = "Termin endet:"; $a->strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; $a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; -$a->strings["Description:"] = "Beschreibung:"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Den Termin teilen"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; @@ -1075,8 +1097,13 @@ $a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefu $a->strings["\$projectname issues"] = "\$projectname-Bugtracker"; $a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; $a->strings["Site Administrators"] = "Administratoren"; -$a->strings["Help:"] = "Hilfe:"; -$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +$a->strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; $a->strings["No such group"] = "Sammlung nicht gefunden"; $a->strings["No such channel"] = "Kanal nicht gefunden"; $a->strings["Search Results For:"] = "Suchergebnisse für:"; @@ -1088,10 +1115,6 @@ $a->strings["No channel."] = "Kein Kanal."; $a->strings["Common connections"] = "Gemeinsame Verbindungen"; $a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; $a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; -$a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; -$a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; -$a->strings["Connection updated."] = "Verbindung aktualisiert."; -$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; $a->strings["Blocked"] = "Blockiert"; $a->strings["Ignored"] = "Ignoriert"; $a->strings["Hidden"] = "Versteckt"; @@ -1113,13 +1136,17 @@ $a->strings["Search your connections"] = "Verbindungen durchsuchen"; $a->strings["Finding: "] = "Ergebnisse:"; $a->strings["Block Name"] = "Datenblockname"; $a->strings["Block Title"] = "Titel des Blocks"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; +$a->strings["Item not found"] = "Element nicht gefunden"; +$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +$a->strings["Delete item?"] = "Eintrag löschen?"; +$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; $a->strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "\$Projectname-Gäste: Benutzername: {Ihre E-Mail-Adresse}, Passwort: +++"; $a->strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; $a->strings["Album not found."] = "Album nicht gefunden."; $a->strings["Delete Album"] = "Album löschen"; $a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; $a->strings["No photos selected"] = "Keine Fotos ausgewählt"; $a->strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; $a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; @@ -1177,14 +1204,14 @@ $a->strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaub $a->strings["Nothing to import."] = "Nichts zu importieren."; $a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; $a->strings["Imported file is empty."] = "Die importierte Datei ist leer."; +$a->strings["The data provided is not compatible with this project."] = "Die bereitgestellten Daten sind mit diesem Projekt nicht kompatibel."; +$a->strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; $a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; -$a->strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; $a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; $a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -$a->strings["Import completed."] = "Import abgeschlossen."; $a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; $a->strings["Import Channel"] = "Kanal importieren"; -$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."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich."; +$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."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen RadMatrix-Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; $a->strings["File to Upload"] = "Hochzuladende Datei:"; $a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; $a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; @@ -1192,15 +1219,12 @@ $a->strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; $a->strings["Your old login password"] = "Dein altes Passwort"; $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."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; $a->strings["Make this hub my primary location"] = "Dieser Red-Server ist mein primärer Server."; -$a->strings["Import existing posts if possible"] = "Existierende Beiträge importieren, falls möglich"; -$a->strings["Item not found"] = "Element nicht gefunden"; -$a->strings["Edit Layout"] = "Gestaltung bearbeiten"; +$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; +$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; $a->strings["Delete layout?"] = "Gestaltung löschen?"; -$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; $a->strings["Layout Description (Optional)"] = "Gestaltungsbeschreibung (Optional)"; $a->strings["Layout Name"] = "Gestaltungsname"; +$a->strings["Edit Layout"] = "Gestaltung bearbeiten"; $a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; $a->strings["Room not found"] = "Chatraum nicht gefunden"; $a->strings["Leave Room"] = "Raum verlassen"; @@ -1211,6 +1235,36 @@ $a->strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; $a->strings["New Chatroom"] = "Neuer Chatraum"; $a->strings["Chatroom Name"] = "Name des Chatraums"; $a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +$a->strings["Menu not found."] = "Menü nicht gefunden"; +$a->strings["Unable to create element."] = "Element konnte nicht erstellt werden."; +$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; +$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; +$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; +$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; +$a->strings["Link Name"] = "Name des Links"; +$a->strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; +$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; +$a->strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; +$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; +$a->strings["Order in list"] = "Reihenfolge in der Liste"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; +$a->strings["Submit and finish"] = "Absenden und fertigstellen"; +$a->strings["Submit and continue"] = "Absenden und fortfahren"; +$a->strings["Menu:"] = "Menü:"; +$a->strings["Link Target"] = "Ziel des Links"; +$a->strings["Edit menu"] = "Menü bearbeiten"; +$a->strings["Edit element"] = "Bestandteil bearbeiten"; +$a->strings["Drop element"] = "Bestandteil löschen"; +$a->strings["New element"] = "Neues Bestandteil"; +$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; +$a->strings["Add menu element"] = "Menüelement hinzufügen"; +$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; +$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; +$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; +$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; +$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; +$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; +$a->strings["Link text"] = "Link Text"; $a->strings["Delete webpage?"] = "Webseite löschen?"; $a->strings["Page link title"] = "Seitentitel-Link"; $a->strings["Edit Webpage"] = "Webseite bearbeiten"; @@ -1232,11 +1286,11 @@ $a->strings["Enter your email address and submit to have your password reset. Th $a->strings["Email Address"] = "E-Mail Adresse"; $a->strings["Reset"] = "Zurücksetzen"; $a->strings["Website:"] = "Webseite:"; -$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; +$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Entfernter Kanal [%s] (auf diesem Server noch unbekannt)"; $a->strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; $a->strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; -$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -$a->strings["Delete item?"] = "Eintrag löschen?"; +$a->strings["Delete block?"] = "Block löschen?"; +$a->strings["Edit Block"] = "Block bearbeiten"; $a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; $a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; $a->strings["Please join us on Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix"; @@ -1252,7 +1306,7 @@ $a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, $a->strings["Your message:"] = "Deine Nachricht:"; $a->strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; $a->strings["You will need to supply this invitation code: "] = "Gib folgenden Einladungs-Code ein:"; -$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf irgendeinem \$Projectname-Server (sie sind alle miteinander verbunden)"; +$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Server (sie sind alle miteinander verbunden)"; $a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; $a->strings["or visit "] = "oder besuche"; $a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; @@ -1293,7 +1347,6 @@ $a->strings["Delete this menu"] = "Lösche dieses Menü"; $a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; $a->strings["Edit this menu"] = "Dieses Menü bearbeiten"; $a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; -$a->strings["Menu not found."] = "Menü nicht gefunden"; $a->strings["Edit Menu"] = "Menü bearbeiten"; $a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; $a->strings["Menu name"] = "Menü Name"; @@ -1408,7 +1461,7 @@ $a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \" $a->strings["System check"] = "Systemprüfung"; $a->strings["Check again"] = "Bitte nochmal prüfen"; $a->strings["Database connection"] = "Datenbank Verbindung"; -$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; +$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; $a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktieren Sie Ihren Hosting-Provider oder Administrator, falls Sie Fragen zu diesen Einstellungen haben."; $a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; $a->strings["Database Server Name"] = "Datenbank-Servername"; @@ -1421,7 +1474,7 @@ $a->strings["Database Name"] = "Datenbank-Name"; $a->strings["Database Type"] = "Datenbanktyp"; $a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; $a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; -$a->strings["Website URL"] = "Server-URL"; +$a->strings["Website URL"] = "URL der Webseite"; $a->strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; $a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; $a->strings["Site settings"] = "Seiteneinstellungen"; @@ -1484,22 +1537,7 @@ $a->strings["

What next

"] = "

Was als Nächstes

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; $a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; $a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -$a->strings["%d rating"] = array( - 0 => "%d Bewertung", - 1 => "%d Bewertungen", -); -$a->strings["Gender: "] = "Geschlecht:"; -$a->strings["Status: "] = "Status:"; -$a->strings["Homepage: "] = "Webseite:"; -$a->strings["Hometown: "] = "Wohnort:"; -$a->strings["About: "] = "Über:"; -$a->strings["Public Forum:"] = "Öffentliches Forum:"; -$a->strings["Keywords: "] = "Schlüsselwörter:"; -$a->strings["Common connections: %s"] = "Gemeinsame Verbindungen: %s"; -$a->strings["Finding:"] = "Ergebnisse:"; -$a->strings["next page"] = "nächste Seite"; -$a->strings["previous page"] = "vorherige Seite"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; $a->strings["Export Channel"] = "Kanal exportieren"; $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."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; $a->strings["Export Content"] = "Kanal und Inhalte exportieren"; @@ -1621,17 +1659,18 @@ $a->strings["Destination URL"] = "Ziel-URL"; $a->strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; $a->strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; $a->strings["Last known contact"] = "Letzter bekannter Kontakt"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s Nutzer blockiert/freigegeben", - 1 => "%s Nutzer blockiert/freigegeben", +$a->strings["%s account blocked/unblocked"] = array( + 0 => "%s Konto blockiert/freigegeben", + 1 => "%s Konten blockiert/freigegeben", ); -$a->strings["%s user deleted"] = array( - 0 => "%s Nutzer gelöscht", - 1 => "%s Nutzer gelöscht", +$a->strings["%s account deleted"] = array( + 0 => "%s Konto gelöscht", + 1 => "%s Konten gelöscht", ); $a->strings["Account not found"] = "Konto nicht gefunden"; -$a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert"; -$a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben"; +$a->strings["Account '%s' deleted"] = "Konte '%s' gelöscht"; +$a->strings["Account '%s' blocked"] = "Konto '%s' blockiert"; +$a->strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; $a->strings["Users"] = "Benutzer"; $a->strings["select all"] = "Alle auswählen"; $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; @@ -1645,8 +1684,8 @@ $a->strings["Register date"] = "Registrierungs-Datum"; $a->strings["Last login"] = "Letzte Anmeldung"; $a->strings["Expires"] = "Verfällt"; $a->strings["Service Class"] = "Service-Klasse"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; +$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Ausgewählte Konten werden gelöscht.\\n\\nAlles was diese Konten auf dieser Seite veröffentlicht haben wird permanent gelöscht werden!\\n\\nBist du dir sicher?"; +$a->strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; $a->strings["%s channel censored/uncensored"] = array( 0 => "%s Kanal gesperrt/freigegeben", 1 => "%s Kanäle gesperrt/freigegeben", @@ -1701,8 +1740,6 @@ $a->strings["Field definition not found"] = "Feld-Definition nicht gefunden"; $a->strings["Edit Profile Field"] = "Profilfeld bearbeiten"; $a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; $a->strings["Post successful."] = "Veröffentlichung erfolgreich."; -$a->strings["Edit Block"] = "Block bearbeiten"; -$a->strings["Delete block?"] = "Block löschen?"; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; $a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; @@ -1729,6 +1766,9 @@ $a->strings["Please enter your password for verification:"] = "Bitte gib zur Bes $a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; $a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; $a->strings["Remove Account"] = "Konto entfernen"; +$a->strings["Help:"] = "Hilfe:"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["\$Projectname Documentation"] = "\$Projectname Dokkumentation"; $a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; $a->strings["Remote privacy information not available."] = "Privatsphäreeinstellungen anderer Nutzer sind nicht verfügbar."; $a->strings["Visible to:"] = "Sichtbar für:"; @@ -1832,7 +1872,6 @@ $a->strings["0 or blank prevents expiration"] = "0 oder kein Inhalt verhindern d $a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; $a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; $a->strings["Default Post Permissions"] = "Standardmäßige Beitragsberechtigungen"; -$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; $a->strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; $a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; $a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; @@ -1894,34 +1933,6 @@ $a->strings["Conversation removed."] = "Unterhaltung gelöscht."; $a->strings["No messages."] = "Keine Nachrichten."; $a->strings["Delete conversation"] = "Unterhaltung löschen"; $a->strings["D, d M Y - g:i A"] = "D, d. M Y - G:i"; -$a->strings["Unable to create element."] = "Element konnte nicht erstellt werden."; -$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; -$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; -$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; -$a->strings["Link Name"] = "Name des Links"; -$a->strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; -$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; -$a->strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; -$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; -$a->strings["Order in list"] = "Reihenfolge in der Liste"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; -$a->strings["Submit and finish"] = "Absenden und fertigstellen"; -$a->strings["Submit and continue"] = "Absenden und fortfahren"; -$a->strings["Menu:"] = "Menü:"; -$a->strings["Link Target"] = "Ziel des Links"; -$a->strings["Edit menu"] = "Menü bearbeiten"; -$a->strings["Edit element"] = "Bestandteil bearbeiten"; -$a->strings["Drop element"] = "Bestandteil löschen"; -$a->strings["New element"] = "Neues Bestandteil"; -$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; -$a->strings["Add menu element"] = "Menüelement hinzufügen"; -$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; -$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; -$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; -$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; -$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; -$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; -$a->strings["Link text"] = "Link Text"; $a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; $a->strings["Total votes"] = "Stimmen insgesamt"; $a->strings["Average Rating"] = "Durchschnittliche Bewertung"; @@ -1930,20 +1941,14 @@ $a->strings["Remove This Channel"] = "Diesen Kanal löschen"; $a->strings["This channel will be completely removed from the network. "] = "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht."; $a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; $a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; +$a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; +$a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; +$a->strings["Connection updated."] = "Verbindung aktualisiert."; +$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; $a->strings["is now connected to"] = "ist jetzt verbunden mit"; $a->strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; $a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; -$a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert"; -$a->strings["Channel has been blocked"] = "Kanal blockiert"; $a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; -$a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert"; -$a->strings["Channel has been ignored"] = "Kanal wird ignoriert"; -$a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt"; -$a->strings["Channel has been archived"] = "Kanal wurde archiviert"; -$a->strings["Channel has been unhidden"] = "Kanal wird nicht mehr versteckt"; -$a->strings["Channel has been hidden"] = "Kanal wurde versteckt"; -$a->strings["Channel has been approved"] = "Kanal wurde zugelassen"; -$a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt"; $a->strings["Connection has been removed."] = "Verbindung wurde gelöscht."; $a->strings["View %s's profile"] = "%ss Profil ansehen"; $a->strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; @@ -1951,56 +1956,48 @@ $a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfrage $a->strings["Recent Activity"] = "Kürzliche Aktivitäten"; $a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; $a->strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; +$a->strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; $a->strings["Unignore"] = "Nicht ignorieren"; $a->strings["Ignore"] = "Ignorieren"; $a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; +$a->strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; $a->strings["Unarchive"] = "Aus Archiv zurückholen"; $a->strings["Archive"] = "Archivieren"; $a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; +$a->strings["This connection is archived!"] = "Die Verbindung ist archiviert."; $a->strings["Unhide"] = "Wieder sichtbar machen"; $a->strings["Hide"] = "Verstecken"; $a->strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; +$a->strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; $a->strings["Delete this connection"] = "Verbindung löschen"; $a->strings["Approve this connection"] = "Verbindung genehmigen"; $a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; -$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s"; +$a->strings["Set Affinity"] = "Beziehung festlegen"; +$a->strings["Set Profile"] = "Profil festlegen"; +$a->strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; $a->strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; -$a->strings["Apply the permissions indicated on this page to all new connections."] = "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verbindungen an."; +$a->strings["This connection's address is"] = "Die Adresse des Kontakts lautet"; +$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen verwendet."; $a->strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; -$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert. Bitte sieh Dir die Zugriffsrechte auf dieser Seite an und ändere sie, wenn Du willst. Dieser Kontakt kann evtl. nicht mit Dir kommunizieren, bevor Du nicht auf dieser Seite auf „Senden“ geklickt hast – erst dieser Klick speichert die gewünschten Zugriffsrechte."; +$a->strings["Slide to adjust your rating"] = "Verschieben, um deine Bewertung festzulegen"; +$a->strings["Optionally explain your rating"] = "Optional kannst du deine Bewertung beschreiben"; +$a->strings["Custom Filter"] = "Benutzerdefinierter Filter"; +$a->strings["Only import posts with this text"] = "Importiere nur Beiträge mit diesem Text"; +$a->strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "Einzelne Worte pro Zeile, #Tags oder /Muster/. Frei lassen, um alle Posts zu importieren."; +$a->strings["Do not import posts with this text"] = "Importiere keine Einträge mit diesem Text"; +$a->strings["This information is public!"] = "Diese Information ist öffentlich!"; +$a->strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; +$a->strings["Connection Request"] = "Verbindungs Anfrage"; +$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) möchte sich mit dir verbinden. Bitte genehmige die Verbindung um eine Kommunikation zu ermöglichen."; +$a->strings["Approve Later"] = "Bestätige später"; $a->strings["inherited"] = "geerbt"; -$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffsrechte!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von Ihren Privatsphäreeinstellungen könnte das passen, eventuell sollten Sie aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen."; -$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; -$a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen"; -$a->strings["Edit contact notes"] = "Kontaktnotizen bearbeiten"; $a->strings["Their Settings"] = "Deren Einstellungen"; $a->strings["My Settings"] = "Meine Einstellungen"; -$a->strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert, und Du hast keine Voreinstellungen für die Zugriffsrechte von Verbindungen angelegt. Bitte sieh Dir die Einstellungen an, ändere sie bei Bedarf und klicke auf [Senden], um den Vorgang abzuschließen."; -$a->strings["Clear/Disable Automatic Permissions"] = "Automatische Berechtigungen abschalten/entfernen"; -$a->strings["Forum Members"] = "Forum Mitglieder"; -$a->strings["Soapbox"] = "Marktschreier"; -$a->strings["Full Sharing (typical social network permissions)"] = "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)"; -$a->strings["Cautious Sharing "] = "Vorsichtiges Teilen"; -$a->strings["Follow Only"] = "Nur folgen"; $a->strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; -$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Einige Berechtigungen werden von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen."; -$a->strings["Advanced Permissions"] = "Zugriffsrechte für Fortgeschrittene"; -$a->strings["Simple Permissions (select one and submit)"] = "Einfache Berechtigungseinstellungen (wählen Sie eine aus und klicken Sie auf Absenden)"; -$a->strings["Visit %s's profile - %s"] = "%ss Profil besuchen - %s"; -$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freigeben"; -$a->strings["Ignore contact"] = "Kontakt ignorieren"; -$a->strings["Repair URL settings"] = "URL-Einstellungen reparieren"; -$a->strings["View conversations"] = "Unterhaltungen anzeigen"; -$a->strings["Delete contact"] = "Kontakt löschen"; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität, als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität, als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; $a->strings["Last update:"] = "Letzte Aktualisierung:"; -$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; -$a->strings["Update now"] = "Jetzt aktualisieren"; -$a->strings["Currently blocked"] = "Derzeit blockiert"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Derzeit archiviert"; -$a->strings["Currently pending"] = "Derzeit anstehend"; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; $a->strings["The error message was:"] = "Die Fehlermeldung war:"; $a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; @@ -2061,6 +2058,9 @@ $a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; $a->strings["My Bookmarks"] = "Meine Lesezeichen"; $a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; $a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; +$a->strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert spezielles Vorgehen, die Bearbeitung wurde blockiert."; +$a->strings["Configuration Editor"] = "Konfigurationseditor"; +$a->strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlass diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; $a->strings["Poll"] = "Umfrage"; $a->strings["View Results"] = "Ergebnisse ansehen"; -- cgit v1.2.3 From fd290882fde0fe22471259771377ebabdb1b4492 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 30 Sep 2015 12:57:02 -0700 Subject: undo self-deliver check --- include/zot.php | 11 ++++++----- version.inc | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/include/zot.php b/include/zot.php index 635c36774..488c2772f 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1584,11 +1584,12 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ $channel = $r[0]; $DR->addto_recipient($channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . get_app()->get_hostname() . '>'); - if($d['hash'] === $sender['hash']) { - $DR->update('self delivery ignored'); - $result[] = $DR->get(); - continue; - } +// breaks comments? +// if($d['hash'] === $sender['hash']) { +// $DR->update('self delivery ignored'); +// $result[] = $DR->get(); +// continue; +// } // allow public postings to the sys channel regardless of permissions, but not diff --git a/version.inc b/version.inc index 80d66264c..d3462488c 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-09-28.1169 +2015-09-30.1171 -- cgit v1.2.3 From 4b7c052ed8fa3075ce4b5e9585574f2e712cb426 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 30 Sep 2015 12:59:13 -0700 Subject: undo self deliver check --- include/zot.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/include/zot.php b/include/zot.php index 7707f34fc..a6d7fce06 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1587,11 +1587,12 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ $channel = $r[0]; $DR->addto_recipient($channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . get_app()->get_hostname() . '>'); - if($d['hash'] === $sender['hash']) { - $DR->update('self delivery ignored'); - $result[] = $DR->get(); - continue; - } +// breaks comments? +// if($d['hash'] === $sender['hash']) { +// $DR->update('self delivery ignored'); +// $result[] = $DR->get(); +// continue; +// } // allow public postings to the sys channel regardless of permissions, but not // for comments travelling upstream. Wait and catch them on the way down. -- cgit v1.2.3 From 5265c190d4011a7362774f86ad82a05f4f87f2b8 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 30 Sep 2015 16:27:24 -0700 Subject: document the issue with cloned delivery to self vs normal delivery to self --- include/zot.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/include/zot.php b/include/zot.php index 488c2772f..fe51d1a7c 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1566,6 +1566,8 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ } } +logger('sender: ' . print_r($sender,true)); + foreach($deliveries as $d) { $local_public = $public; @@ -1584,8 +1586,17 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ $channel = $r[0]; $DR->addto_recipient($channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . get_app()->get_hostname() . '>'); -// breaks comments? -// if($d['hash'] === $sender['hash']) { + /** + * @FIXME: Somehow we need to block normal message delivery from our clones, as the delivered + * message doesn't have ACL information in it as the cloned copy does. That copy + * will normally arrive first via sync delivery, but this isn't guaranteed. + * There's a chance the current delivery could take place before the cloned copy arrives + * hence the item could have the wrong ACL and *could* be used in subsequent deliveries or + * access checks. So far all attempts at identifying this situation precisely + * have caused issues with delivery of relayed comments. + */ + +// if(($d['hash'] === $sender['hash']) && ($sender['url'] !== z_root()) && (! $relay)) { // $DR->update('self delivery ignored'); // $result[] = $DR->get(); // continue; -- cgit v1.2.3 From 9bdb7bef5dadb3cfb8e3ff661f68b5cc7a70c5cd Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 30 Sep 2015 19:27:53 -0700 Subject: add delivery reports to mail (not backported to redmatrix) --- include/zot.php | 22 +++++++++++++++------- mod/dreport.php | 47 +++++++++++++++++++++++++++++++++++++++++++++++ mod/mail.php | 2 ++ view/tpl/mail_conv.tpl | 1 + 4 files changed, 65 insertions(+), 7 deletions(-) diff --git a/include/zot.php b/include/zot.php index e9132b7a5..2f04cca1b 100644 --- a/include/zot.php +++ b/include/zot.php @@ -11,6 +11,7 @@ require_once('include/crypto.php'); require_once('include/items.php'); require_once('include/hubloc.php'); +require_once('include/DReport.php'); /** @@ -1556,7 +1557,6 @@ function allowed_public_recips($msg) { function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $request = false) { $result = array(); - require_once('include/DReport.php'); $result['site'] = z_root(); @@ -1569,7 +1569,6 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ } } -logger('sender: ' . print_r($sender,true)); foreach($deliveries as $d) { $local_public = $public; @@ -2043,20 +2042,26 @@ function process_mail_delivery($sender, $arr, $deliveries) { } foreach($deliveries as $d) { + + $DR = new DReport(z_root(),$sender['hash'],$d['hash'],$arr['mid']); + $r = q("select * from channel where channel_hash = '%s' limit 1", dbesc($d['hash']) ); if(! $r) { - $result[] = array($d['hash'],'not found'); + $DR->update('recipient not found'); + $result[] = $DR->get(); continue; } $channel = $r[0]; + $DR->addto_recipient($channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . get_app()->get_hostname() . '>'); if(! perm_is_allowed($channel['channel_id'],$sender['hash'],'post_mail')) { logger("permission denied for mail delivery {$channel['channel_id']}"); - $result[] = array($d['hash'],'permission denied',$channel['channel_name'],$arr['mid']); + $DR->update('permission denied'); + $result[] = $DR->get(); continue; } @@ -2070,11 +2075,13 @@ function process_mail_delivery($sender, $arr, $deliveries) { intval($r[0]['id']), intval($channel['channel_id']) ); - $result[] = array($d['hash'],'mail recalled',$channel['channel_name'],$arr['mid']); + $DR->update('mail recalled'); + $result[] = $DR->get(); logger('mail_recalled'); } else { - $result[] = array($d['hash'],'duplicate mail received',$channel['channel_name'],$arr['mid']); + $DR->update('duplicate mail received'); + $result[] = $DR->get(); logger('duplicate mail received'); } continue; @@ -2083,7 +2090,8 @@ function process_mail_delivery($sender, $arr, $deliveries) { $arr['account_id'] = $channel['channel_account_id']; $arr['channel_id'] = $channel['channel_id']; $item_id = mail_store($arr); - $result[] = array($d['hash'],'mail delivered',$channel['channel_name'],$arr['mid']); + $DR->update('mail delivered'); + $result[] = $DR->get(); } } diff --git a/mod/dreport.php b/mod/dreport.php index 31a6274c8..c320bf0e6 100644 --- a/mod/dreport.php +++ b/mod/dreport.php @@ -7,14 +7,44 @@ function dreport_content(&$a) { return; } + $table = 'item'; + $channel = $a->get_channel(); $mid = ((argc() > 1) ? argv(1) : ''); + if($mid === 'mail') { + $table = 'mail'; + $mid = ((argc() > 2) ? argv(2) : ''); + } + + if(! $mid) { notice( t('Invalid message') . EOL); return; } + + switch($table) { + case 'item': + $i = q("select id from item where mid = '%s' and author_xchan = '%s' ", + dbesc($mid), + dbesc($channel['channel_hash']) + ); + break; + case 'mail': + $i = q("select id from mail where mid = '%s' and from_xchan = '%s'", + dbesc($mid), + dbesc($channel['channel_hash']) + ); + break; + default: + break; + } + + if(! $i) { + notice( t('Permission denied') . EOL); + return; + } $r = q("select * from dreport where dreport_xchan = '%s' and dreport_mid = '%s'", dbesc($channel['channel_hash']), @@ -33,6 +63,11 @@ function dreport_content(&$a) { for($x = 0; $x < count($r); $x++ ) { $r[$x]['name'] = escape_tags(substr($r[$x]['dreport_recip'],strpos($r[$x]['dreport_recip'],' '))); + // This has two purposes: 1. make the delivery report strings translateable, and + // 2. assign an ordering to item delivery results so we can group them and provide + // a readable report with more interesting events listed toward the top and lesser + // interesting items towards the bottom + switch($r[$x]['dreport_result']) { case 'channel sync processed': $r[$x]['gravity'] = 0; @@ -61,6 +96,18 @@ function dreport_content(&$a) { $r[$x]['dreport_result'] = t('permission denied'); $r[$x]['gravity'] = 6; break; + case 'recipient not found': + $r[$x]['dreport_result'] = t('recipient not found'); + break; + case 'mail recalled': + $r[$x]['dreport_result'] = t('mail recalled'); + break; + case 'duplicate mail received': + $r[$x]['dreport_result'] = t('duplicate mail received'); + break; + case 'mail delivered': + $r[$x]['dreport_result'] = t('mail delivered'); + break; default: $r[$x]['gravity'] = 1; break; diff --git a/mod/mail.php b/mod/mail.php index e4a5ebafd..525127a71 100644 --- a/mod/mail.php +++ b/mod/mail.php @@ -324,6 +324,7 @@ function mail_content(&$a) { $mails[] = array( 'mailbox' => $mailbox, 'id' => $message['id'], + 'mid' => $message['mid'], 'from_name' => $message['from']['xchan_name'], 'from_url' => chanlink_hash($message['from_xchan']), 'from_photo' => $message['from']['xchan_photo_s'], @@ -333,6 +334,7 @@ function mail_content(&$a) { 'subject' => $message['title'], 'body' => smilies(bbcode($message['body']) . $s), 'delete' => t('Delete message'), + 'dreport' => t('Delivery report'), 'recall' => t('Recall message'), 'can_recall' => (($channel['channel_hash'] == $message['from_xchan']) ? true : false), 'is_recalled' => (intval($message['mail_recalled']) ? t('Message has been recalled.') : ''), diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index 2e64de7bc..09333ae11 100755 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -9,6 +9,7 @@
{{$mail.body}}
{{if $mail.can_recall}} + {{/if}} -- cgit v1.2.3 From 526bc36b40abb5911f74228fa4445e11c68d4f9f Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 30 Sep 2015 19:31:25 -0700 Subject: update the opensearch template --- view/tpl/opensearch.tpl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/view/tpl/opensearch.tpl b/view/tpl/opensearch.tpl index 8885c12bc..f247e3401 100755 --- a/view/tpl/opensearch.tpl +++ b/view/tpl/opensearch.tpl @@ -1,10 +1,10 @@ Hubzilla@{{$nodename}} - Search in The Hubzilla@{{$nodename}} - http://github.com/friendica/red/ - {{$baseurl}}/images/rm-16.png - {{$baseurl}}/images/rm-64.png + Search in Hubzilla@{{$nodename}} + http://github.com/redmatrix/hubzilla/ + {{$baseurl}}/images/hz-16.png + {{$baseurl}}/images/hz-64.png Date: Wed, 30 Sep 2015 21:38:21 -0700 Subject: issue #63 - missing table fields in db query --- include/zot.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/zot.php b/include/zot.php index 2f04cca1b..942490551 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1960,8 +1960,7 @@ function delete_imported_item($sender, $item, $uid, $relay) { $item_found = false; $post_id = 0; - - $r = q("select id, item_deleted from item where ( author_xchan = '%s' or owner_xchan = '%s' or source_xchan = '%s' ) + $r = q("select id, author_xchan, owner_xchan, source_xchan, item_deleted from item where ( author_xchan = '%s' or owner_xchan = '%s' or source_xchan = '%s' ) and mid = '%s' and uid = %d limit 1", dbesc($sender['hash']), dbesc($sender['hash']), @@ -1969,6 +1968,7 @@ function delete_imported_item($sender, $item, $uid, $relay) { dbesc($item['mid']), intval($uid) ); + if ($r) { if ($r[0]['author_xchan'] === $sender['hash'] || $r[0]['owner_xchan'] === $sender['hash'] || $r[0]['source_xchan'] === $sender['hash']) $ownership_valid = true; -- cgit v1.2.3 From 1df1c15e48821f1339579e119826c78df97289c6 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 30 Sep 2015 21:59:33 -0700 Subject: issue #61 - provide un-useable icons as placeholders for location setting options on deleted hublocs --- view/tpl/locmanage.tpl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/view/tpl/locmanage.tpl b/view/tpl/locmanage.tpl index e0232547f..0620e2dcb 100644 --- a/view/tpl/locmanage.tpl +++ b/view/tpl/locmanage.tpl @@ -15,11 +15,15 @@ function drophub(id) { {{if $hub.deleted}}{{/if}} {{$hub.hubloc_url}} ({{$hub.hubloc_addr}}){{if $hub.deleted}}{{/if}} - +{{if ! $hub.deleted}} + {{if $hub.primary}}{{else}}{{/if}} {{if ! $hub.deleted}}{{/if}} +{{else}} + +{{/if}} {{/foreach}} -- cgit v1.2.3 From e7131bc8f8cbb264c0416dd1664721f50023ce73 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 30 Sep 2015 22:10:26 -0700 Subject: this is an even better fix for issue #61 --- view/tpl/locmanage.tpl | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/view/tpl/locmanage.tpl b/view/tpl/locmanage.tpl index 0620e2dcb..4ace457ed 100644 --- a/view/tpl/locmanage.tpl +++ b/view/tpl/locmanage.tpl @@ -12,19 +12,15 @@ function drophub(id) { {{foreach $hubs as $hub}} +{{if ! $hub.deleted }} - -{{if ! $hub.deleted}} +{{$hub.hubloc_url}} ({{$hub.hubloc_addr}}) - -{{else}} - -{{/if}} + +{{/if}} {{/foreach}}
{{$loc}}{{$mkprm}}{{$drop}}
-{{if $hub.deleted}}{{/if}} -{{$hub.hubloc_url}} ({{$hub.hubloc_addr}}){{if $hub.deleted}}{{/if}} {{if $hub.primary}}{{else}}{{/if}} {{if ! $hub.deleted}}{{/if}}
-- cgit v1.2.3 From a2a5580e6899caa0eea05e3e45f52ecb59fb853c Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Thu, 1 Oct 2015 17:46:31 +0200 Subject: Updated Norwegian string for Hubzilla --- view/nb-no/hmessages.po | 13492 +++++++++++++++++++++++----------------------- 1 file changed, 6889 insertions(+), 6603 deletions(-) diff --git a/view/nb-no/hmessages.po b/view/nb-no/hmessages.po index 152120b15..c71820ed7 100644 --- a/view/nb-no/hmessages.po +++ b/view/nb-no/hmessages.po @@ -3,3002 +3,3025 @@ # This file is distributed under the same license as the Red package. # # Translators: -# Haakon Meland Eriksen , 2013-2015 +# Haakon Meland Eriksen , 2015 msgid "" msgstr "" -"Project-Id-Version: Hubzilla\n" +"Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-20 00:03-0700\n" -"PO-Revision-Date: 2015-03-25 13:13+0000\n" +"POT-Creation-Date: 2015-09-26 22:48-0700\n" +"PO-Revision-Date: 2015-09-30 20:54+0000\n" "Last-Translator: Haakon Meland Eriksen \n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/red-matrix/language/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/Friendica/red-matrix/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:141 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'" +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." +msgstr "Ingen brukernavn ble funnet i importfilen." -#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -#: ../../mod/photos.php:91 ../../mod/photos.php:625 -msgid "Profile Photos" -msgstr "Profilbilder" +#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." -#: ../../include/security.php:349 -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 "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn." +#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:480 +msgid "Import completed." +msgstr "Import ferdig." -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "laget et nytt innlegg" +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:265 +msgid "parent" +msgstr "opp et nivå" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "kommenterte på %s sitt innlegg" +#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2497 +msgid "Collection" +msgstr "Samling" -#: ../../include/group.php:26 -msgid "" -"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." -msgstr "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn." +#: ../../include/RedDAV/RedBrowser.php:134 +msgid "Principal" +msgstr "Viktigste" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standard personverngruppe for nye kontakter" +#: ../../include/RedDAV/RedBrowser.php:137 +msgid "Addressbook" +msgstr "Adressebok" -#: ../../include/group.php:254 ../../mod/admin.php:821 -msgid "All Channels" -msgstr "Alle kanaler" +#: ../../include/RedDAV/RedBrowser.php:140 +msgid "Calendar" +msgstr "Kalender" -#: ../../include/group.php:276 -msgid "edit" -msgstr "endre" +#: ../../include/RedDAV/RedBrowser.php:143 +msgid "Schedule Inbox" +msgstr "Tidsplan innboks" -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Samlinger" +#: ../../include/RedDAV/RedBrowser.php:146 +msgid "Schedule Outbox" +msgstr "Tidsplan utboks" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Endre samling" +#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1021 +#: ../../include/apps.php:355 ../../include/apps.php:410 +#: ../../mod/photos.php:720 ../../mod/photos.php:1159 +msgid "Unknown" +msgstr "Ukjent" -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Lag en ny samling" +#: ../../include/RedDAV/RedBrowser.php:227 +#, php-format +msgid "%1$s used" +msgstr "%1$s brukt" -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanaler som ikke er i noen samling" +#: ../../include/RedDAV/RedBrowser.php:232 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s brukt av %2$s (%3$s%)" -#: ../../include/group.php:303 ../../include/widgets.php:275 -msgid "add" -msgstr "legg til" +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/conversation.php:1611 +#: ../../include/apps.php:135 ../../include/nav.php:93 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Filer" -#: ../../include/bbcode.php:115 ../../include/bbcode.php:694 -#: ../../include/bbcode.php:697 ../../include/bbcode.php:702 -#: ../../include/bbcode.php:705 ../../include/bbcode.php:708 -#: ../../include/bbcode.php:711 ../../include/bbcode.php:716 -#: ../../include/bbcode.php:719 ../../include/bbcode.php:724 -#: ../../include/bbcode.php:727 ../../include/bbcode.php:730 -#: ../../include/bbcode.php:733 -msgid "Image/photo" -msgstr "Bilde/fotografi" +#: ../../include/RedDAV/RedBrowser.php:253 +msgid "Total" +msgstr "Totalt" -#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 -msgid "Encrypted content" -msgstr "Kryptert innhold" +#: ../../include/RedDAV/RedBrowser.php:255 +msgid "Shared" +msgstr "Delt" -#: ../../include/bbcode.php:168 -msgid "Install design element: " -msgstr "Installer designelement:" +#: ../../include/RedDAV/RedBrowser.php:256 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/layouts.php:175 +#: ../../mod/menu.php:114 ../../mod/new_channel.php:121 +#: ../../mod/webpages.php:180 ../../mod/blocks.php:152 +msgid "Create" +msgstr "Lag" -#: ../../include/bbcode.php:174 -msgid "QR code" -msgstr "QR-kode" +#: ../../include/RedDAV/RedBrowser.php:257 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:745 +#: ../../mod/photos.php:1278 ../../mod/profile_photo.php:450 +msgid "Upload" +msgstr "Last opp" -#: ../../include/bbcode.php:223 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev følgende %2$s %3$s" +#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:948 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 +#: ../../mod/sharedwithme.php:95 +msgid "Name" +msgstr "Navn" -#: ../../include/bbcode.php:225 -msgid "post" -msgstr "innlegg" +#: ../../include/RedDAV/RedBrowser.php:262 +msgid "Type" +msgstr "Type" -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" -msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 +msgid "Size" +msgstr "Størrelse" -#: ../../include/bbcode.php:662 -msgid "$1 spoiler" -msgstr "$1 avsløring" +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 +msgid "Last Modified" +msgstr "Sist endret" -#: ../../include/bbcode.php:682 -msgid "$1 wrote:" -msgstr "$1 skrev:" +#: ../../include/RedDAV/RedBrowser.php:266 ../../include/menu.php:108 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/apps.php:254 ../../include/ItemObject.php:100 +#: ../../mod/layouts.php:183 ../../mod/editpost.php:113 +#: ../../mod/editblock.php:135 ../../mod/menu.php:108 +#: ../../mod/webpages.php:181 ../../mod/blocks.php:153 ../../mod/thing.php:257 +#: ../../mod/settings.php:645 ../../mod/connections.php:235 +#: ../../mod/connections.php:248 ../../mod/connections.php:267 +#: ../../mod/editlayout.php:134 ../../mod/editwebpage.php:176 +msgid "Edit" +msgstr "Endre" -#: ../../include/identity.php:31 ../../mod/item.php:1078 -msgid "Unable to obtain identity information from database" -msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/conversation.php:662 +#: ../../include/apps.php:255 ../../include/ItemObject.php:120 +#: ../../mod/connedit.php:547 ../../mod/editblock.php:181 +#: ../../mod/admin.php:783 ../../mod/admin.php:942 ../../mod/photos.php:1090 +#: ../../mod/webpages.php:183 ../../mod/blocks.php:155 ../../mod/thing.php:258 +#: ../../mod/settings.php:646 ../../mod/editlayout.php:179 +#: ../../mod/editwebpage.php:223 ../../mod/group.php:173 +msgid "Delete" +msgstr "Slett" -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Mangler navn" +#: ../../include/RedDAV/RedBrowser.php:302 +msgid "Create new folder" +msgstr "Lag ny mappe" -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Navnet er for langt" +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Upload file" +msgstr "Last opp fil" -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Ingen kontoidentifikator" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan se min normale strøm og innlegg" -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Kallenavn er påkrevd." +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan se min standard kanalprofil" -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reservert kallenavn. Vennligst velg et annet." +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan se mine forbindelser" -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet." +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan se mine filer og bilder" -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Klarer ikke å hente den lagede identiteten" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan se mine websider" -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standardprofil" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan sende meg deres kanalstrøm og innlegg" -#: ../../include/identity.php:387 ../../include/identity.php:388 -#: ../../include/identity.php:395 ../../include/widgets.php:430 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:339 -#: ../../mod/settings.php:343 ../../mod/settings.php:344 -#: ../../mod/settings.php:347 ../../mod/settings.php:358 -#: ../../mod/connedit.php:567 -msgid "Friends" -msgstr "Venner" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan lage innlegg på min kanalside (\"vegg\")" -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Forespurt kanal er ikke tilgjengelig." +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan kommentere på eller like mine innlegg" -#: ../../include/identity.php:691 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/blocks.php:29 -#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/editlayout.php:28 -#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:53 -#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "Forespurt profil er ikke tilgjengelig." +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan sende meg private meldinger" -#: ../../include/identity.php:842 ../../include/widgets.php:136 -#: ../../include/widgets.php:175 ../../include/conversation.php:940 -#: ../../include/Contact.php:107 ../../mod/match.php:62 -#: ../../mod/directory.php:291 ../../mod/suggest.php:51 -msgid "Connect" -msgstr "Koble" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan like/ikke like forskjellige greier" -#: ../../include/identity.php:856 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Endre profilbilde" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profiler og andre ting enn innlegg/kommentarer" -#: ../../include/identity.php:863 -msgid "Profiles" -msgstr "Profiler" +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan videresende til alle mine kanalkontakter via @navn i innlegg" -#: ../../include/identity.php:863 -msgid "Manage/edit profiles" -msgstr "Håndtere/endre profiler" +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avansert - nyttig for å lage forumkanaler for grupper" -#: ../../include/identity.php:864 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Lag ny profil" +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" -#: ../../include/identity.php:867 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Endre profil" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan skrive til mitt lager for filer og bilder" -#: ../../include/identity.php:880 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profilbilde" +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan endre mine websider" -#: ../../include/identity.php:883 -msgid "visible to everybody" -msgstr "synlig for alle" +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler" -#: ../../include/identity.php:884 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Endre synlighet" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Litt avansert - svært nyttig i åpne fellesskap" -#: ../../include/identity.php:896 ../../include/bb2diaspora.php:450 -#: ../../include/event.php:40 ../../mod/events.php:645 -#: ../../mod/directory.php:223 -msgid "Location:" -msgstr "Plassering:" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan administrere mine kanalressurser" -#: ../../include/identity.php:900 ../../include/identity.php:1142 -msgid "Gender:" -msgstr "Kjønn:" +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør" -#: ../../include/identity.php:901 ../../include/identity.php:1186 -msgid "Status:" -msgstr "Status:" +#: ../../include/permissions.php:867 +msgid "Social Networking" +msgstr "Sosialt nettverk" -#: ../../include/identity.php:902 ../../include/identity.php:1197 -msgid "Homepage:" -msgstr "Hjemmeside:" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" +msgstr "Ganske offentlig" -#: ../../include/identity.php:903 -msgid "Online Now" -msgstr "Online nå" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" +msgstr "Begrenset" -#: ../../include/identity.php:986 ../../include/identity.php:1066 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "g A l F d" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" +msgstr "Privat" -#: ../../include/identity.php:987 ../../include/identity.php:1067 -msgid "F d" -msgstr "F d" +#: ../../include/permissions.php:868 +msgid "Community Forum" +msgstr "Forum for fellesskap" -#: ../../include/identity.php:1032 ../../include/identity.php:1107 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[idag]" +#: ../../include/permissions.php:869 +msgid "Feed Republish" +msgstr "Republisering av strømmet innhold" -#: ../../include/identity.php:1044 -msgid "Birthday Reminders" -msgstr "Fødselsdagspåminnnelser" +#: ../../include/permissions.php:870 +msgid "Special Purpose" +msgstr "Spesiell bruk" -#: ../../include/identity.php:1045 -msgid "Birthdays this week:" -msgstr "Fødselsdager denne uken:" +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" +msgstr "Kjendis/Talerstol" -#: ../../include/identity.php:1100 -msgid "[No description]" -msgstr "[Ingen beskrivelse]" +#: ../../include/permissions.php:870 +msgid "Group Repository" +msgstr "Gruppelager" -#: ../../include/identity.php:1118 -msgid "Event Reminders" -msgstr "Hendelsespåminnelser" +#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "Annen" -#: ../../include/identity.php:1119 -msgid "Events this week:" -msgstr "Hendelser denne uken:" +#: ../../include/permissions.php:871 +msgid "Custom/Expert Mode" +msgstr "Tilpasset/Ekspertmodus" -#: ../../include/identity.php:1132 ../../include/identity.php:1249 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Mangler romnavn" -#: ../../include/identity.php:1140 ../../mod/settings.php:1045 -msgid "Full Name:" -msgstr "Fullt navn:" +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Duplikat romnavn" -#: ../../include/identity.php:1147 -msgid "Like this channel" -msgstr "Lik denne kanalen" +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Ugyldig rom-spesifisering" -#: ../../include/identity.php:1158 ../../include/conversation.php:1692 -#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:391 -#: ../../mod/photos.php:1007 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Liker" -msgstr[1] "Liker" +#: ../../include/chat.php:122 +msgid "Room not found." +msgstr "Rommet ble ikke funnet." -#: ../../include/identity.php:1171 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../include/chat.php:133 ../../include/photos.php:26 +#: ../../include/attach.php:137 ../../include/attach.php:185 +#: ../../include/attach.php:248 ../../include/attach.php:262 +#: ../../include/attach.php:269 ../../include/attach.php:334 +#: ../../include/attach.php:348 ../../include/attach.php:355 +#: ../../include/attach.php:433 ../../include/attach.php:840 +#: ../../include/attach.php:911 ../../include/attach.php:1064 +#: ../../include/items.php:4342 ../../mod/achievements.php:30 +#: ../../mod/fsuggest.php:78 ../../mod/authtest.php:13 +#: ../../mod/bookmarks.php:48 ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/id.php:71 ../../mod/like.php:177 ../../mod/common.php:35 +#: ../../mod/mitem.php:111 ../../mod/connedit.php:348 ../../mod/mood.php:112 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 +#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 +#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 +#: ../../mod/poke.php:133 ../../mod/network.php:12 ../../mod/chat.php:91 +#: ../../mod/chat.php:96 ../../mod/message.php:16 ../../mod/channel.php:100 +#: ../../mod/channel.php:215 ../../mod/channel.php:255 +#: ../../mod/editpost.php:13 ../../mod/editblock.php:65 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:992 ../../mod/appman.php:66 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/menu.php:74 +#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 +#: ../../mod/pdledit.php:21 ../../mod/photos.php:70 ../../mod/rate.php:110 +#: ../../mod/events.php:256 ../../mod/profile_photo.php:338 +#: ../../mod/profile_photo.php:351 ../../mod/mail.php:114 +#: ../../mod/webpages.php:69 ../../mod/register.php:72 ../../mod/blocks.php:69 +#: ../../mod/blocks.php:76 ../../mod/service_limits.php:7 +#: ../../mod/sources.php:66 ../../mod/regmod.php:17 ../../mod/thing.php:271 +#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/viewsrc.php:14 +#: ../../mod/settings.php:565 ../../mod/manage.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/connections.php:29 +#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 +#: ../../mod/group.php:9 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/locs.php:82 +#: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 +#: ../../mod/suggest.php:26 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../index.php:178 ../../index.php:361 +msgid "Permission denied." +msgstr "Tillatelse avslått." -#: ../../include/identity.php:1172 -msgid "j F" -msgstr "j F" +#: ../../include/chat.php:143 +msgid "Room is full" +msgstr "Rommet er fullt" -#: ../../include/identity.php:1179 -msgid "Birthday:" -msgstr "Fødselsdag:" +#: ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Forskjellig" -#: ../../include/identity.php:1183 -msgid "Age:" -msgstr "Alder:" +#: ../../include/datetime.php:132 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD eller MM-DD" -#: ../../include/identity.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "for %1$d %2$s" +#: ../../include/datetime.php:235 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 ../../mod/events.php:689 +msgid "Required" +msgstr "Påkrevd" -#: ../../include/identity.php:1195 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Seksuell preferanse:" +#: ../../include/datetime.php:262 ../../boot.php:2306 +msgid "never" +msgstr "aldri" -#: ../../include/identity.php:1199 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Hjemby:" +#: ../../include/datetime.php:268 +msgid "less than a second ago" +msgstr "for mindre enn ett sekund siden" -#: ../../include/identity.php:1201 -msgid "Tags:" -msgstr "Merkelapper:" +#: ../../include/datetime.php:271 +msgid "year" +msgstr "år" -#: ../../include/identity.php:1203 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Politiske synspunkter:" +#: ../../include/datetime.php:271 +msgid "years" +msgstr "år" -#: ../../include/identity.php:1205 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/datetime.php:272 +msgid "month" +msgstr "måned" -#: ../../include/identity.php:1207 -msgid "About:" -msgstr "Om:" +#: ../../include/datetime.php:272 +msgid "months" +msgstr "måneder" -#: ../../include/identity.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobbyer/interesser:" +#: ../../include/datetime.php:273 +msgid "week" +msgstr "uke" -#: ../../include/identity.php:1211 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Liker:" +#: ../../include/datetime.php:273 +msgid "weeks" +msgstr "uker" -#: ../../include/identity.php:1213 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Misliker:" +#: ../../include/datetime.php:274 +msgid "day" +msgstr "dag" -#: ../../include/identity.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformasjon og sosiale nettverk:" +#: ../../include/datetime.php:274 +msgid "days" +msgstr "dager" -#: ../../include/identity.php:1217 -msgid "My other channels:" -msgstr "Mine andre kanaler:" +#: ../../include/datetime.php:275 +msgid "hour" +msgstr "time" -#: ../../include/identity.php:1219 -msgid "Musical interests:" -msgstr "Musikkinteresse:" +#: ../../include/datetime.php:275 +msgid "hours" +msgstr "timer" -#: ../../include/identity.php:1221 -msgid "Books, literature:" -msgstr "Bøker, litteratur:" +#: ../../include/datetime.php:276 +msgid "minute" +msgstr "minutt" -#: ../../include/identity.php:1223 -msgid "Television:" -msgstr "TV:" +#: ../../include/datetime.php:276 +msgid "minutes" +msgstr "minutter" -#: ../../include/identity.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underholdning:" +#: ../../include/datetime.php:277 +msgid "second" +msgstr "sekund" -#: ../../include/identity.php:1227 -msgid "Love/Romance:" -msgstr "Kjærlighet/romantikk:" +#: ../../include/datetime.php:277 +msgid "seconds" +msgstr "sekunder" -#: ../../include/identity.php:1229 -msgid "Work/employment:" -msgstr "Arbeid/sysselsetting:" +#: ../../include/datetime.php:285 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s siden" -#: ../../include/identity.php:1231 -msgid "School/education:" -msgstr "Skole/utdannelse:" +#: ../../include/datetime.php:519 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$s sin fødselsdag" -#: ../../include/identity.php:1251 -msgid "Like this thing" -msgstr "Lik denne tingen" +#: ../../include/datetime.php:520 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gratulerer med dagen, %1$s !" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Ny side" +#: ../../include/features.php:38 +msgid "General Features" +msgstr "Generelle funksjoner" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:42 -#: ../../mod/settings.php:644 ../../mod/blocks.php:132 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/thing.php:233 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 -#: ../../mod/editpost.php:113 ../../mod/menu.php:78 ../../mod/webpages.php:162 -#: ../../mod/editblock.php:143 ../../mod/layouts.php:167 -msgid "Edit" -msgstr "Endre" +#: ../../include/features.php:40 +msgid "Content Expiration" +msgstr "Innholdet utløper" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Vis" +#: ../../include/features.php:40 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden" -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1152 -#: ../../include/ItemObject.php:677 ../../mod/events.php:651 -#: ../../mod/webpages.php:166 ../../mod/photos.php:970 -msgid "Preview" -msgstr "Forhåndsvisning" +#: ../../include/features.php:41 +msgid "Multiple Profiles" +msgstr "Flere profiler" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Handlinger" +#: ../../include/features.php:41 +msgid "Ability to create multiple profiles" +msgstr "Mulig å lage flere profiler" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Sidelenke" +#: ../../include/features.php:42 +msgid "Advanced Profiles" +msgstr "Avanserte profiler" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Tittel" +#: ../../include/features.php:42 +msgid "Additional profile sections and selections" +msgstr "Ytterlige seksjoner og utvalg til profilen" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Laget" +#: ../../include/features.php:43 +msgid "Profile Import/Export" +msgstr "Profil-import/-eksport" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Endret" +#: ../../include/features.php:43 +msgid "Save and load profile details across sites/channels" +msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorier" +#: ../../include/features.php:44 +msgid "Web Pages" +msgstr "Web-sider" -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apper" +#: ../../include/features.php:44 +msgid "Provide managed web pages on your channel" +msgstr "Tilby kontrollerte web-sider på din kanal" -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" +#: ../../include/features.php:45 +msgid "Private Notes" +msgstr "Private merknader" -#: ../../include/widgets.php:94 ../../include/conversation.php:1498 -msgid "Personal" -msgstr "Personlig" +#: ../../include/features.php:45 +msgid "Enables a tool to store notes and reminders" +msgstr "Skrur på et verktøy for lagre merknader og påminnelser" -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Lag personlig app" +#: ../../include/features.php:46 +msgid "Navigation Channel Select" +msgstr "Navigasjon kanalvalg" -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Endre personlig app" +#: ../../include/features.php:46 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Endre kanaler direkte fra navigasjonsmenyen" -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorer/Skjul" +#: ../../include/features.php:47 +msgid "Photo Location" +msgstr "Bildeplassering" -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Forslag" +#: ../../include/features.php:47 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart." -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Se mer..." +#: ../../include/features.php:49 +msgid "Expert Mode" +msgstr "Ekspertmodus" -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du har %1$.0f av %2$.0f tillate forbindelser." +#: ../../include/features.php:49 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Legg til ny forbindelse" +#: ../../include/features.php:50 +msgid "Premium Channel" +msgstr "Premiumkanal" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Skriv kanal-adressen" +#: ../../include/features.php:50 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Eksempel: ola.nordmann@eksempel.no, http://eksempel.no/karinordmann" +#: ../../include/features.php:55 +msgid "Post Composition Features" +msgstr "Funksjoner for å lage innlegg" -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Merknader" +#: ../../include/features.php:57 +msgid "Use Markdown" +msgstr "Bruk Markdown" -#: ../../include/widgets.php:192 ../../include/text.php:833 -#: ../../include/text.php:845 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1412 ../../mod/admin.php:1432 -msgid "Save" -msgstr "Lagre" +#: ../../include/features.php:57 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Tillat bruk av \"Markdown\" til formatering av innlegg" -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "Fjern begrep" +#: ../../include/features.php:58 +msgid "Large Photos" +msgstr "Store bilder" -#: ../../include/widgets.php:274 ../../include/features.php:73 -msgid "Saved Searches" -msgstr "Lagrede søk" +#: ../../include/features.php:58 +msgid "" +"Include large (640px) photo thumbnails in posts. If not enabled, use small " +"(320px) photo thumbnails" +msgstr "Inkluder store (640px) miniatyrbilder i innlegg. Hvis denne ikke er skrudd på, bruk små (320px) miniatyrbilder." -#: ../../include/widgets.php:304 ../../include/features.php:85 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Lagrede mapper" +#: ../../include/features.php:59 ../../include/widgets.php:545 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanalkilder" -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Alt" +#: ../../include/features.php:59 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Automatisk import av kanalinnhold fra andre kanaler eller strømmer" -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Arkiv" +#: ../../include/features.php:60 +msgid "Even More Encryption" +msgstr "Enda mer kryptering" -#: ../../include/widgets.php:427 -msgid "Refresh" -msgstr "Forny" +#: ../../include/features.php:60 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel" -#: ../../include/widgets.php:428 ../../mod/connedit.php:563 -msgid "Me" -msgstr "Meg" +#: ../../include/features.php:61 +msgid "Enable voting tools" +msgstr "Skru på verktøy for å stemme" -#: ../../include/widgets.php:429 ../../mod/connedit.php:566 -msgid "Best Friends" -msgstr "Bestevenner" +#: ../../include/features.php:61 +msgid "Provide a class of post which others can vote on" +msgstr "Tilby en type innlegg som andre kan stemme på" -#: ../../include/widgets.php:431 -msgid "Co-workers" -msgstr "Medarbeidere" +#: ../../include/features.php:67 +msgid "Network and Stream Filtering" +msgstr "Nettverk- og strømfiltrering" -#: ../../include/widgets.php:432 ../../mod/connedit.php:568 -msgid "Former Friends" -msgstr "Tidligere venner" +#: ../../include/features.php:68 +msgid "Search by Date" +msgstr "Søk etter dato" -#: ../../include/widgets.php:433 ../../mod/connedit.php:569 -msgid "Acquaintances" -msgstr "Bekjente" +#: ../../include/features.php:68 +msgid "Ability to select posts by date ranges" +msgstr "Mulighet for å velge innlegg etter datoområde" -#: ../../include/widgets.php:434 -msgid "Everybody" -msgstr "Alle" +#: ../../include/features.php:69 +msgid "Collections Filter" +msgstr "Filter for samlinger" -#: ../../include/widgets.php:468 -msgid "Account settings" -msgstr "Kontoinnstillinger" +#: ../../include/features.php:69 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Skru på miniprogram for å vise Nettverksinnlegg bare fra valgte samlinger" -#: ../../include/widgets.php:474 -msgid "Channel settings" -msgstr "Kanalinnstillinger" +#: ../../include/features.php:70 ../../include/widgets.php:273 +msgid "Saved Searches" +msgstr "Lagrede søk" -#: ../../include/widgets.php:480 -msgid "Additional features" -msgstr "Tilleggsfunksjoner" +#: ../../include/features.php:70 +msgid "Save search terms for re-use" +msgstr "Lagre søkeuttrykk for senere bruk" -#: ../../include/widgets.php:486 -msgid "Feature/Addon settings" -msgstr "Funksjons-/Tilleggsinnstillinger" +#: ../../include/features.php:71 +msgid "Network Personal Tab" +msgstr "Nettverk personlig fane" -#: ../../include/widgets.php:492 -msgid "Display settings" -msgstr "Visningsinnstillinger" +#: ../../include/features.php:71 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i" -#: ../../include/widgets.php:498 -msgid "Connected apps" -msgstr "Tilkoblede app-er" +#: ../../include/features.php:72 +msgid "Network New Tab" +msgstr "Nettverk Ny fane" -#: ../../include/widgets.php:504 -msgid "Export channel" -msgstr "Eksporter kanal" +#: ../../include/features.php:72 +msgid "Enable tab to display all new Network activity" +msgstr "Skru på fane for å vise all ny nettverksaktivitet" -#: ../../include/widgets.php:513 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "Forbindelsens standard tillatelser" +#: ../../include/features.php:73 +msgid "Affinity Tool" +msgstr "Nærhetsverktøy" -#: ../../include/widgets.php:521 -msgid "Premium Channel Settings" -msgstr "Premiumkanal-innstillinger" +#: ../../include/features.php:73 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrer strømaktiviteten etter releasjonsdybde" -#: ../../include/widgets.php:529 ../../include/features.php:62 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanalkilder" +#: ../../include/features.php:74 +msgid "Connection Filtering" +msgstr "Filtrer forbindelser" -#: ../../include/widgets.php:537 ../../include/nav.php:208 -#: ../../include/apps.php:134 ../../mod/admin.php:1035 -#: ../../mod/admin.php:1235 -msgid "Settings" -msgstr "Innstillinger" +#: ../../include/features.php:74 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold" -#: ../../include/widgets.php:550 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Meldinger" +#: ../../include/features.php:75 +msgid "Suggest Channels" +msgstr "Foreslå kanaler" -#: ../../include/widgets.php:553 -msgid "Check Mail" -msgstr "Sjekk meldinger" +#: ../../include/features.php:75 +msgid "Show channel suggestions" +msgstr "Vis kanalforslag" -#: ../../include/widgets.php:558 ../../include/nav.php:199 -msgid "New Message" -msgstr "Ny melding" +#: ../../include/features.php:80 +msgid "Post/Comment Tools" +msgstr "Innlegg-/Kommentar-verktøy" -#: ../../include/widgets.php:633 -msgid "Chat Rooms" -msgstr "Chatrom" +#: ../../include/features.php:81 +msgid "Tagging" +msgstr "Merking" -#: ../../include/widgets.php:653 -msgid "Bookmarked Chatrooms" -msgstr "Bokmerkede chatrom" +#: ../../include/features.php:81 +msgid "Ability to tag existing posts" +msgstr "Mulighet til å merke eksisterende meldinger" -#: ../../include/widgets.php:673 -msgid "Suggested Chatrooms" -msgstr "Foreslåtte chatrom" +#: ../../include/features.php:82 +msgid "Post Categories" +msgstr "Innleggskategorier" -#: ../../include/widgets.php:800 ../../include/widgets.php:858 -msgid "photo/image" -msgstr "foto/bilde" +#: ../../include/features.php:82 +msgid "Add categories to your posts" +msgstr "Legg kategorier til dine innlegg" -#: ../../include/widgets.php:953 ../../include/widgets.php:955 -msgid "Rate Me" -msgstr "Vurder meg" +#: ../../include/features.php:83 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "Lagrede mapper" -#: ../../include/widgets.php:959 -msgid "View Ratings" -msgstr "Vis vurderinger" +#: ../../include/features.php:83 +msgid "Ability to file posts under folders" +msgstr "Mulighet til å sortere innlegg i mapper" -#: ../../include/widgets.php:970 -msgid "Public Hubs" -msgstr "Offentlige huber" +#: ../../include/features.php:84 +msgid "Dislike Posts" +msgstr "Mislik innlegg" -#: ../../include/conversation.php:120 ../../include/text.php:1747 -#: ../../include/diaspora.php:2030 ../../mod/like.php:335 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "foto" +#: ../../include/features.php:84 +msgid "Ability to dislike posts/comments" +msgstr "Mulighet til å mislike innlegg/kommentarer" -#: ../../include/conversation.php:123 ../../include/text.php:1750 -#: ../../mod/like.php:337 ../../mod/tagger.php:47 -msgid "event" -msgstr "hendelse" +#: ../../include/features.php:85 +msgid "Star Posts" +msgstr "Stjerneinnlegg" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "kanal" +#: ../../include/features.php:85 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mulighet til å merke spesielle innlegg med en stjerne" -#: ../../include/conversation.php:148 ../../include/text.php:1753 -#: ../../include/diaspora.php:2030 ../../mod/like.php:335 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:51 -msgid "status" -msgstr "status" +#: ../../include/features.php:86 +msgid "Tag Cloud" +msgstr "Merkelappsky" -#: ../../include/conversation.php:150 ../../include/text.php:1755 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "kommentar" +#: ../../include/features.php:86 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Tilby en personlig merkelappsky på din kanalside" -#: ../../include/conversation.php:164 ../../include/diaspora.php:2059 -#: ../../mod/like.php:383 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s liker %2$s sin %3$s" +#: ../../include/comanche.php:34 ../../mod/admin.php:348 +msgid "Default" +msgstr "Standard" -#: ../../include/conversation.php:167 ../../mod/like.php:385 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s liker ikke %2$s sin %3$s" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Slett dette elementet?" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s er nå forbundet med %2$s" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:673 +#: ../../mod/photos.php:1008 ../../mod/photos.php:1126 +msgid "Comment" +msgstr "Kommentar" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s prikket %2$s" +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:390 +msgid "[+] show all" +msgstr "[+] Vis alle" -#: ../../include/conversation.php:243 ../../include/text.php:911 -msgid "poked" -msgstr "prikket" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] Vis mindre" -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s er %2$s" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] Utvid" -#: ../../include/conversation.php:556 ../../mod/photos.php:984 -msgctxt "title" -msgid "Likes" -msgstr "Liker" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] Lukk" -#: ../../include/conversation.php:556 ../../mod/photos.php:984 -msgctxt "title" -msgid "Dislikes" -msgstr "Liker ikke" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Passordet er for kort" -#: ../../include/conversation.php:557 ../../mod/photos.php:985 -msgctxt "title" -msgid "Agree" -msgstr "Enig" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Passordene er ikke like" -#: ../../include/conversation.php:557 ../../mod/photos.php:985 -msgctxt "title" -msgid "Disagree" -msgstr "Uenig" +#: ../../include/js_strings.php:13 ../../mod/photos.php:41 +msgid "everybody" +msgstr "alle" -#: ../../include/conversation.php:557 ../../mod/photos.php:985 -msgctxt "title" -msgid "Abstain" -msgstr "Avstår" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Hemmelig passordsetning" -#: ../../include/conversation.php:558 ../../mod/photos.php:986 -msgctxt "title" -msgid "Attending" -msgstr "Deltar" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Hint om passordsetning" -#: ../../include/conversation.php:558 ../../mod/photos.php:986 -msgctxt "title" -msgid "Not attending" -msgstr "Deltar ikke" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn." -#: ../../include/conversation.php:558 ../../mod/photos.php:986 -msgctxt "title" -msgid "Might attend" -msgstr "Deltar kanskje" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Lukk alle" -#: ../../include/conversation.php:644 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "Velg" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Ikke noe nytt her" -#: ../../include/conversation.php:645 ../../include/RedDAV/RedBrowser.php:268 -#: ../../include/ItemObject.php:120 ../../include/apps.php:255 -#: ../../mod/settings.php:645 ../../mod/connedit.php:533 -#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:816 -#: ../../mod/admin.php:945 ../../mod/photos.php:1050 -msgid "Delete" -msgstr "Slett" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Vurder denne kanalen (dette er offentlig)" -#: ../../include/conversation.php:652 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "Privat melding" +#: ../../include/js_strings.php:20 ../../mod/connedit.php:667 +#: ../../mod/rate.php:156 +msgid "Rating" +msgstr "Vurdering" -#: ../../include/conversation.php:659 ../../include/ItemObject.php:227 -msgid "Message signature validated" -msgstr "Innleggets signatur er bekreftet" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Beskriv (valgfritt)" -#: ../../include/conversation.php:660 ../../include/ItemObject.php:228 -msgid "Message signature incorrect" -msgstr "Innleggets signatur er feil" +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:674 +#: ../../mod/fsuggest.php:108 ../../mod/mitem.php:231 +#: ../../mod/connedit.php:688 ../../mod/mood.php:135 ../../mod/pconfig.php:108 +#: ../../mod/filestorage.php:156 ../../mod/poke.php:171 ../../mod/chat.php:181 +#: ../../mod/chat.php:209 ../../mod/admin.php:411 ../../mod/admin.php:776 +#: ../../mod/admin.php:940 ../../mod/admin.php:1072 ../../mod/admin.php:1266 +#: ../../mod/admin.php:1351 ../../mod/appman.php:99 ../../mod/pdledit.php:58 +#: ../../mod/photos.php:598 ../../mod/photos.php:969 ../../mod/photos.php:1009 +#: ../../mod/photos.php:1127 ../../mod/rate.php:167 ../../mod/events.php:534 +#: ../../mod/events.php:710 ../../mod/mail.php:364 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/import.php:511 ../../mod/thing.php:313 +#: ../../mod/thing.php:359 ../../mod/invite.php:142 ../../mod/settings.php:583 +#: ../../mod/settings.php:695 ../../mod/settings.php:723 +#: ../../mod/settings.php:746 ../../mod/settings.php:831 +#: ../../mod/settings.php:1020 ../../mod/xchan.php:11 ../../mod/group.php:81 +#: ../../mod/connect.php:93 ../../mod/locs.php:108 ../../mod/setup.php:331 +#: ../../mod/setup.php:371 ../../mod/profiles.php:667 +#: ../../mod/import_items.php:122 ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Send" -#: ../../include/conversation.php:680 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vis %s sin profile @ %s" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Vennligst skriv inn en lenke URL:" -#: ../../include/conversation.php:695 -msgid "Categories:" -msgstr "Kategorier:" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?" -#: ../../include/conversation.php:696 -msgid "Filed under:" -msgstr "Sortert under:" +#: ../../include/js_strings.php:26 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/conversation.php:704 ../../include/ItemObject.php:312 -#, php-format -msgid " from %s" -msgstr "fra %s" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/conversation.php:707 ../../include/ItemObject.php:315 -#, php-format -msgid "last edited: %s" -msgstr "sist endret: %s" +#: ../../include/js_strings.php:28 +msgid "ago" +msgstr "siden" -#: ../../include/conversation.php:708 ../../include/ItemObject.php:316 -#, php-format -msgid "Expires: %s" -msgstr "Utløper: %s" +#: ../../include/js_strings.php:29 +msgid "from now" +msgstr "fra nå" -#: ../../include/conversation.php:723 -msgid "View in context" -msgstr "Vis i sammenheng" +#: ../../include/js_strings.php:30 +msgid "less than a minute" +msgstr "mindre enn ett minutt" -#: ../../include/conversation.php:725 ../../include/conversation.php:1203 -#: ../../include/ItemObject.php:364 ../../mod/editlayout.php:153 -#: ../../mod/editwebpage.php:188 ../../mod/editpost.php:130 -#: ../../mod/editblock.php:157 ../../mod/photos.php:950 ../../mod/mail.php:241 -#: ../../mod/mail.php:356 -msgid "Please wait" -msgstr "Vennligst vent" +#: ../../include/js_strings.php:31 +msgid "about a minute" +msgstr "omtrent et minutt" -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "fjern" +#: ../../include/js_strings.php:32 +#, php-format +msgid "%d minutes" +msgstr "%d minutter" -#: ../../include/conversation.php:842 ../../include/nav.php:247 -msgid "Loading..." -msgstr "Laster..." +#: ../../include/js_strings.php:33 +msgid "about an hour" +msgstr "omtrent en time" -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Slett valgte elementer" +#: ../../include/js_strings.php:34 +#, php-format +msgid "about %d hours" +msgstr "omtrent %d timer" -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Vis kilde" +#: ../../include/js_strings.php:35 +msgid "a day" +msgstr "en dag" -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Følg tråd" +#: ../../include/js_strings.php:36 +#, php-format +msgid "%d days" +msgstr "%d dager" -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Vis status" +#: ../../include/js_strings.php:37 +msgid "about a month" +msgstr "omtrent en måned" -#: ../../include/conversation.php:937 ../../include/nav.php:91 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "Vis profil" +#: ../../include/js_strings.php:38 +#, php-format +msgid "%d months" +msgstr "%d måneder" -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Vis bilder" +#: ../../include/js_strings.php:39 +msgid "about a year" +msgstr "omtrent et år" -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Matrix-aktivitet" +#: ../../include/js_strings.php:40 +#, php-format +msgid "%d years" +msgstr "%d år" -#: ../../include/conversation.php:941 -msgid "Edit Contact" -msgstr "Endre kontakt" +#: ../../include/js_strings.php:41 +msgid " " +msgstr " " -#: ../../include/conversation.php:942 -msgid "Send PM" -msgstr "Send privat melding" +#: ../../include/js_strings.php:42 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/conversation.php:943 ../../include/apps.php:145 -msgid "Poke" -msgstr "Prikk" +#: ../../include/js_strings.php:44 ../../include/text.php:1144 +msgid "January" +msgstr "januar" -#: ../../include/conversation.php:1019 ../../include/RedDAV/RedBrowser.php:163 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/connedit.php:570 ../../mod/photos.php:681 -#: ../../mod/photos.php:1119 -msgid "Unknown" -msgstr "Ukjent" +#: ../../include/js_strings.php:45 ../../include/text.php:1144 +msgid "February" +msgstr "februar" -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s likes this." -msgstr "%s liker dette." +#: ../../include/js_strings.php:46 ../../include/text.php:1144 +msgid "March" +msgstr "mars" -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s doesn't like this." -msgstr "%s liker ikke dette." +#: ../../include/js_strings.php:47 ../../include/text.php:1144 +msgid "April" +msgstr "april" -#: ../../include/conversation.php:1065 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d person liker dette." -msgstr[1] "%2$d personer liker dette." +#: ../../include/js_strings.php:48 +msgctxt "long" +msgid "May" +msgstr "mai" -#: ../../include/conversation.php:1067 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d person liker ikke dette." -msgstr[1] "%2$d personer liker ikke dette." +#: ../../include/js_strings.php:49 ../../include/text.php:1144 +msgid "June" +msgstr "juni" -#: ../../include/conversation.php:1073 -msgid "and" -msgstr "og" +#: ../../include/js_strings.php:50 ../../include/text.php:1144 +msgid "July" +msgstr "juli" -#: ../../include/conversation.php:1076 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", og %d annen person" -msgstr[1] ", og %d andre personer" +#: ../../include/js_strings.php:51 ../../include/text.php:1144 +msgid "August" +msgstr "august" -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s like this." -msgstr "%s liker dette." +#: ../../include/js_strings.php:52 ../../include/text.php:1144 +msgid "September" +msgstr "september" -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s don't like this." -msgstr "%s liker ikke dette." +#: ../../include/js_strings.php:53 ../../include/text.php:1144 +msgid "October" +msgstr "oktober" -#: ../../include/conversation.php:1136 -msgid "Visible to everybody" -msgstr "Synlig for alle" +#: ../../include/js_strings.php:54 ../../include/text.php:1144 +msgid "November" +msgstr "november" -#: ../../include/conversation.php:1137 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Vennligst skriv inn en lenke URL:" +#: ../../include/js_strings.php:55 ../../include/text.php:1144 +msgid "December" +msgstr "desember" -#: ../../include/conversation.php:1138 -msgid "Please enter a video link/URL:" -msgstr "Vennligst skriv en videolenke/URL:" +#: ../../include/js_strings.php:56 +msgid "Jan" +msgstr "Jan" -#: ../../include/conversation.php:1139 -msgid "Please enter an audio link/URL:" -msgstr "Vennligst skriv en lydlenke/URL:" +#: ../../include/js_strings.php:57 +msgid "Feb" +msgstr "Feb" -#: ../../include/conversation.php:1140 -msgid "Tag term:" -msgstr "Merkelapp:" +#: ../../include/js_strings.php:58 +msgid "Mar" +msgstr "Mar" -#: ../../include/conversation.php:1141 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Lagre til mappe:" +#: ../../include/js_strings.php:59 +msgid "Apr" +msgstr "Apr" -#: ../../include/conversation.php:1142 -msgid "Where are you right now?" -msgstr "Hvor er du akkurat nå?" +#: ../../include/js_strings.php:60 +msgctxt "short" +msgid "May" +msgstr "mai" -#: ../../include/conversation.php:1143 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Utløper YYYY-MM-DD HH:MM" +#: ../../include/js_strings.php:61 +msgid "Jun" +msgstr "Jun" -#: ../../include/conversation.php:1169 ../../mod/editlayout.php:198 -#: ../../mod/editwebpage.php:235 ../../mod/editblock.php:203 -#: ../../mod/photos.php:949 ../../mod/layouts.php:168 -msgid "Share" -msgstr "Del" +#: ../../include/js_strings.php:62 +msgid "Jul" +msgstr "Jul" -#: ../../include/conversation.php:1171 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Sidens lenketittel" +#: ../../include/js_strings.php:63 +msgid "Aug" +msgstr "Aug" -#: ../../include/conversation.php:1174 -msgid "Post as" -msgstr "Lag innlegg som" +#: ../../include/js_strings.php:64 +msgid "Sep" +msgstr "Sep" -#: ../../include/conversation.php:1176 ../../include/ItemObject.php:669 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:175 -#: ../../mod/editpost.php:114 ../../mod/editblock.php:144 -msgid "Bold" -msgstr "Uthevet" +#: ../../include/js_strings.php:65 +msgid "Oct" +msgstr "Okt" -#: ../../include/conversation.php:1177 ../../include/ItemObject.php:670 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:176 -#: ../../mod/editpost.php:115 ../../mod/editblock.php:145 -msgid "Italic" -msgstr "Kursiv" +#: ../../include/js_strings.php:66 +msgid "Nov" +msgstr "Nov" -#: ../../include/conversation.php:1178 ../../include/ItemObject.php:671 -#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:177 -#: ../../mod/editpost.php:116 ../../mod/editblock.php:146 -msgid "Underline" -msgstr "Understreket" +#: ../../include/js_strings.php:67 +msgid "Dec" +msgstr "Des" -#: ../../include/conversation.php:1179 ../../include/ItemObject.php:672 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -#: ../../mod/editpost.php:117 ../../mod/editblock.php:147 -msgid "Quote" -msgstr "Sitat" +#: ../../include/js_strings.php:68 ../../include/text.php:1140 +msgid "Sunday" +msgstr "søndag" -#: ../../include/conversation.php:1180 ../../include/ItemObject.php:673 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -#: ../../mod/editpost.php:118 ../../mod/editblock.php:148 -msgid "Code" -msgstr "Kode" +#: ../../include/js_strings.php:69 ../../include/text.php:1140 +msgid "Monday" +msgstr "mandag" -#: ../../include/conversation.php:1181 ../../mod/editlayout.php:145 -#: ../../mod/editwebpage.php:180 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:149 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "Last opp bilde" +#: ../../include/js_strings.php:70 ../../include/text.php:1140 +msgid "Tuesday" +msgstr "tirsdag" -#: ../../include/conversation.php:1182 -msgid "upload photo" -msgstr "last opp bilde" +#: ../../include/js_strings.php:71 ../../include/text.php:1140 +msgid "Wednesday" +msgstr "onsdag" -#: ../../include/conversation.php:1183 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:181 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:150 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "Legg ved fil" +#: ../../include/js_strings.php:72 ../../include/text.php:1140 +msgid "Thursday" +msgstr "torsdag" -#: ../../include/conversation.php:1184 -msgid "attach file" -msgstr "legg ved fil" +#: ../../include/js_strings.php:73 ../../include/text.php:1140 +msgid "Friday" +msgstr "fredag" -#: ../../include/conversation.php:1185 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:182 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:151 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "Sett inn web-lenke" +#: ../../include/js_strings.php:74 ../../include/text.php:1140 +msgid "Saturday" +msgstr "lørdag" -#: ../../include/conversation.php:1186 -msgid "web link" -msgstr "web-lenke" +#: ../../include/js_strings.php:75 +msgid "Sun" +msgstr "Søn" -#: ../../include/conversation.php:1187 -msgid "Insert video link" -msgstr "Sett inn videolenke" +#: ../../include/js_strings.php:76 +msgid "Mon" +msgstr "Man" -#: ../../include/conversation.php:1188 -msgid "video link" -msgstr "videolenke" +#: ../../include/js_strings.php:77 +msgid "Tue" +msgstr "Tirs" -#: ../../include/conversation.php:1189 -msgid "Insert audio link" -msgstr "Sett inn lenke til lyd" +#: ../../include/js_strings.php:78 +msgid "Wed" +msgstr "Ons" -#: ../../include/conversation.php:1190 -msgid "audio link" -msgstr "lenke til lyd" +#: ../../include/js_strings.php:79 +msgid "Thu" +msgstr "Tors" -#: ../../include/conversation.php:1191 ../../mod/editlayout.php:151 -#: ../../mod/editwebpage.php:186 ../../mod/editpost.php:125 -#: ../../mod/editblock.php:155 -msgid "Set your location" -msgstr "Angi din plassering" +#: ../../include/js_strings.php:80 +msgid "Fri" +msgstr "Fre" -#: ../../include/conversation.php:1192 -msgid "set location" -msgstr "angi plassering" +#: ../../include/js_strings.php:81 +msgid "Sat" +msgstr "Lør" -#: ../../include/conversation.php:1193 ../../mod/editpost.php:127 -msgid "Toggle voting" -msgstr "Skru av eller på stemming" +#: ../../include/js_strings.php:82 +msgctxt "calendar" +msgid "today" +msgstr "idag" -#: ../../include/conversation.php:1196 ../../mod/editlayout.php:152 -#: ../../mod/editwebpage.php:187 ../../mod/editpost.php:126 -#: ../../mod/editblock.php:156 -msgid "Clear browser location" -msgstr "Fjern nettleserplassering" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "month" +msgstr "måned" -#: ../../include/conversation.php:1197 -msgid "clear location" -msgstr "fjern plassering" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "week" +msgstr "uke" -#: ../../include/conversation.php:1199 ../../mod/editlayout.php:164 -#: ../../mod/editwebpage.php:203 ../../mod/editpost.php:141 -#: ../../mod/editblock.php:169 -msgid "Title (optional)" -msgstr "Tittel (valgfri)" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "day" +msgstr "dag" -#: ../../include/conversation.php:1202 ../../mod/editlayout.php:167 -#: ../../mod/editwebpage.php:205 ../../mod/editpost.php:143 -#: ../../mod/editblock.php:172 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorier (valgfri, kommaseparert liste)" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "All day" +msgstr "Hele dagen" -#: ../../include/conversation.php:1204 ../../mod/editlayout.php:154 -#: ../../mod/editwebpage.php:189 ../../mod/editpost.php:131 -#: ../../mod/editblock.php:158 -msgid "Permission settings" -msgstr "Tillatelser - innstillinger" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Ofte" -#: ../../include/conversation.php:1205 -msgid "permissions" -msgstr "tillatelser" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Hver time" -#: ../../include/conversation.php:1212 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:198 ../../mod/editpost.php:138 -#: ../../mod/editblock.php:166 -msgid "Public post" -msgstr "Offentlig innlegg" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "To ganger daglig" -#: ../../include/conversation.php:1214 ../../mod/editlayout.php:168 -#: ../../mod/editwebpage.php:206 ../../mod/editpost.php:144 -#: ../../mod/editblock.php:173 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Eksempel: ola@eksempel.no, kari@eksempel.no" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Daglig" -#: ../../include/conversation.php:1227 ../../mod/editlayout.php:178 -#: ../../mod/editwebpage.php:215 ../../mod/editpost.php:155 -#: ../../mod/editblock.php:183 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Angi utløpsdato" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Ukentlig" -#: ../../include/conversation.php:1229 ../../include/ItemObject.php:680 -#: ../../mod/editpost.php:157 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Krypter tekst" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Månedlig" -#: ../../include/conversation.php:1231 ../../mod/events.php:635 -#: ../../mod/editpost.php:159 -msgid "OK" -msgstr "OK" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/conversation.php:1232 ../../mod/settings.php:583 -#: ../../mod/settings.php:609 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -#: ../../mod/events.php:634 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160 -msgid "Cancel" -msgstr "Avbryt" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/conversation.php:1475 -msgid "Discover" -msgstr "Oppdage" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/conversation.php:1478 -msgid "Imported public streams" -msgstr "Importerte offentlige strømmer" +#: ../../include/contact_selectors.php:79 ../../mod/id.php:15 +#: ../../mod/id.php:16 ../../mod/admin.php:779 ../../mod/admin.php:788 +#: ../../boot.php:1499 +msgid "Email" +msgstr "E-post" -#: ../../include/conversation.php:1483 -msgid "Commented Order" -msgstr "Kommentert" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/conversation.php:1486 -msgid "Sort by Comment Date" -msgstr "Sorter etter kommentert dato" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/conversation.php:1490 -msgid "Posted Order" -msgstr "Lagt inn" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../include/conversation.php:1493 -msgid "Sort by Post Date" -msgstr "Sorter etter innleggsdato" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/conversation.php:1501 -msgid "Posts that mention or involve you" -msgstr "Innlegg som nevner eller involverer deg" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/conversation.php:1507 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "Nye" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/conversation.php:1510 -msgid "Activity Stream - by date" -msgstr "Aktivitetsstrøm - etter dato" +#: ../../include/activities.php:42 +msgid " and " +msgstr "og" -#: ../../include/conversation.php:1516 -msgid "Starred" -msgstr "Stjerne" +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "offentlig profil" -#: ../../include/conversation.php:1519 -msgid "Favourite Posts" -msgstr "Favorittinnlegg" +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s endret %2$s til “%3$s”" -#: ../../include/conversation.php:1526 -msgid "Spam" -msgstr "Søppel" +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besøk %1$s sitt %2$s" -#: ../../include/conversation.php:1529 -msgid "Posts flagged as SPAM" -msgstr "Innlegg merket som SØPPEL" +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s har oppdatert %2$s, endret %3$s." -#: ../../include/conversation.php:1568 ../../mod/admin.php:949 -msgid "Channel" -msgstr "Kanal" +#: ../../include/Contact.php:101 ../../include/conversation.php:947 +#: ../../include/identity.php:941 ../../include/widgets.php:136 +#: ../../include/widgets.php:174 ../../mod/directory.php:316 +#: ../../mod/match.php:64 ../../mod/suggest.php:52 +msgid "Connect" +msgstr "Koble" -#: ../../include/conversation.php:1571 -msgid "Status Messages and Posts" -msgstr "Statusmeldinger og -innlegg" +#: ../../include/Contact.php:118 +msgid "New window" +msgstr "Nytt vindu" -#: ../../include/conversation.php:1580 -msgid "About" -msgstr "Om" +#: ../../include/Contact.php:119 +msgid "Open the selected location in a different window or browser tab" +msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane" -#: ../../include/conversation.php:1583 -msgid "Profile Details" -msgstr "Profildetaljer" +#: ../../include/Contact.php:237 +#, php-format +msgid "User '%s' deleted" +msgstr "Brukeren '%s' er slettet" -#: ../../include/conversation.php:1589 ../../include/nav.php:97 -#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Bilder" +#: ../../include/dba/dba_driver.php:141 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'" -#: ../../include/conversation.php:1592 ../../include/photos.php:356 -msgid "Photo Albums" -msgstr "Fotoalbum" +#: ../../include/conversation.php:120 ../../include/text.php:1832 +#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "photo" +msgstr "foto" -#: ../../include/conversation.php:1598 ../../include/RedDAV/RedBrowser.php:249 -#: ../../include/nav.php:98 ../../include/apps.php:135 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Filer" +#: ../../include/conversation.php:123 ../../include/text.php:1835 +#: ../../include/event.php:896 ../../mod/like.php:363 ../../mod/tagger.php:47 +#: ../../mod/events.php:245 +msgid "event" +msgstr "hendelse" -#: ../../include/conversation.php:1601 -msgid "Files and Storage" -msgstr "Filer og lagring" +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "kanal" -#: ../../include/conversation.php:1611 ../../include/conversation.php:1614 -msgid "Chatrooms" -msgstr "Chatrom" +#: ../../include/conversation.php:148 ../../include/text.php:1838 +#: ../../mod/like.php:361 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "status" +msgstr "status" -#: ../../include/conversation.php:1624 ../../include/nav.php:109 -#: ../../include/apps.php:129 -msgid "Bookmarks" -msgstr "Bokmerker" +#: ../../include/conversation.php:150 ../../include/text.php:1840 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "kommentar" -#: ../../include/conversation.php:1627 -msgid "Saved Bookmarks" -msgstr "Lagrede bokmerker" +#: ../../include/conversation.php:164 ../../mod/like.php:410 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s liker %2$s sin %3$s" -#: ../../include/conversation.php:1635 ../../include/nav.php:113 -#: ../../include/apps.php:136 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Websider" +#: ../../include/conversation.php:167 ../../mod/like.php:412 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s liker ikke %2$s sin %3$s" -#: ../../include/conversation.php:1638 -msgid "Manage Webpages" -msgstr "Håndtere websider" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s er nå forbundet med %2$s" -#: ../../include/conversation.php:1667 ../../include/ItemObject.php:175 -#: ../../include/ItemObject.php:187 ../../mod/photos.php:1003 -#: ../../mod/photos.php:1015 -msgid "View all" -msgstr "Vis alle" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s prikket %2$s" -#: ../../include/conversation.php:1695 ../../include/ItemObject.php:184 -#: ../../mod/photos.php:1012 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Liker ikke" -msgstr[1] "Liker ikke" +#: ../../include/conversation.php:243 ../../include/text.php:933 +msgid "poked" +msgstr "prikket" -#: ../../include/conversation.php:1698 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Deltar" -msgstr[1] "Deltar" +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s er %2$s" -#: ../../include/conversation.php:1701 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Deltar ikke" -msgstr[1] "Deltar ikke" +#: ../../include/conversation.php:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Likes" +msgstr "Liker" -#: ../../include/conversation.php:1704 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Ikke bestemt" -msgstr[1] "Ikke bestemt" +#: ../../include/conversation.php:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Dislikes" +msgstr "Liker ikke" -#: ../../include/conversation.php:1707 -msgctxt "noun" +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Enig" -msgstr[1] "Enige" +msgstr "Enig" -#: ../../include/conversation.php:1710 -msgctxt "noun" +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Uenig" -msgstr[1] "Uenige" +msgstr "Uenig" -#: ../../include/conversation.php:1713 -msgctxt "noun" +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Avstår" -msgstr[1] "Avstår" +msgstr "Avstår" -#: ../../include/attach.php:137 ../../include/attach.php:184 -#: ../../include/attach.php:247 ../../include/attach.php:261 -#: ../../include/attach.php:301 ../../include/attach.php:315 -#: ../../include/attach.php:339 ../../include/attach.php:532 -#: ../../include/attach.php:606 ../../include/items.php:4093 -#: ../../include/photos.php:15 ../../include/chat.php:131 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/manage.php:6 -#: ../../mod/settings.php:564 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 -#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 -#: ../../mod/events.php:219 ../../mod/connedit.php:321 ../../mod/group.php:9 -#: ../../mod/setup.php:207 ../../mod/common.php:35 ../../mod/id.php:61 -#: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 -#: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 -#: ../../mod/rate.php:110 ../../mod/editpost.php:13 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:61 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 -#: ../../mod/filestorage.php:114 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 -#: ../../mod/webpages.php:67 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/editblock.php:65 -#: ../../mod/register.php:72 ../../mod/photos.php:68 ../../mod/message.php:16 -#: ../../mod/mitem.php:106 ../../mod/mood.php:111 ../../mod/layouts.php:67 -#: ../../mod/layouts.php:74 ../../mod/layouts.php:85 ../../mod/mail.php:114 -#: ../../mod/notifications.php:66 ../../mod/regmod.php:17 -#: ../../mod/network.php:12 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 ../../mod/page.php:28 -#: ../../mod/page.php:78 ../../mod/bookmarks.php:46 ../../mod/channel.php:95 -#: ../../mod/channel.php:206 ../../mod/channel.php:249 -#: ../../mod/suggest.php:26 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:393 -msgid "Permission denied." -msgstr "Tillatelse avslått." +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Attending" +msgstr "Deltar" -#: ../../include/attach.php:242 ../../include/attach.php:296 -msgid "Item was not found." -msgstr "Elementet ble ikke funnet." +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Not attending" +msgstr "Deltar ikke" -#: ../../include/attach.php:352 -msgid "No source file." -msgstr "Ingen kildefil." +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Might attend" +msgstr "Deltar kanskje" -#: ../../include/attach.php:369 -msgid "Cannot locate file to replace" -msgstr "Kan ikke finne filen som skal byttes ut" +#: ../../include/conversation.php:661 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Velg" -#: ../../include/attach.php:387 -msgid "Cannot locate file to revise/update" -msgstr "Finner ikke filen som skal revideres/oppdateres" +#: ../../include/conversation.php:669 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Privat melding" -#: ../../include/attach.php:398 +#: ../../include/conversation.php:676 ../../include/ItemObject.php:227 +msgid "Message signature validated" +msgstr "Innleggets signatur er bekreftet" + +#: ../../include/conversation.php:677 ../../include/ItemObject.php:228 +msgid "Message signature incorrect" +msgstr "Innleggets signatur er feil" + +#: ../../include/conversation.php:694 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Filens størrelse overgår grensen på %d" +msgid "View %s's profile @ %s" +msgstr "Vis %s sin profile @ %s" + +#: ../../include/conversation.php:709 +msgid "Categories:" +msgstr "Kategorier:" + +#: ../../include/conversation.php:710 +msgid "Filed under:" +msgstr "Sortert under:" -#: ../../include/attach.php:410 +#: ../../include/conversation.php:718 ../../include/ItemObject.php:314 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes." +msgid "from %s" +msgstr "fra %s" -#: ../../include/attach.php:493 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt." +#: ../../include/conversation.php:721 ../../include/ItemObject.php:317 +#, php-format +msgid "last edited: %s" +msgstr "sist endret: %s" -#: ../../include/attach.php:505 -msgid "Stored file could not be verified. Upload failed." -msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." +#: ../../include/conversation.php:722 ../../include/ItemObject.php:318 +#, php-format +msgid "Expires: %s" +msgstr "Utløper: %s" -#: ../../include/attach.php:547 ../../include/attach.php:564 -msgid "Path not available." -msgstr "Stien er ikke tilgjengelig." +#: ../../include/conversation.php:737 +msgid "View in context" +msgstr "Vis i sammenheng" -#: ../../include/attach.php:611 -msgid "Empty pathname" -msgstr "Tomt sti-navn" +#: ../../include/conversation.php:739 ../../include/conversation.php:1212 +#: ../../include/ItemObject.php:366 ../../mod/editpost.php:130 +#: ../../mod/editblock.php:150 ../../mod/photos.php:990 ../../mod/mail.php:237 +#: ../../mod/mail.php:365 ../../mod/editlayout.php:148 +#: ../../mod/editwebpage.php:190 +msgid "Please wait" +msgstr "Vennligst vent" -#: ../../include/attach.php:627 -msgid "duplicate filename or path" -msgstr "duplikat av filnavn eller sti" +#: ../../include/conversation.php:848 +msgid "remove" +msgstr "fjern" -#: ../../include/attach.php:651 -msgid "Path not found." -msgstr "Stien ble ikke funnet." +#: ../../include/conversation.php:852 ../../include/nav.php:241 +msgid "Loading..." +msgstr "Laster..." -#: ../../include/attach.php:702 -msgid "mkdir failed." -msgstr "mkdir mislyktes." +#: ../../include/conversation.php:853 +msgid "Delete Selected Items" +msgstr "Slett valgte elementer" -#: ../../include/attach.php:706 -msgid "database storage failed." -msgstr "databaselagring mislyktes." +#: ../../include/conversation.php:941 +msgid "View Source" +msgstr "Vis kilde" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Ikke en gyldig e-postadresse" +#: ../../include/conversation.php:942 +msgid "Follow Thread" +msgstr "Følg tråd" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet" +#: ../../include/conversation.php:943 +msgid "View Status" +msgstr "Vis status" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Din e-postadresse er allerede registrert på dette nettstedet." +#: ../../include/conversation.php:944 ../../include/nav.php:86 +#: ../../mod/connedit.php:494 +msgid "View Profile" +msgstr "Vis profil" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "En invitasjon er påkrevd." +#: ../../include/conversation.php:945 +msgid "View Photos" +msgstr "Vis bilder" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Invitasjon kunne ikke bekreftes." +#: ../../include/conversation.php:946 +msgid "Activity/Posts" +msgstr "Aktivitet/Innlegg" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Vennligst skriv inn nødvendig informasjon." +#: ../../include/conversation.php:948 +msgid "Edit Connection" +msgstr "Endre forbindelse" -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Mislyktes med å lagre kontoinformasjon." +#: ../../include/conversation.php:949 +msgid "Send PM" +msgstr "Send privat melding" -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registreringsbekreftelse for %s" +#: ../../include/conversation.php:950 ../../include/apps.php:145 +msgid "Poke" +msgstr "Prikk" -#: ../../include/account.php:313 +#: ../../include/conversation.php:1064 #, php-format -msgid "Registration request at %s" -msgstr "Registreringsforespørsel hos %s" +msgid "%s likes this." +msgstr "%s liker dette." -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administrator" +#: ../../include/conversation.php:1064 +#, php-format +msgid "%s doesn't like this." +msgstr "%s liker ikke dette." -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "ditt registreringspassord" +#: ../../include/conversation.php:1068 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d person liker dette." +msgstr[1] "%2$d personer liker dette." -#: ../../include/account.php:340 ../../include/account.php:397 +#: ../../include/conversation.php:1070 #, php-format -msgid "Registration details for %s" -msgstr "Registreringsdetaljer for %s" +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d person liker ikke dette." +msgstr[1] "%2$d personer liker ikke dette." -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Konto godkjent." +#: ../../include/conversation.php:1076 +msgid "and" +msgstr "og" -#: ../../include/account.php:440 +#: ../../include/conversation.php:1079 #, php-format -msgid "Registration revoked for %s" -msgstr "Registrering trukket tilbake for %s" +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", og %d annen person" +msgstr[1] ", og %d andre personer" -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Konto bekreftet. Vennligst logg inn." +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s like this." +msgstr "%s liker dette." -#: ../../include/account.php:706 ../../include/account.php:708 -msgid "Click here to upgrade." -msgstr "Klikk her for å oppgradere." +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s don't like this." +msgstr "%s liker ikke dette." -#: ../../include/account.php:714 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan." +#: ../../include/conversation.php:1143 +msgid "Visible to everybody" +msgstr "Synlig for alle" -#: ../../include/account.php:719 -msgid "This action is not available under your subscription plan." -msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." +#: ../../include/conversation.php:1144 ../../mod/mail.php:170 +#: ../../mod/mail.php:299 +msgid "Please enter a link URL:" +msgstr "Vennligst skriv inn en lenke URL:" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Slett dette elementet?" +#: ../../include/conversation.php:1145 +msgid "Please enter a video link/URL:" +msgstr "Vennligst skriv en videolenke/URL:" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:968 ../../mod/photos.php:1086 -msgid "Comment" -msgstr "Kommentar" +#: ../../include/conversation.php:1146 +msgid "Please enter an audio link/URL:" +msgstr "Vennligst skriv en lydlenke/URL:" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" -msgstr "[+] Vis alle" +#: ../../include/conversation.php:1147 +msgid "Tag term:" +msgstr "Merkelapp:" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Vis mindre" +#: ../../include/conversation.php:1148 ../../mod/filer.php:48 +msgid "Save to Folder:" +msgstr "Lagre til mappe:" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] Utvid" +#: ../../include/conversation.php:1149 +msgid "Where are you right now?" +msgstr "Hvor er du akkurat nå?" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] Lukk" +#: ../../include/conversation.php:1150 ../../mod/editpost.php:54 +#: ../../mod/mail.php:171 ../../mod/mail.php:300 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Utløper YYYY-MM-DD HH:MM" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Passordet er for kort" +#: ../../include/conversation.php:1158 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:683 ../../mod/editpost.php:150 +#: ../../mod/editblock.php:171 ../../mod/photos.php:1010 +#: ../../mod/events.php:707 ../../mod/webpages.php:188 +#: ../../mod/editwebpage.php:212 +msgid "Preview" +msgstr "Forhåndsvisning" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Passordene er ikke like" +#: ../../include/conversation.php:1177 ../../mod/layouts.php:184 +#: ../../mod/photos.php:989 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 +msgid "Share" +msgstr "Del" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "alle" +#: ../../include/conversation.php:1179 +msgid "Page link name" +msgstr "Sidens lenkenavn" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Hemmelig passordsetning" +#: ../../include/conversation.php:1182 +msgid "Post as" +msgstr "Lag innlegg som" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hint om passordsetning" +#: ../../include/conversation.php:1184 ../../include/ItemObject.php:675 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 +msgid "Bold" +msgstr "Uthevet" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn." +#: ../../include/conversation.php:1185 ../../include/ItemObject.php:676 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:137 +#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 +msgid "Italic" +msgstr "Kursiv" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Lukk alle" +#: ../../include/conversation.php:1186 ../../include/ItemObject.php:677 +#: ../../mod/editpost.php:116 ../../mod/editblock.php:138 +#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 +msgid "Underline" +msgstr "Understreket" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Ikke noe nytt her" +#: ../../include/conversation.php:1187 ../../include/ItemObject.php:678 +#: ../../mod/editpost.php:117 ../../mod/editblock.php:139 +#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 +msgid "Quote" +msgstr "Sitat" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Vurder denne kanalen (dette er offentlig)" +#: ../../include/conversation.php:1188 ../../include/ItemObject.php:679 +#: ../../mod/editpost.php:118 ../../mod/editblock.php:140 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 +msgid "Code" +msgstr "Kode" -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -msgid "Rating" -msgstr "Vurdering" +#: ../../include/conversation.php:1189 ../../mod/editpost.php:119 +#: ../../mod/editblock.php:142 ../../mod/mail.php:234 ../../mod/mail.php:361 +#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:182 +msgid "Upload photo" +msgstr "Last opp bilde" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Beskriv (valgfritt)" +#: ../../include/conversation.php:1190 +msgid "upload photo" +msgstr "last opp bilde" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/settings.php:582 ../../mod/settings.php:684 -#: ../../mod/settings.php:710 ../../mod/settings.php:738 -#: ../../mod/settings.php:761 ../../mod/settings.php:843 -#: ../../mod/settings.php:1039 ../../mod/xchan.php:11 ../../mod/connect.php:93 -#: ../../mod/events.php:654 ../../mod/connedit.php:653 ../../mod/group.php:81 -#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/thing.php:284 -#: ../../mod/thing.php:327 ../../mod/pdledit.php:58 ../../mod/import.php:504 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/rate.php:167 -#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:155 -#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/admin.php:441 ../../mod/admin.php:809 -#: ../../mod/admin.php:943 ../../mod/admin.php:1074 ../../mod/admin.php:1269 -#: ../../mod/admin.php:1352 ../../mod/photos.php:565 ../../mod/photos.php:642 -#: ../../mod/photos.php:929 ../../mod/photos.php:969 ../../mod/photos.php:1087 -#: ../../mod/mood.php:134 ../../mod/mail.php:355 ../../mod/appman.php:99 -#: ../../mod/poll.php:68 ../../mod/bulksetclose.php:24 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Submit" -msgstr "Send" +#: ../../include/conversation.php:1191 ../../mod/editpost.php:120 +#: ../../mod/editblock.php:143 ../../mod/mail.php:235 ../../mod/mail.php:362 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 +msgid "Attach file" +msgstr "Legg ved fil" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Vennligst skriv inn en lenke URL:" +#: ../../include/conversation.php:1192 +msgid "attach file" +msgstr "legg ved fil" -#: ../../include/js_strings.php:25 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/conversation.php:1193 ../../mod/editpost.php:121 +#: ../../mod/editblock.php:144 ../../mod/mail.php:236 ../../mod/mail.php:363 +#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 +msgid "Insert web link" +msgstr "Sett inn web-lenke" -#: ../../include/js_strings.php:26 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/conversation.php:1194 +msgid "web link" +msgstr "web-lenke" -#: ../../include/js_strings.php:27 -msgid "ago" -msgstr "siden" +#: ../../include/conversation.php:1195 +msgid "Insert video link" +msgstr "Sett inn videolenke" -#: ../../include/js_strings.php:28 -msgid "from now" -msgstr "fra nå" +#: ../../include/conversation.php:1196 +msgid "video link" +msgstr "videolenke" -#: ../../include/js_strings.php:29 -msgid "less than a minute" -msgstr "mindre enn ett minutt" +#: ../../include/conversation.php:1197 +msgid "Insert audio link" +msgstr "Sett inn lenke til lyd" -#: ../../include/js_strings.php:30 -msgid "about a minute" -msgstr "omtrent et minutt" - -#: ../../include/js_strings.php:31 -#, php-format -msgid "%d minutes" -msgstr "%d minutter" +#: ../../include/conversation.php:1198 +msgid "audio link" +msgstr "lenke til lyd" -#: ../../include/js_strings.php:32 -msgid "about an hour" -msgstr "omtrent en time" +#: ../../include/conversation.php:1199 ../../mod/editpost.php:125 +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:188 +msgid "Set your location" +msgstr "Angi din plassering" -#: ../../include/js_strings.php:33 -#, php-format -msgid "about %d hours" -msgstr "omtrent %d timer" +#: ../../include/conversation.php:1200 +msgid "set location" +msgstr "angi plassering" -#: ../../include/js_strings.php:34 -msgid "a day" -msgstr "en dag" +#: ../../include/conversation.php:1201 ../../mod/editpost.php:127 +msgid "Toggle voting" +msgstr "Skru av eller på stemming" -#: ../../include/js_strings.php:35 -#, php-format -msgid "%d days" -msgstr "%d dager" +#: ../../include/conversation.php:1204 ../../mod/editpost.php:126 +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:189 +msgid "Clear browser location" +msgstr "Fjern nettleserplassering" -#: ../../include/js_strings.php:36 -msgid "about a month" -msgstr "omtrent en måned" +#: ../../include/conversation.php:1205 +msgid "clear location" +msgstr "fjern plassering" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d months" -msgstr "%d måneder" +#: ../../include/conversation.php:1207 ../../mod/editpost.php:142 +#: ../../mod/editblock.php:162 ../../mod/editwebpage.php:205 +msgid "Title (optional)" +msgstr "Tittel (valgfri)" -#: ../../include/js_strings.php:38 -msgid "about a year" -msgstr "omtrent et år" +#: ../../include/conversation.php:1211 ../../mod/editpost.php:144 +#: ../../mod/editblock.php:165 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:207 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorier (valgfri, kommaseparert liste)" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d years" -msgstr "%d år" +#: ../../include/conversation.php:1213 ../../mod/editpost.php:131 +#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:191 +msgid "Permission settings" +msgstr "Tillatelser - innstillinger" -#: ../../include/js_strings.php:40 -msgid " " -msgstr " " +#: ../../include/conversation.php:1214 +msgid "permissions" +msgstr "tillatelser" -#: ../../include/js_strings.php:41 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/conversation.php:1222 ../../mod/editpost.php:139 +#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:200 +msgid "Public post" +msgstr "Offentlig innlegg" -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:266 -msgid "parent" -msgstr "opp et nivå" +#: ../../include/conversation.php:1224 ../../mod/editpost.php:145 +#: ../../mod/editblock.php:166 ../../mod/editlayout.php:164 +#: ../../mod/editwebpage.php:208 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Eksempel: ola@eksempel.no, kari@eksempel.no" -#: ../../include/RedDAV/RedBrowser.php:130 ../../include/text.php:2395 -msgid "Collection" -msgstr "Samling" +#: ../../include/conversation.php:1237 ../../mod/editpost.php:156 +#: ../../mod/editblock.php:176 ../../mod/mail.php:241 ../../mod/mail.php:368 +#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 +msgid "Set expiration date" +msgstr "Angi utløpsdato" -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Principal" -msgstr "Viktigste" +#: ../../include/conversation.php:1239 ../../include/ItemObject.php:686 +#: ../../mod/editpost.php:158 ../../mod/mail.php:243 ../../mod/mail.php:370 +msgid "Encrypt text" +msgstr "Krypter tekst" -#: ../../include/RedDAV/RedBrowser.php:136 -msgid "Addressbook" -msgstr "Adressebok" +#: ../../include/conversation.php:1241 ../../mod/editpost.php:160 +#: ../../mod/events.php:691 +msgid "OK" +msgstr "OK" -#: ../../include/RedDAV/RedBrowser.php:139 -msgid "Calendar" -msgstr "Kalender" +#: ../../include/conversation.php:1242 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:161 +#: ../../mod/events.php:690 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +#: ../../mod/settings.php:584 ../../mod/settings.php:610 +msgid "Cancel" +msgstr "Avbryt" -#: ../../include/RedDAV/RedBrowser.php:142 -msgid "Schedule Inbox" -msgstr "Tidsplan innboks" +#: ../../include/conversation.php:1485 +msgid "Discover" +msgstr "Oppdage" -#: ../../include/RedDAV/RedBrowser.php:145 -msgid "Schedule Outbox" -msgstr "Tidsplan utboks" +#: ../../include/conversation.php:1488 +msgid "Imported public streams" +msgstr "Importerte offentlige strømmer" -#: ../../include/RedDAV/RedBrowser.php:225 -#, php-format -msgid "%1$s used" -msgstr "%1$s brukt" +#: ../../include/conversation.php:1493 +msgid "Commented Order" +msgstr "Kommentert" -#: ../../include/RedDAV/RedBrowser.php:230 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s brukt av %2$s (%3$s%)" +#: ../../include/conversation.php:1496 +msgid "Sort by Comment Date" +msgstr "Sorter etter kommentert dato" -#: ../../include/RedDAV/RedBrowser.php:251 -msgid "Total" -msgstr "Totalt" +#: ../../include/conversation.php:1500 +msgid "Posted Order" +msgstr "Lagt inn" -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Shared" -msgstr "Delt" +#: ../../include/conversation.php:1503 +msgid "Sort by Post Date" +msgstr "Sorter etter innleggsdato" -#: ../../include/RedDAV/RedBrowser.php:254 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:100 -#: ../../mod/mitem.php:169 ../../mod/new_channel.php:121 -msgid "Create" -msgstr "Lag" +#: ../../include/conversation.php:1508 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Personlig" -#: ../../include/RedDAV/RedBrowser.php:255 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1236 -msgid "Upload" -msgstr "Last opp" +#: ../../include/conversation.php:1511 +msgid "Posts that mention or involve you" +msgstr "Innlegg som nevner eller involverer deg" -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:584 -#: ../../mod/settings.php:610 ../../mod/admin.php:950 -#: ../../mod/sharedwithme.php:100 -msgid "Name" -msgstr "Navn" +#: ../../include/conversation.php:1517 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" +msgstr "Nye" -#: ../../include/RedDAV/RedBrowser.php:263 -msgid "Type" -msgstr "Type" +#: ../../include/conversation.php:1520 +msgid "Activity Stream - by date" +msgstr "Aktivitetsstrøm - etter dato" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 -msgid "Size" -msgstr "Størrelse" +#: ../../include/conversation.php:1526 +msgid "Starred" +msgstr "Stjerne" -#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 -msgid "Last Modified" -msgstr "Sist endret" +#: ../../include/conversation.php:1529 +msgid "Favourite Posts" +msgstr "Favorittinnlegg" -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "Lag ny mappe" +#: ../../include/conversation.php:1536 +msgid "Spam" +msgstr "Søppel" -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "Last opp fil" +#: ../../include/conversation.php:1539 +msgid "Posts flagged as SPAM" +msgstr "Innlegg merket som SØPPEL" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s sine bokmerker" +#: ../../include/conversation.php:1583 ../../mod/admin.php:947 +msgid "Channel" +msgstr "Kanal" -#: ../../include/comanche.php:34 ../../mod/admin.php:381 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" +#: ../../include/conversation.php:1586 +msgid "Status Messages and Posts" +msgstr "Statusmeldinger og -innlegg" -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Generelle funksjoner" +#: ../../include/conversation.php:1595 +msgid "About" +msgstr "Om" -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Innholdet utløper" +#: ../../include/conversation.php:1598 +msgid "Profile Details" +msgstr "Profildetaljer" -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden" +#: ../../include/conversation.php:1604 ../../include/apps.php:139 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Bilder" -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Flere profiler" +#: ../../include/conversation.php:1607 ../../include/photos.php:422 +msgid "Photo Albums" +msgstr "Fotoalbum" -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Mulig å lage flere profiler" +#: ../../include/conversation.php:1614 +msgid "Files and Storage" +msgstr "Filer og lagring" -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Avanserte profiler" +#: ../../include/conversation.php:1624 ../../include/conversation.php:1627 +msgid "Chatrooms" +msgstr "Chatrom" -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Ytterlige seksjoner og utvalg til profilen" +#: ../../include/conversation.php:1637 ../../include/apps.php:129 +#: ../../include/nav.php:103 +msgid "Bookmarks" +msgstr "Bokmerker" -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Profil-import/-eksport" +#: ../../include/conversation.php:1640 +msgid "Saved Bookmarks" +msgstr "Lagrede bokmerker" -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler" +#: ../../include/conversation.php:1647 ../../include/apps.php:136 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Websider" -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Web-sider" +#: ../../include/conversation.php:1650 +msgid "Manage Webpages" +msgstr "Håndtere websider" -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Tilby kontrollerte web-sider på din kanal" +#: ../../include/conversation.php:1679 ../../include/ItemObject.php:175 +#: ../../include/ItemObject.php:187 ../../mod/photos.php:1043 +#: ../../mod/photos.php:1055 +msgid "View all" +msgstr "Vis alle" -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Private merknader" +#: ../../include/conversation.php:1703 ../../include/taxonomy.php:403 +#: ../../include/identity.php:1252 ../../include/ItemObject.php:179 +#: ../../mod/photos.php:1047 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Liker" +msgstr[1] "Liker" -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Skrur på et verktøy for lagre merknader og påminnelser" +#: ../../include/conversation.php:1706 ../../include/ItemObject.php:184 +#: ../../mod/photos.php:1052 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Liker ikke" +msgstr[1] "Liker ikke" -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Navigasjon kanalvalg" +#: ../../include/conversation.php:1709 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Deltar" +msgstr[1] "Deltar" -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Endre kanaler direkte fra navigasjonsmenyen" +#: ../../include/conversation.php:1712 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Deltar ikke" +msgstr[1] "Deltar ikke" -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "Bildeplassering" +#: ../../include/conversation.php:1715 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Ikke bestemt" +msgstr[1] "Ikke bestemt" -#: ../../include/features.php:47 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart." +#: ../../include/conversation.php:1718 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Enig" +msgstr[1] "Enige" -#: ../../include/features.php:51 -msgid "Extended Identity Sharing" -msgstr "Utvidet identitetsdeling" +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Uenig" +msgstr[1] "Uenige" -#: ../../include/features.php:51 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Del din identiet med alle nettsteder på Internett. Når denne er avskrudd, deles identiteten bare med nettsteder i matrix." +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Avstår" +msgstr[1] "Avstår" -#: ../../include/features.php:52 -msgid "Expert Mode" -msgstr "Ekspertmodus" +#: ../../include/api.php:1290 +msgid "Public Timeline" +msgstr "Offentlig tidslinje" -#: ../../include/features.php:52 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" +#: ../../include/photos.php:109 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" -#: ../../include/features.php:53 -msgid "Premium Channel" -msgstr "Premiumkanal" +#: ../../include/photos.php:116 +msgid "Image file is empty." +msgstr "Bildefilen er tom." -#: ../../include/features.php:53 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal" +#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 +msgid "Unable to process image" +msgstr "Kan ikke behandle bildet" -#: ../../include/features.php:58 -msgid "Post Composition Features" -msgstr "Funksjoner for å lage innlegg" +#: ../../include/photos.php:219 +msgid "Photo storage failed." +msgstr "Bildelagring mislyktes." -#: ../../include/features.php:60 -msgid "Use Markdown" -msgstr "Bruk Markdown" +#: ../../include/photos.php:426 +msgid "Upload New Photos" +msgstr "Last opp nye bilder" -#: ../../include/features.php:60 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Tillat bruk av \"Markdown\" til formatering av innlegg" +#: ../../include/enotify.php:57 ../../include/network.php:1613 +msgid "$Projectname Notification" +msgstr "$Projectname varsling" -#: ../../include/features.php:61 -msgid "Large Photos" -msgstr "Store bilder" +#: ../../include/enotify.php:58 ../../include/network.php:1614 +msgid "$projectname" +msgstr "$projectname" -#: ../../include/features.php:61 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Inkluder store (640px) miniatyrbilder i innlegg. Hvis denne ikke er skrudd på, bruk små (320px) miniatyrbilder." +#: ../../include/enotify.php:60 ../../include/network.php:1616 +msgid "Thank You," +msgstr "Tusen takk," -#: ../../include/features.php:62 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisk import av kanalinnhold fra andre kanaler eller strømmer" +#: ../../include/enotify.php:62 ../../include/network.php:1618 +#, php-format +msgid "%s Administrator" +msgstr "%s administrator" -#: ../../include/features.php:63 -msgid "Even More Encryption" -msgstr "Enda mer kryptering" +#: ../../include/enotify.php:96 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../include/features.php:63 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel" +#: ../../include/enotify.php:100 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Notify] Ny melding mottatt hos %s" -#: ../../include/features.php:64 -msgid "Enable voting tools" -msgstr "Skru på verktøy for å stemme" +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s sendte deg en ny privat melding på %3$s." -#: ../../include/features.php:64 -msgid "Provide a class of post which others can vote on" -msgstr "Tilby en type innlegg som andre kan stemme på" +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s sendte deg %2$s." -#: ../../include/features.php:65 -msgid "Flag Adult Photos" -msgstr "Flagge bilder for voksne" +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "en privat melding" -#: ../../include/features.php:65 -msgid "Provide photo edit option to hide adult photos from default album view" -msgstr "Gi foto en valgmulighet for å skjule bilder for voksne fra visning i standardalbum" +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger." -#: ../../include/features.php:70 -msgid "Network and Stream Filtering" -msgstr "Nettverk- og strømfiltrering" +#: ../../include/enotify.php:158 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]a %4$s[/zrl]" -#: ../../include/features.php:71 -msgid "Search by Date" -msgstr "Søk etter dato" +#: ../../include/enotify.php:166 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]%4$s's %5$s[/zrl]" -#: ../../include/features.php:71 -msgid "Ability to select posts by date ranges" -msgstr "Mulighet for å velge innlegg etter datoområde" +#: ../../include/enotify.php:175 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]din %4$s[/zrl]" -#: ../../include/features.php:72 -msgid "Collections Filter" -msgstr "Filter for samlinger" +#: ../../include/enotify.php:186 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Red:Notify] Kommentar til samtale #%1$d av %2$s" -#: ../../include/features.php:72 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Skru på miniprogram for å vise Nettverksinnlegg bare fra valgte samlinger" +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s kommenterte på et element eller en samtale du følger" -#: ../../include/features.php:73 -msgid "Save search terms for re-use" -msgstr "Lagre søkeuttrykk for senere bruk" +#: ../../include/enotify.php:190 ../../include/enotify.php:205 +#: ../../include/enotify.php:231 ../../include/enotify.php:249 +#: ../../include/enotify.php:263 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Vennligst besøk %s for å se og/eller svare i samtalen" -#: ../../include/features.php:74 -msgid "Network Personal Tab" -msgstr "Nettverk personlig fane" +#: ../../include/enotify.php:196 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Notify] %s skrev et innlegg på din profilvegg" -#: ../../include/features.php:74 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i" +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s skrev et innlegg på din profilvegg på %3$s" -#: ../../include/features.php:75 -msgid "Network New Tab" -msgstr "Nettverk Ny fane" +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s skrev et innlegg på [zrl=%3$s]din vegg[/zrl]" -#: ../../include/features.php:75 -msgid "Enable tab to display all new Network activity" -msgstr "Skru på fane for å vise all ny nettverksaktivitet" +#: ../../include/enotify.php:224 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Notify] %s merket deg" -#: ../../include/features.php:76 -msgid "Affinity Tool" -msgstr "Nærhetsverktøy" +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s merket deg på %3$s" -#: ../../include/features.php:76 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrer strømaktiviteten etter releasjonsdybde" +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]merket deg[/zrl]." -#: ../../include/features.php:77 -msgid "Suggest Channels" -msgstr "Foreslå kanaler" +#: ../../include/enotify.php:238 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Notify] %1$s prikket deg" -#: ../../include/features.php:77 -msgid "Show channel suggestions" -msgstr "Vis kanalforslag" +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s dyttet deg på %3$s" -#: ../../include/features.php:82 -msgid "Post/Comment Tools" -msgstr "Innlegg-/Kommentar-verktøy" +#: ../../include/enotify.php:240 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]dyttet deg[/zrl]." -#: ../../include/features.php:83 -msgid "Tagging" -msgstr "Merking" +#: ../../include/enotify.php:256 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Notify] %s merket ditt innlegg" -#: ../../include/features.php:83 -msgid "Ability to tag existing posts" -msgstr "Mulighet til å merke eksisterende meldinger" +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s merket ditt innlegg på %3$s" -#: ../../include/features.php:84 -msgid "Post Categories" -msgstr "Innleggskategorier" +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s merket [zrl=%3$s]ditt innlegg[/zrl]" -#: ../../include/features.php:84 -msgid "Add categories to your posts" -msgstr "Legg kategorier til dine innlegg" +#: ../../include/enotify.php:270 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Notify] Introduksjon mottatt" -#: ../../include/features.php:85 -msgid "Ability to file posts under folders" -msgstr "Mulighet til å sortere innlegg i mapper" +#: ../../include/enotify.php:271 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, du har mottatt en ny forespørsel om forbindelse fra '%2$s' hos %3$s" -#: ../../include/features.php:86 -msgid "Dislike Posts" -msgstr "Mislik innlegg" +#: ../../include/enotify.php:272 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, du mottok [zrl=%2$s]en ny forespørsel om forbindelse[/zrl] fra %3$s." -#: ../../include/features.php:86 -msgid "Ability to dislike posts/comments" -msgstr "Mulighet til å mislike innlegg/kommentarer" +#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kan besøke profilen deres på %s" -#: ../../include/features.php:87 -msgid "Star Posts" -msgstr "Stjerneinnlegg" +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse." -#: ../../include/features.php:87 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mulighet til å merke spesielle innlegg med en stjerne" +#: ../../include/enotify.php:285 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Notify] Venneforslag mottatt" -#: ../../include/features.php:88 -msgid "Tag Cloud" -msgstr "Merkelappsky" +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, du har mottatt en venneforespørsel fra '%2$s' hos %3$s" -#: ../../include/features.php:88 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Tilby en personlig merkelappsky på din kanalside" +#: ../../include/enotify.php:287 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, du har mottatt [zrl=%2$s]et venneforslaget[/zrl] angående %3$s fra %4$s. " -#: ../../include/items.php:382 ../../mod/like.php:270 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/bulksetclose.php:11 ../../index.php:392 -msgid "Permission denied" -msgstr "Tillatelse avvist" +#: ../../include/enotify.php:293 +msgid "Name:" +msgstr "Navn:" -#: ../../include/items.php:979 ../../include/items.php:1024 -msgid "(Unknown)" -msgstr "(Ukjent)" +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Bilde:" -#: ../../include/items.php:1181 -msgid "Visible to anybody on the internet." -msgstr "Synlig for enhver på Internett." +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget." -#: ../../include/items.php:1183 -msgid "Visible to you only." -msgstr "Synlig bare for deg." +#: ../../include/enotify.php:508 +msgid "[Red:Notify]" +msgstr "[Red:Notify]" -#: ../../include/items.php:1185 -msgid "Visible to anybody in this network." -msgstr "Synlig for enhver i dette nettverket." +#: ../../include/network.php:635 +msgid "view full size" +msgstr "vis full størrelse" -#: ../../include/items.php:1187 -msgid "Visible to anybody authenticated." -msgstr "Synlig for enhver som er autentisert." +#: ../../include/network.php:1660 ../../include/account.php:314 +#: ../../include/account.php:341 ../../include/account.php:401 +msgid "Administrator" +msgstr "Administrator" + +#: ../../include/network.php:1674 +msgid "No Subject" +msgstr "Uten emne" -#: ../../include/items.php:1189 +#: ../../include/bookmarks.php:35 #, php-format -msgid "Visible to anybody on %s." -msgstr "Synlig for alle på %s." +msgid "%1$s's bookmarks" +msgstr "%1$s sine bokmerker" -#: ../../include/items.php:1191 -msgid "Visible to all connections." -msgstr "Synlig for alle forbindelser." +#: ../../include/text.php:391 +msgid "prev" +msgstr "forrige" -#: ../../include/items.php:1193 -msgid "Visible to approved connections." -msgstr "Synlig for godkjente forbindelser." +#: ../../include/text.php:393 +msgid "first" +msgstr "første" -#: ../../include/items.php:1195 -msgid "Visible to specific connections." -msgstr "Synlig for spesifikke forbindelser." +#: ../../include/text.php:422 +msgid "last" +msgstr "siste" -#: ../../include/items.php:4023 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:167 ../../mod/admin.php:981 -#: ../../mod/admin.php:1181 -msgid "Item not found." -msgstr "Elementet ble ikke funnet." +#: ../../include/text.php:425 +msgid "next" +msgstr "neste" -#: ../../include/items.php:4476 ../../mod/group.php:38 ../../mod/group.php:140 -#: ../../mod/bulksetclose.php:51 -msgid "Collection not found." -msgstr "Samlingen ble ikke funnet." +#: ../../include/text.php:435 +msgid "older" +msgstr "eldre" -#: ../../include/items.php:4491 -msgid "Collection is empty." -msgstr "Samlingen er tom." +#: ../../include/text.php:437 +msgid "newer" +msgstr "nyere" -#: ../../include/items.php:4498 -#, php-format -msgid "Collection: %s" -msgstr "Samling: %s" +#: ../../include/text.php:775 +msgid "No connections" +msgstr "Ingen forbindelser" -#: ../../include/items.php:4509 +#: ../../include/text.php:787 #, php-format -msgid "Connection: %s" -msgstr "Forbindelse: %s" +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d forbindelse" +msgstr[1] "%d forbindelser" -#: ../../include/items.php:4512 -msgid "Connection not found." -msgstr "Forbindelsen ble ikke funnet." +#: ../../include/text.php:800 ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "Vis forbindelser" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Ofte" +#: ../../include/text.php:857 ../../include/text.php:869 +#: ../../include/apps.php:147 ../../include/nav.php:159 +#: ../../mod/search.php:38 +msgid "Search" +msgstr "Søk" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Hver time" +#: ../../include/text.php:858 ../../include/text.php:870 +#: ../../include/widgets.php:191 ../../mod/filer.php:49 +#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "Lagre" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "To ganger daglig" +#: ../../include/text.php:933 +msgid "poke" +msgstr "prikk" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Daglig" +#: ../../include/text.php:934 +msgid "ping" +msgstr "varsle" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Ukentlig" +#: ../../include/text.php:934 +msgid "pinged" +msgstr "varslet" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Månedlig" +#: ../../include/text.php:935 +msgid "prod" +msgstr "oppildne" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/text.php:935 +msgid "prodded" +msgstr "oppildnet" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/text.php:936 +msgid "slap" +msgstr "daske" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/text.php:936 +msgid "slapped" +msgstr "dasket" -#: ../../include/contact_selectors.php:79 ../../mod/id.php:12 -#: ../../mod/id.php:13 ../../mod/admin.php:812 ../../mod/admin.php:821 -#: ../../boot.php:1554 -msgid "Email" -msgstr "E-post" +#: ../../include/text.php:937 +msgid "finger" +msgstr "fingre" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/text.php:937 +msgid "fingered" +msgstr "fingret" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/text.php:938 +msgid "rebuff" +msgstr "tilbakevise" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../include/text.php:938 +msgid "rebuffed" +msgstr "tilbakeviste" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/text.php:948 +msgid "happy" +msgstr "glad" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/text.php:949 +msgid "sad" +msgstr "trist" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/text.php:950 +msgid "mellow" +msgstr "dempet" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Ingen mottaker angitt." +#: ../../include/text.php:951 +msgid "tired" +msgstr "trøtt" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[ikke noe emne]" +#: ../../include/text.php:952 +msgid "perky" +msgstr "oppkvikket" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kan ikke avgjøre avsender." +#: ../../include/text.php:953 +msgid "angry" +msgstr "sint" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Lagret innlegg kunne ikke bekreftes." +#: ../../include/text.php:954 +msgid "stupified" +msgstr "sløvet" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanalen er blokkert på dette nettstedet." +#: ../../include/text.php:955 +msgid "puzzled" +msgstr "forundret" -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Kanalplassering mangler." +#: ../../include/text.php:956 +msgid "interested" +msgstr "interessert" -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Svaret fra den andre kanalen var ikke komplett." +#: ../../include/text.php:957 +msgid "bitter" +msgstr "bitter" -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen er slettet og finnes ikke lenger." +#: ../../include/text.php:958 +msgid "cheerful" +msgstr "munter" -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protokollen er avskrudd." +#: ../../include/text.php:959 +msgid "alive" +msgstr "levende" -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "Kanaloppdagelse mislyktes." +#: ../../include/text.php:960 +msgid "annoyed" +msgstr "irritert" -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "lokal konto ble ikke funnet." +#: ../../include/text.php:961 +msgid "anxious" +msgstr "nervøs" -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Kan ikke lage forbindelse med deg selv." +#: ../../include/text.php:962 +msgid "cranky" +msgstr "gretten" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Lagre i mappe" +#: ../../include/text.php:963 +msgid "disturbed" +msgstr "foruroliget" -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Jeg vil delta" +#: ../../include/text.php:964 +msgid "frustrated" +msgstr "frustrert" -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Jeg deltar ikke" +#: ../../include/text.php:965 +msgid "depressed" +msgstr "lei seg" -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Jeg vil kanskje delta" +#: ../../include/text.php:966 +msgid "motivated" +msgstr "motivert" -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Jeg er enig" +#: ../../include/text.php:967 +msgid "relaxed" +msgstr "avslappet" -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Jeg er uenig" +#: ../../include/text.php:968 +msgid "surprised" +msgstr "overrasket" -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Jeg avstår" +#: ../../include/text.php:1144 +msgid "May" +msgstr "mai" -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Legg til stjerne" +#: ../../include/text.php:1247 +msgid "unknown.???" +msgstr "ukjent.???" -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Fjern stjerne" +#: ../../include/text.php:1248 +msgid "bytes" +msgstr "bytes" -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Skru av og på stjernestatus" +#: ../../include/text.php:1284 +msgid "remove category" +msgstr "fjern kategori" -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "stjernemerket" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Legg til merkelapp" +#: ../../include/text.php:1359 +msgid "remove from file" +msgstr "fjern fra fil" -#: ../../include/ItemObject.php:254 ../../mod/photos.php:947 -msgid "I like this (toggle)" -msgstr "Jeg liker dette (skru av og på)" +#: ../../include/text.php:1443 ../../include/text.php:1454 +msgid "Click to open/close" +msgstr "Klikk for å åpne/lukke" -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:305 -msgid "like" -msgstr "liker" +#: ../../include/text.php:1609 ../../mod/events.php:497 +msgid "Link to Source" +msgstr "Lenke til kilde" -#: ../../include/ItemObject.php:255 ../../mod/photos.php:948 -msgid "I don't like this (toggle)" -msgstr "Jeg liker ikke dette (skru av og på)" +#: ../../include/text.php:1630 ../../include/text.php:1701 +msgid "default" +msgstr "standard" -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:306 -msgid "dislike" -msgstr "misliker" +#: ../../include/text.php:1638 +msgid "Page layout" +msgstr "Sidens layout" -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Del dette" +#: ../../include/text.php:1638 +msgid "You can create your own with the layouts tool" +msgstr "Du kan lage din egen med layout-verktøyet" -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "del" +#: ../../include/text.php:1679 +msgid "Page content type" +msgstr "Sidens innholdstype" -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d kommentar" -msgstr[1] "%d kommentarer" +#: ../../include/text.php:1713 +msgid "Select an alternate language" +msgstr "Velg et annet språk" -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Vis %s sin profil - %s" +#: ../../include/text.php:1845 +msgid "activity" +msgstr "aktivitet" -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "til" +#: ../../include/text.php:2140 +msgid "Design Tools" +msgstr "Designverktøy" -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "via" +#: ../../include/text.php:2143 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Byggeklosser" -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "vegg-til-vegg" +#: ../../include/text.php:2144 ../../mod/menu.php:103 +msgid "Menus" +msgstr "Menyer" -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "via vegg-til-vegg:" +#: ../../include/text.php:2145 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Layout" -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Lagre bokmerker" +#: ../../include/text.php:2146 +msgid "Pages" +msgstr "Sider" -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Legg til i kalender" +#: ../../include/acl_selectors.php:239 +msgid "Visible to your default audience" +msgstr "Synlig for ditt standard publikum" -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Merk alle som sett" +#: ../../include/acl_selectors.php:240 +msgid "Show" +msgstr "Vis" -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1133 -msgctxt "noun" -msgid "Likes" -msgstr "Liker" +#: ../../include/acl_selectors.php:241 +msgid "Don't show" +msgstr "Ikke vis" -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1134 -msgctxt "noun" -msgid "Dislikes" -msgstr "Liker ikke" +#: ../../include/acl_selectors.php:247 ../../mod/filestorage.php:147 +#: ../../mod/chat.php:207 ../../mod/photos.php:592 ../../mod/photos.php:962 +#: ../../mod/events.php:708 ../../mod/thing.php:310 ../../mod/thing.php:356 +msgid "Permissions" +msgstr "Tillatelser" -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1139 +#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:361 +#: ../../mod/photos.php:1179 msgid "Close" msgstr "Lukk" -#: ../../include/ItemObject.php:665 ../../mod/photos.php:966 -#: ../../mod/photos.php:1084 -msgid "This is you" -msgstr "Dette er deg" +#: ../../include/attach.php:243 ../../include/attach.php:329 +msgid "Item was not found." +msgstr "Elementet ble ikke funnet." -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Bilde" +#: ../../include/attach.php:471 +msgid "No source file." +msgstr "Ingen kildefil." -#: ../../include/ItemObject.php:675 -msgid "Insert Link" -msgstr "Sett inn lenke" +#: ../../include/attach.php:489 +msgid "Cannot locate file to replace" +msgstr "Kan ikke finne filen som skal byttes ut" -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Video" +#: ../../include/attach.php:507 +msgid "Cannot locate file to revise/update" +msgstr "Finner ikke filen som skal revideres/oppdateres" -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Forskjellig" +#: ../../include/attach.php:632 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Filens størrelse overgår grensen på %d" -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD eller MM-DD" +#: ../../include/attach.php:645 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes." -#: ../../include/datetime.php:212 ../../mod/events.php:633 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Påkrevd" +#: ../../include/attach.php:793 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt." -#: ../../include/datetime.php:231 ../../boot.php:2356 -msgid "never" -msgstr "aldri" +#: ../../include/attach.php:806 +msgid "Stored file could not be verified. Upload failed." +msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "for mindre enn ett sekund siden" +#: ../../include/attach.php:854 ../../include/attach.php:870 +msgid "Path not available." +msgstr "Stien er ikke tilgjengelig." -#: ../../include/datetime.php:240 -msgid "year" -msgstr "år" +#: ../../include/attach.php:916 ../../include/attach.php:1069 +msgid "Empty pathname" +msgstr "Tomt sti-navn" -#: ../../include/datetime.php:240 -msgid "years" -msgstr "år" +#: ../../include/attach.php:942 +msgid "duplicate filename or path" +msgstr "duplikat av filnavn eller sti" -#: ../../include/datetime.php:241 -msgid "month" -msgstr "måned" +#: ../../include/attach.php:965 +msgid "Path not found." +msgstr "Stien ble ikke funnet." -#: ../../include/datetime.php:241 -msgid "months" -msgstr "måneder" +#: ../../include/attach.php:1023 +msgid "mkdir failed." +msgstr "mkdir mislyktes." -#: ../../include/datetime.php:242 -msgid "week" -msgstr "uke" +#: ../../include/attach.php:1027 +msgid "database storage failed." +msgstr "databaselagring mislyktes." -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "uker" +#: ../../include/attach.php:1075 +msgid "Empty path" +msgstr "Tom sti" -#: ../../include/datetime.php:243 -msgid "day" -msgstr "dag" +#: ../../include/import.php:23 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes." -#: ../../include/datetime.php:243 -msgid "days" -msgstr "dager" +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "Kanalkloning mislyktes. Import mislyktes." -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "time" +#: ../../include/import.php:80 ../../mod/import.php:138 +msgid "Cloned channel not found. Import failed." +msgstr "Klonet kanal ble ikke funnet. Import mislyktes." -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "timer" +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "laget et nytt innlegg" -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "minutt" +#: ../../include/notify.php:21 +#, php-format +msgid "commented on %s's post" +msgstr "kommenterte på %s sitt innlegg" -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "minutter" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Ny side" -#: ../../include/datetime.php:246 -msgid "second" -msgstr "sekund" +#: ../../include/page_widgets.php:39 ../../mod/layouts.php:188 +#: ../../mod/webpages.php:187 ../../mod/blocks.php:159 +msgid "View" +msgstr "Vis" -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "sekunder" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Handlinger" -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s siden" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Sidelenke" -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$s sin fødselsdag" +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Tittel" -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gratulerer med dagen, %1$s !" +#: ../../include/page_widgets.php:44 ../../mod/layouts.php:181 +#: ../../mod/menu.php:110 ../../mod/webpages.php:192 ../../mod/blocks.php:150 +msgid "Created" +msgstr "Laget" -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nytt vindu" +#: ../../include/page_widgets.php:45 ../../mod/layouts.php:182 +#: ../../mod/menu.php:111 ../../mod/webpages.php:193 ../../mod/blocks.php:151 +msgid "Edited" +msgstr "Endret" -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane" +#: ../../include/photo/photo_driver.php:705 ../../mod/photos.php:94 +#: ../../mod/photos.php:660 ../../mod/profile_photo.php:146 +#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:376 +msgid "Profile Photos" +msgstr "Profilbilder" -#: ../../include/Contact.php:215 ../../mod/admin.php:726 -#, php-format -msgid "User '%s' deleted" -msgstr "Brukeren '%s' er slettet" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 +msgid "Male" +msgstr "Mannlig" -#: ../../include/bb2diaspora.php:349 -msgid "Attachments:" -msgstr "Vedlegg:" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 +msgid "Female" +msgstr "Kvinnelig" -#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "For tiden mann" -#: ../../include/bb2diaspora.php:430 -msgid "Hubzilla event notification:" -msgstr "Hubzilla hendelsesvarsling:" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "For tiden kvinne" -#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 -msgid "Starts:" -msgstr "Starter:" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "For det meste mann" -#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Slutter:" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "For det meste kvinne" -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 -msgid "Logout" -msgstr "Logg ut" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transkjønnet" -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Avslutt denne økten" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "interkjønnet" -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Hjem" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksuell" -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Dine innlegg og samtaler" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafroditt" -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Din profilside" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Intetkjønn" -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Endre profiler" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Ubestemt" -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Håndter/endre profiler" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Ubestemt" -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Endre din profil" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Menn" -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Dine bilder" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Kvinner" -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Dine filer" +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Homo" -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbisk" -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Dine chatterom" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Ingen preferanse" -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Dine bokmerker" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Biseksuell" -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Dine websider" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autoseksuell" -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 -msgid "Login" -msgstr "Logg inn" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Avholdende" -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Logg på" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Jomfru" -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klikk for å logge ut" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Avviker" -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Fjernautentisering" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetisj" -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Klikk for å godkjennes mot din hjemme-hub" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Masse" -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Hjemmeside" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Ikke-seksuell" -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 -msgid "Register" -msgstr "Registrer" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Enslig" -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Lag en konto" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Ensom" -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 -msgid "Help" -msgstr "Hjelp" +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Tilgjengelig" -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Hjelp og dokumentasjon" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Ikke tilgjengelig" -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Programmer, verktøy, lenker, spill" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Er forelsket" -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../include/text.php:832 ../../include/text.php:844 -#: ../../mod/search.php:34 -msgid "Search" -msgstr "Søk" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Betatt" -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Søk stedets innhold" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Sammen med" -#: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:353 -msgid "Directory" -msgstr "Katalog" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Utro" -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanalkatalog" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Sexavhengig" -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" +#: ../../include/profile_selectors.php:80 ../../include/identity.php:390 +#: ../../include/identity.php:391 ../../include/identity.php:398 +#: ../../include/widgets.php:429 ../../mod/connedit.php:569 +#: ../../mod/settings.php:337 ../../mod/settings.php:341 +#: ../../mod/settings.php:342 ../../mod/settings.php:345 +#: ../../mod/settings.php:356 +msgid "Friends" +msgstr "Venner" -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "Din matrix" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Venner med frynsegoder" -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Merk alle matrix-varsler som sett" +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Tilfeldig" -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Kanalhjem" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Forlovet" -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Kanalhjem" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Gift" -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Merk alle kanalvarsler som sett" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Gift i fantasien" -#: ../../include/nav.php:187 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Forbindelser" +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partnere" -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Varsel" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Samboer" -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Varsler" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Samboer" -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Se alle varsler" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Lykkelig" -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Merk alle systemvarsler som sett" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Ikke på utkikk" -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Melding" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Partnerbytte" -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Privat post" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Bedratt" -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Se alle private meldinger" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Separert" -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Merk alle private meldinger som sett" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Ustabilt" -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "Innboks" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Skilt" -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Utboks" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Skilt i fantasien" -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:472 -msgid "Events" -msgstr "Hendelser" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Enke" -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Kalender" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Usikkert" -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Se alle hendelser" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Det er komplisert" -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Merk alle hendelser som sett" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Bryr meg ikke" -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:164 -msgid "Channel Manager" -msgstr "Kanalstyring" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Spør meg" -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Håndter dine kanaler" +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Innebygget innhold" -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Konto-/kanal-innstillinger" +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Innbygging avskrudd" -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Administrator" +#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Nettstedsoppsett og -konfigurasjon" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 +msgid "Starts:" +msgstr "Starter:" -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@navn, @merkelapp, innhold" +#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 +msgid "Finishes:" +msgstr "Slutter:" -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Vennligst vent..." +#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 +#: ../../include/identity.php:992 ../../mod/directory.php:302 +#: ../../mod/events.php:701 +msgid "Location:" +msgstr "Plassering:" -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Merkelapper" +#: ../../include/event.php:766 +msgid "This event has been added to your calendar." +msgstr "Denne hendelsen er lagt til i din kalender." -#: ../../include/taxonomy.php:282 -msgid "Keywords" -msgstr "Nøkkelord" +#: ../../include/event.php:953 +msgid "Not specified" +msgstr "Ikke spesifisert" -#: ../../include/taxonomy.php:303 -msgid "have" -msgstr "har" +#: ../../include/event.php:954 +msgid "Needs Action" +msgstr "Trenger handling" -#: ../../include/taxonomy.php:303 -msgid "has" -msgstr "har" +#: ../../include/event.php:955 +msgid "Completed" +msgstr "Ferdig" -#: ../../include/taxonomy.php:304 -msgid "want" -msgstr "ønsker" +#: ../../include/event.php:956 +msgid "In Process" +msgstr "Igang" -#: ../../include/taxonomy.php:304 -msgid "wants" -msgstr "ønsker" +#: ../../include/event.php:957 +msgid "Cancelled" +msgstr "Avbrutt" -#: ../../include/taxonomy.php:305 -msgid "likes" -msgstr "liker" +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Nettstedsadministrator" -#: ../../include/taxonomy.php:306 -msgid "dislikes" -msgstr "misliker" +#: ../../include/apps.php:130 +msgid "Address Book" +msgstr "Adressebok" -#: ../../include/activities.php:39 -msgid " and " -msgstr "og" +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1497 +msgid "Login" +msgstr "Logg inn" -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "offentlig profil" +#: ../../include/apps.php:132 ../../include/nav.php:200 +#: ../../mod/manage.php:160 +msgid "Channel Manager" +msgstr "Kanalstyring" -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s endret %2$s til “%3$s”" +#: ../../include/apps.php:133 +msgid "Matrix" +msgstr "Matrix" -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besøk %1$s sitt %2$s" +#: ../../include/apps.php:134 ../../include/widgets.php:553 +#: ../../include/nav.php:202 ../../mod/admin.php:1033 ../../mod/admin.php:1233 +msgid "Settings" +msgstr "Innstillinger" -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s har oppdatert %2$s, endret %3$s." +#: ../../include/apps.php:137 ../../include/nav.php:177 +msgid "Channel Home" +msgstr "Kanalhjem" -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Denne hendelsen er lagt til i din kalender." +#: ../../include/apps.php:138 ../../include/identity.php:1226 +#: ../../include/identity.php:1343 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" -#: ../../include/api.php:1081 -msgid "Public Timeline" -msgstr "Offentlig tidslinje" +#: ../../include/apps.php:140 ../../include/nav.php:196 +#: ../../mod/events.php:526 +msgid "Events" +msgstr "Hendelser" -#: ../../include/network.php:620 -msgid "view full size" -msgstr "vis full størrelse" +#: ../../include/apps.php:141 ../../include/nav.php:162 +msgid "Directory" +msgstr "Katalog" -#: ../../include/dir_fns.php:134 -msgid "Directory Options" -msgstr "Kataloginnstillinger" +#: ../../include/apps.php:142 ../../include/nav.php:154 ../../mod/help.php:202 +#: ../../mod/help.php:207 ../../mod/layouts.php:176 +msgid "Help" +msgstr "Hjelp" -#: ../../include/dir_fns.php:135 -msgid "Alphabetic" -msgstr "Alfabetisk" +#: ../../include/apps.php:143 ../../include/nav.php:188 +msgid "Mail" +msgstr "Melding" -#: ../../include/dir_fns.php:136 -msgid "Reverse Alphabetic" -msgstr "Omvendt alfabetisk" +#: ../../include/apps.php:144 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Stemning" -#: ../../include/dir_fns.php:137 -msgid "Newest to Oldest" -msgstr "Nyest til eldst" +#: ../../include/apps.php:146 ../../include/nav.php:97 +msgid "Chat" +msgstr "Chat" -#: ../../include/dir_fns.php:138 -msgid "Oldest to Newest" -msgstr "Eldst til nyest" +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Undersøk" -#: ../../include/dir_fns.php:139 -msgid "Sort" -msgstr "Sorter" +#: ../../include/apps.php:149 +msgid "Suggest" +msgstr "Forreslå" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Trygt modus" +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Tilfeldig kanal" -#: ../../include/dir_fns.php:145 -msgid "Public Forums Only" -msgstr "Bare offentlige forum" +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Inviter" -#: ../../include/dir_fns.php:146 -msgid "This Website Only" -msgstr "Kun dette nettstedet" +#: ../../include/apps.php:152 +msgid "Features" +msgstr "Funksjoner" -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Innebygget innhold" +#: ../../include/apps.php:153 ../../mod/id.php:28 +msgid "Language" +msgstr "Språk" -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Innbygging avskrudd" +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Innlegg" -#: ../../include/zot.php:679 -msgid "Invalid data packet" -msgstr "Ugyldig datapakke" +#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 +#: ../../mod/id.php:19 +msgid "Profile Photo" +msgstr "Profilbilde" -#: ../../include/zot.php:695 -msgid "Unable to verify channel signature" -msgstr "Ikke i stand til å sjekke kanalsignaturen" +#: ../../include/apps.php:247 ../../mod/settings.php:84 +#: ../../mod/settings.php:609 +msgid "Update" +msgstr "Oppdater" -#: ../../include/zot.php:2079 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Ikke i stand til å bekrefte signaturen til %s" +#: ../../include/apps.php:247 +msgid "Install" +msgstr "Installer" -#: ../../include/auth.php:130 +#: ../../include/apps.php:252 +msgid "Purchase" +msgstr "Kjøp" + +#: ../../include/auth.php:131 msgid "Logged out." msgstr "Logget ut." -#: ../../include/auth.php:271 +#: ../../include/auth.php:272 msgid "Failed authentication" msgstr "Mislykket autentisering" -#: ../../include/auth.php:285 ../../mod/openid.php:190 +#: ../../include/auth.php:286 ../../mod/openid.php:189 msgid "Login failed." msgstr "Innlogging mislyktes." -#: ../../include/enotify.php:41 -msgid "Hubzilla Notification" -msgstr "Hubzilla-varsling" +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" +msgstr "Vedlegg:" -#: ../../include/enotify.php:42 -msgid "hubzilla" -msgstr "hubzilla" +#: ../../include/bb2diaspora.php:461 +msgid "$Projectname event notification:" +msgstr "$Projectname hendelsesvarsling:" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:793 +#: ../../include/bbcode.php:796 ../../include/bbcode.php:801 +#: ../../include/bbcode.php:804 ../../include/bbcode.php:807 +#: ../../include/bbcode.php:810 ../../include/bbcode.php:815 +#: ../../include/bbcode.php:818 ../../include/bbcode.php:823 +#: ../../include/bbcode.php:826 ../../include/bbcode.php:829 +#: ../../include/bbcode.php:832 +msgid "Image/photo" +msgstr "Bilde/fotografi" -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Tusen takk," +#: ../../include/bbcode.php:162 ../../include/bbcode.php:843 +msgid "Encrypted content" +msgstr "Kryptert innhold" -#: ../../include/enotify.php:46 +#: ../../include/bbcode.php:179 #, php-format -msgid "%s Administrator" -msgstr "%s administrator" +msgid "Install %s element: " +msgstr "Installer %s element:" -#: ../../include/enotify.php:81 +#: ../../include/bbcode.php:183 #, php-format -msgid "%s " -msgstr "%s " +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet." -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notify] Ny melding mottatt hos %s" +#: ../../include/bbcode.php:193 ../../mod/impel.php:37 +msgid "webpage" +msgstr "nettside" -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s sendte deg en ny privat melding på %3$s." +#: ../../include/bbcode.php:196 ../../mod/impel.php:47 +msgid "layout" +msgstr "layout" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s sendte deg %2$s." +#: ../../include/bbcode.php:199 ../../mod/impel.php:42 +msgid "block" +msgstr "byggekloss" -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "en privat melding" +#: ../../include/bbcode.php:202 ../../mod/impel.php:54 +msgid "menu" +msgstr "meny" -#: ../../include/enotify.php:89 +#: ../../include/bbcode.php:257 #, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger." +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s skrev følgende %2$s %3$s" -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]a %4$s[/zrl]" +#: ../../include/bbcode.php:259 ../../mod/tagger.php:51 +msgid "post" +msgstr "innlegg" -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../include/bbcode.php:547 +msgid "Different viewers will see this text differently" +msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]din %4$s[/zrl]" +#: ../../include/bbcode.php:754 +msgid "$1 spoiler" +msgstr "$1 avsløring" -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Notify] Kommentar til samtale #%1$d av %2$s" +#: ../../include/bbcode.php:781 +msgid "$1 wrote:" +msgstr "$1 skrev:" -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s kommenterte på et element eller en samtale du følger" +#: ../../include/account.php:27 +msgid "Not a valid email address" +msgstr "Ikke en gyldig e-postadresse" -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Vennligst besøk %s for å se og/eller svare i samtalen" +#: ../../include/account.php:29 +msgid "Your email domain is not among those allowed on this site" +msgstr "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet" -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Notify] %s skrev et innlegg på din profilvegg" +#: ../../include/account.php:35 +msgid "Your email address is already registered at this site." +msgstr "Din e-postadresse er allerede registrert på dette nettstedet." -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s skrev et innlegg på din profilvegg på %3$s" +#: ../../include/account.php:67 +msgid "An invitation is required." +msgstr "En invitasjon er påkrevd." -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s skrev et innlegg på [zrl=%3$s]din vegg[/zrl]" +#: ../../include/account.php:71 +msgid "Invitation could not be verified." +msgstr "Invitasjon kunne ikke bekreftes." -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notify] %s merket deg" +#: ../../include/account.php:121 +msgid "Please enter the required information." +msgstr "Vennligst skriv inn nødvendig informasjon." -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s merket deg på %3$s" +#: ../../include/account.php:188 +msgid "Failed to store account information." +msgstr "Mislyktes med å lagre kontoinformasjon." -#: ../../include/enotify.php:212 +#: ../../include/account.php:246 #, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]merket deg[/zrl]." +msgid "Registration confirmation for %s" +msgstr "Registreringsbekreftelse for %s" -#: ../../include/enotify.php:225 +#: ../../include/account.php:312 #, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notify] %1$s prikket deg" +msgid "Registration request at %s" +msgstr "Registreringsforespørsel hos %s" -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s dyttet deg på %3$s" +#: ../../include/account.php:336 +msgid "your registration password" +msgstr "ditt registreringspassord" -#: ../../include/enotify.php:227 +#: ../../include/account.php:339 ../../include/account.php:399 #, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]dyttet deg[/zrl]." +msgid "Registration details for %s" +msgstr "Registreringsdetaljer for %s" -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notify] %s merket ditt innlegg" +#: ../../include/account.php:408 +msgid "Account approved." +msgstr "Konto godkjent." -#: ../../include/enotify.php:244 +#: ../../include/account.php:447 #, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s merket ditt innlegg på %3$s" +msgid "Registration revoked for %s" +msgstr "Registrering trukket tilbake for %s" -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s merket [zrl=%3$s]ditt innlegg[/zrl]" +#: ../../include/account.php:492 +msgid "Account verified. Please login." +msgstr "Konto bekreftet. Vennligst logg inn." -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notify] Introduksjon mottatt" +#: ../../include/account.php:705 ../../include/account.php:707 +msgid "Click here to upgrade." +msgstr "Klikk her for å oppgradere." -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, du har mottatt en ny forespørsel om forbindelse fra '%2$s' hos %3$s" +#: ../../include/account.php:713 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan." -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, du mottok [zrl=%2$s]en ny forespørsel om forbindelse[/zrl] fra %3$s." +#: ../../include/account.php:718 +msgid "This action is not available under your subscription plan." +msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kan besøke profilen deres på %s" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanalen er blokkert på dette nettstedet." -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse." +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Kanalplassering mangler." -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notify] Venneforslag mottatt" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Svaret fra den andre kanalen var ikke komplett." -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, du har mottatt en venneforespørsel fra '%2$s' hos %3$s" +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanalen er slettet og finnes ikke lenger." -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, du har mottatt [zrl=%2$s]et venneforslaget[/zrl] angående %3$s fra %4$s. " +#: ../../include/follow.php:154 +msgid "Protocol disabled." +msgstr "Protokollen er avskrudd." -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Navn:" +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "Kanaloppdagelse mislyktes." -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Bilde:" +#: ../../include/follow.php:186 +msgid "local account not found." +msgstr "lokal konto ble ikke funnet." -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget." +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Kan ikke lage forbindelse med deg selv." -#: ../../include/enotify.php:499 -msgid "[Red:Notify]" -msgstr "[Red:Notify]" +#: ../../include/security.php:345 +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 "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn." #: ../../include/contact_widgets.php:14 #, php-format @@ -3007,7 +3030,7 @@ msgid_plural "%d invitations available" msgstr[0] "%d invitasjon tilgjengelig" msgstr[1] "%d invitasjoner tilgjengelig" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:415 msgid "Advanced" msgstr "Avansert" @@ -3027,13 +3050,13 @@ msgstr "Forbindelse/Følg" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Eksempler: Ola Nordmann, fisking" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:349 ../../mod/directory.php:354 +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 +#: ../../mod/directory.php:384 ../../mod/connections.php:266 msgid "Find" msgstr "Finn" -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:353 -#: ../../mod/suggest.php:59 +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 +#: ../../mod/suggest.php:60 msgid "Channel Suggestions" msgstr "Kanalforslag" @@ -3049,1835 +3072,1917 @@ msgstr "Inviter venner" msgid "Advanced example: name=fred and country=iceland" msgstr "Avansert eksempel: navn=fred og land=island" -#: ../../include/contact_widgets.php:125 +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98 +#: ../../include/widgets.php:306 +msgid "Everything" +msgstr "Alt" + +#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:271 +#: ../../include/widgets.php:35 +msgid "Categories" +msgstr "Kategorier" + +#: ../../include/contact_widgets.php:128 #, php-format msgid "%d connection in common" msgid_plural "%d connections in common" msgstr[0] "%d forbindelse felles" msgstr[1] "%d forbindelser felles" -#: ../../include/contact_widgets.php:130 +#: ../../include/contact_widgets.php:133 msgid "show more" msgstr "vis mer" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Synlig for ditt standard publikum" +#: ../../include/group.php:26 +msgid "" +"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." +msgstr "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn." -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Vis" +#: ../../include/group.php:232 +msgid "Add new connections to this collection (privacy group)" +msgstr "Legg nye forbindelser til denne samlingen (personverngruppe)" -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Ikke vis" +#: ../../include/group.php:251 ../../mod/admin.php:788 +msgid "All Channels" +msgstr "Alle kanaler" -#: ../../include/acl_selectors.php:248 ../../mod/events.php:652 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:146 -#: ../../mod/photos.php:559 ../../mod/photos.php:922 -msgid "Permissions" -msgstr "Tillatelser" +#: ../../include/group.php:273 +msgid "edit" +msgstr "endre" -#: ../../include/photos.php:86 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" +#: ../../include/group.php:295 +msgid "Collections" +msgstr "Samlinger" -#: ../../include/photos.php:93 -msgid "Image file is empty." -msgstr "Bildefilen er tom." +#: ../../include/group.php:296 +msgid "Edit collection" +msgstr "Endre samling" -#: ../../include/photos.php:121 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Kan ikke behandle bildet" +#: ../../include/group.php:297 +msgid "Add new collection" +msgstr "Legg til ny samling" -#: ../../include/photos.php:194 -msgid "Photo storage failed." -msgstr "Bildelagring mislyktes." +#: ../../include/group.php:298 +msgid "Channels not in any collection" +msgstr "Kanaler som ikke er i noen samling" -#: ../../include/photos.php:360 -msgid "Upload New Photos" -msgstr "Last opp nye bilder" +#: ../../include/group.php:300 ../../include/widgets.php:274 +msgid "add" +msgstr "legg til" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:93 -msgid "Male" -msgstr "Mannlig" +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" +msgstr "Merkelapper" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:95 -msgid "Female" -msgstr "Kvinnelig" +#: ../../include/taxonomy.php:294 +msgid "Keywords" +msgstr "Nøkkelord" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "For tiden mann" +#: ../../include/taxonomy.php:315 +msgid "have" +msgstr "har" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "For tiden kvinne" +#: ../../include/taxonomy.php:315 +msgid "has" +msgstr "har" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "For det meste mann" +#: ../../include/taxonomy.php:316 +msgid "want" +msgstr "ønsker" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "For det meste kvinne" +#: ../../include/taxonomy.php:316 +msgid "wants" +msgstr "ønsker" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transkjønnet" +#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 +msgid "like" +msgstr "liker" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "interkjønnet" +#: ../../include/taxonomy.php:317 +msgid "likes" +msgstr "liker" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksuell" +#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "misliker" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafroditt" +#: ../../include/taxonomy.php:318 +msgid "dislikes" +msgstr "misliker" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Intetkjønn" +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Kataloginnstillinger" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Ubestemt" +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Trygt modus" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:814 -msgid "Other" -msgstr "Annen" +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/connedit.php:631 +#: ../../mod/connedit.php:659 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:386 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:106 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 +msgid "No" +msgstr "Nei" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Ubestemt" +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:388 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:105 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 +msgid "Yes" +msgstr "Ja" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Menn" +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Bare offentlige forum" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Kvinner" +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Kun dette nettstedet" -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Homo" +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisk" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Mangler navn" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Ingen preferanse" +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Navnet er for langt" -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Biseksuell" +#: ../../include/identity.php:181 +msgid "No account identifier" +msgstr "Ingen kontoidentifikator" -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autoseksuell" +#: ../../include/identity.php:193 +msgid "Nickname is required." +msgstr "Kallenavn er påkrevd." -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Avholdende" +#: ../../include/identity.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Reservert kallenavn. Vennligst velg et annet." -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Jomfru" +#: ../../include/identity.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet." -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Avviker" +#: ../../include/identity.php:288 +msgid "Unable to retrieve created identity" +msgstr "Klarer ikke å hente den lagede identiteten" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisj" +#: ../../include/identity.php:346 +msgid "Default Profile" +msgstr "Standardprofil" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Masse" +#: ../../include/identity.php:745 +msgid "Requested channel is not available." +msgstr "Forespurt kanal er ikke tilgjengelig." -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Ikke-seksuell" +#: ../../include/identity.php:791 ../../mod/achievements.php:11 +#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29 +#: ../../mod/editblock.php:29 ../../mod/profile.php:16 +#: ../../mod/webpages.php:29 ../../mod/blocks.php:29 +#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 +#: ../../mod/connect.php:13 +msgid "Requested profile is not available." +msgstr "Forespurt profil er ikke tilgjengelig." -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Enslig" +#: ../../include/identity.php:954 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Endre profilbilde" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Ensom" +#: ../../include/identity.php:960 +msgid "Profiles" +msgstr "Profiler" -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Tilgjengelig" +#: ../../include/identity.php:960 +msgid "Manage/edit profiles" +msgstr "Håndtere/endre profiler" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Ikke tilgjengelig" +#: ../../include/identity.php:961 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Lag ny profil" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Er forelsket" +#: ../../include/identity.php:964 ../../include/nav.php:90 +msgid "Edit Profile" +msgstr "Endre profil" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Betatt" +#: ../../include/identity.php:976 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Profilbilde" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Sammen med" +#: ../../include/identity.php:979 +msgid "visible to everybody" +msgstr "synlig for alle" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Utro" +#: ../../include/identity.php:980 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Endre synlighet" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Sexavhengig" +#: ../../include/identity.php:996 ../../include/identity.php:1236 +msgid "Gender:" +msgstr "Kjønn:" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Venner med frynsegoder" +#: ../../include/identity.php:997 ../../include/identity.php:1280 +msgid "Status:" +msgstr "Status:" -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Tilfeldig" +#: ../../include/identity.php:998 ../../include/identity.php:1291 +msgid "Homepage:" +msgstr "Hjemmeside:" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Forlovet" +#: ../../include/identity.php:999 +msgid "Online Now" +msgstr "Online nå" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Gift" +#: ../../include/identity.php:1083 ../../include/identity.php:1161 +#: ../../mod/ping.php:318 +msgid "g A l F d" +msgstr "g A l F d" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Gift i fantasien" +#: ../../include/identity.php:1084 ../../include/identity.php:1162 +msgid "F d" +msgstr "F d" -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partnere" +#: ../../include/identity.php:1129 ../../include/identity.php:1201 +#: ../../mod/ping.php:341 +msgid "[today]" +msgstr "[idag]" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Samboer" +#: ../../include/identity.php:1140 +msgid "Birthday Reminders" +msgstr "Fødselsdagspåminnnelser" -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Samboer" +#: ../../include/identity.php:1141 +msgid "Birthdays this week:" +msgstr "Fødselsdager denne uken:" -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Lykkelig" +#: ../../include/identity.php:1194 +msgid "[No description]" +msgstr "[Ingen beskrivelse]" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Ikke på utkikk" +#: ../../include/identity.php:1212 +msgid "Event Reminders" +msgstr "Hendelsespåminnelser" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Partnerbytte" +#: ../../include/identity.php:1213 +msgid "Events this week:" +msgstr "Hendelser denne uken:" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Bedratt" +#: ../../include/identity.php:1234 ../../mod/settings.php:1026 +msgid "Full Name:" +msgstr "Fullt navn:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Separert" +#: ../../include/identity.php:1241 +msgid "Like this channel" +msgstr "Lik denne kanalen" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Ustabilt" +#: ../../include/identity.php:1265 +msgid "j F, Y" +msgstr "j F, Y" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Skilt" +#: ../../include/identity.php:1266 +msgid "j F" +msgstr "j F" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Skilt i fantasien" +#: ../../include/identity.php:1273 +msgid "Birthday:" +msgstr "Fødselsdag:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Enke" +#: ../../include/identity.php:1277 ../../mod/directory.php:297 +msgid "Age:" +msgstr "Alder:" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Usikkert" +#: ../../include/identity.php:1286 +#, php-format +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Det er komplisert" +#: ../../include/identity.php:1289 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Seksuell preferanse:" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Bryr meg ikke" +#: ../../include/identity.php:1293 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Hjemby:" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Spør meg" +#: ../../include/identity.php:1295 +msgid "Tags:" +msgstr "Merkelapper:" -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Nettstedsadministrator" +#: ../../include/identity.php:1297 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Politiske synspunkter:" -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Adressebok" +#: ../../include/identity.php:1299 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "Stemning" +#: ../../include/identity.php:1301 ../../mod/directory.php:315 +msgid "About:" +msgstr "Om:" -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Undersøk" +#: ../../include/identity.php:1303 +msgid "Hobbies/Interests:" +msgstr "Hobbyer/interesser:" -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Forreslå" +#: ../../include/identity.php:1305 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Liker:" -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Tilfeldig kanal" +#: ../../include/identity.php:1307 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Misliker:" -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Inviter" +#: ../../include/identity.php:1309 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformasjon og sosiale nettverk:" -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Funksjoner" +#: ../../include/identity.php:1311 +msgid "My other channels:" +msgstr "Mine andre kanaler:" -#: ../../include/apps.php:153 ../../mod/id.php:25 -msgid "Language" -msgstr "Språk" +#: ../../include/identity.php:1313 +msgid "Musical interests:" +msgstr "Musikkinteresse:" -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Innlegg" +#: ../../include/identity.php:1315 +msgid "Books, literature:" +msgstr "Bøker, litteratur:" -#: ../../include/apps.php:155 ../../mod/id.php:14 ../../mod/id.php:15 -#: ../../mod/id.php:16 -msgid "Profile Photo" -msgstr "Profilbilde" +#: ../../include/identity.php:1317 +msgid "Television:" +msgstr "TV:" -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:608 -msgid "Update" -msgstr "Oppdater" +#: ../../include/identity.php:1319 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/kultur/underholdning:" -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installer" +#: ../../include/identity.php:1321 +msgid "Love/Romance:" +msgstr "Kjærlighet/romantikk:" -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Kjøp" +#: ../../include/identity.php:1323 +msgid "Work/employment:" +msgstr "Arbeid/sysselsetting:" -#: ../../include/text.php:318 -msgid "prev" -msgstr "forrige" +#: ../../include/identity.php:1325 +msgid "School/education:" +msgstr "Skole/utdannelse:" -#: ../../include/text.php:320 -msgid "first" -msgstr "første" +#: ../../include/identity.php:1345 +msgid "Like this thing" +msgstr "Lik denne tingen" -#: ../../include/text.php:349 -msgid "last" -msgstr "siste" +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Ingen mottaker angitt." -#: ../../include/text.php:352 -msgid "next" -msgstr "neste" +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[ikke noe emne]" -#: ../../include/text.php:362 -msgid "older" -msgstr "eldre" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kan ikke avgjøre avsender." -#: ../../include/text.php:364 -msgid "newer" -msgstr "nyere" - -#: ../../include/text.php:748 -msgid "No connections" -msgstr "Ingen forbindelser" +#: ../../include/message.php:203 +msgid "Stored post could not be verified." +msgstr "Lagret innlegg kunne ikke bekreftes." -#: ../../include/text.php:762 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d forbindelse" -msgstr[1] "%d forbindelser" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "Lagre i mappe" -#: ../../include/text.php:775 ../../mod/viewconnections.php:86 -msgid "View Connections" -msgstr "Vis forbindelser" +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Jeg vil delta" -#: ../../include/text.php:911 -msgid "poke" -msgstr "prikk" +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "Jeg deltar ikke" -#: ../../include/text.php:912 -msgid "ping" -msgstr "varsle" +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Jeg vil kanskje delta" -#: ../../include/text.php:912 -msgid "pinged" -msgstr "varslet" +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Jeg er enig" -#: ../../include/text.php:913 -msgid "prod" -msgstr "oppildne" +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "Jeg er uenig" -#: ../../include/text.php:913 -msgid "prodded" -msgstr "oppildnet" +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Jeg avstår" -#: ../../include/text.php:914 -msgid "slap" -msgstr "daske" +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Legg til stjerne" -#: ../../include/text.php:914 -msgid "slapped" -msgstr "dasket" +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Fjern stjerne" -#: ../../include/text.php:915 -msgid "finger" -msgstr "fingre" +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Skru av og på stjernestatus" -#: ../../include/text.php:915 -msgid "fingered" -msgstr "fingret" +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "stjernemerket" -#: ../../include/text.php:916 -msgid "rebuff" -msgstr "tilbakevise" +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Legg til merkelapp" -#: ../../include/text.php:916 -msgid "rebuffed" -msgstr "tilbakeviste" +#: ../../include/ItemObject.php:254 ../../mod/photos.php:987 +msgid "I like this (toggle)" +msgstr "Jeg liker dette (skru av og på)" -#: ../../include/text.php:926 -msgid "happy" -msgstr "glad" +#: ../../include/ItemObject.php:255 ../../mod/photos.php:988 +msgid "I don't like this (toggle)" +msgstr "Jeg liker ikke dette (skru av og på)" -#: ../../include/text.php:927 -msgid "sad" -msgstr "trist" +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Del dette" -#: ../../include/text.php:928 -msgid "mellow" -msgstr "dempet" +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "del" -#: ../../include/text.php:929 -msgid "tired" -msgstr "trøtt" +#: ../../include/ItemObject.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d kommentar" +msgstr[1] "%d kommentarer" -#: ../../include/text.php:930 -msgid "perky" -msgstr "oppkvikket" +#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 +#, php-format +msgid "View %s's profile - %s" +msgstr "Vis %s sin profil - %s" -#: ../../include/text.php:931 -msgid "angry" -msgstr "sint" +#: ../../include/ItemObject.php:299 +msgid "to" +msgstr "til" -#: ../../include/text.php:932 -msgid "stupified" -msgstr "sløvet" +#: ../../include/ItemObject.php:300 +msgid "via" +msgstr "via" -#: ../../include/text.php:933 -msgid "puzzled" -msgstr "forundret" +#: ../../include/ItemObject.php:301 +msgid "Wall-to-Wall" +msgstr "vegg-til-vegg" -#: ../../include/text.php:934 -msgid "interested" -msgstr "interessert" +#: ../../include/ItemObject.php:302 +msgid "via Wall-To-Wall:" +msgstr "via vegg-til-vegg:" -#: ../../include/text.php:935 -msgid "bitter" -msgstr "bitter" +#: ../../include/ItemObject.php:305 +msgid "Delivery Report" +msgstr "Leveringsrapport" -#: ../../include/text.php:936 -msgid "cheerful" -msgstr "munter" +#: ../../include/ItemObject.php:339 +msgid "Save Bookmarks" +msgstr "Lagre bokmerker" -#: ../../include/text.php:937 -msgid "alive" -msgstr "levende" +#: ../../include/ItemObject.php:340 +msgid "Add to Calendar" +msgstr "Legg til i kalender" -#: ../../include/text.php:938 -msgid "annoyed" -msgstr "irritert" +#: ../../include/ItemObject.php:349 +msgid "Mark all seen" +msgstr "Merk alle som sett" -#: ../../include/text.php:939 -msgid "anxious" -msgstr "nervøs" +#: ../../include/ItemObject.php:355 ../../mod/photos.php:1173 +msgctxt "noun" +msgid "Likes" +msgstr "Liker" -#: ../../include/text.php:940 -msgid "cranky" -msgstr "gretten" +#: ../../include/ItemObject.php:356 ../../mod/photos.php:1174 +msgctxt "noun" +msgid "Dislikes" +msgstr "Liker ikke" -#: ../../include/text.php:941 -msgid "disturbed" -msgstr "foruroliget" +#: ../../include/ItemObject.php:671 ../../mod/photos.php:1006 +#: ../../mod/photos.php:1124 +msgid "This is you" +msgstr "Dette er deg" -#: ../../include/text.php:942 -msgid "frustrated" -msgstr "frustrert" +#: ../../include/ItemObject.php:680 +msgid "Image" +msgstr "Bilde" -#: ../../include/text.php:943 -msgid "depressed" -msgstr "lei seg" +#: ../../include/ItemObject.php:681 +msgid "Insert Link" +msgstr "Sett inn lenke" -#: ../../include/text.php:944 -msgid "motivated" -msgstr "motivert" +#: ../../include/ItemObject.php:682 +msgid "Video" +msgstr "Video" -#: ../../include/text.php:945 -msgid "relaxed" -msgstr "avslappet" +#: ../../include/items.php:423 ../../mod/like.php:280 ../../mod/dreport.php:6 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 +#: ../../mod/import_items.php:114 ../../index.php:360 +msgid "Permission denied" +msgstr "Tillatelse avvist" -#: ../../include/text.php:946 -msgid "surprised" -msgstr "overrasket" +#: ../../include/items.php:1128 ../../include/items.php:1174 +msgid "(Unknown)" +msgstr "(Ukjent)" -#: ../../include/text.php:1111 -msgid "Monday" -msgstr "mandag" +#: ../../include/items.php:1371 +msgid "Visible to anybody on the internet." +msgstr "Synlig for enhver på Internett." -#: ../../include/text.php:1111 -msgid "Tuesday" -msgstr "tirsdag" +#: ../../include/items.php:1373 +msgid "Visible to you only." +msgstr "Synlig bare for deg." -#: ../../include/text.php:1111 -msgid "Wednesday" -msgstr "onsdag" +#: ../../include/items.php:1375 +msgid "Visible to anybody in this network." +msgstr "Synlig for enhver i dette nettverket." -#: ../../include/text.php:1111 -msgid "Thursday" -msgstr "torsdag" +#: ../../include/items.php:1377 +msgid "Visible to anybody authenticated." +msgstr "Synlig for enhver som er autentisert." -#: ../../include/text.php:1111 -msgid "Friday" -msgstr "fredag" +#: ../../include/items.php:1379 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Synlig for alle på %s." -#: ../../include/text.php:1111 -msgid "Saturday" -msgstr "lørdag" +#: ../../include/items.php:1381 +msgid "Visible to all connections." +msgstr "Synlig for alle forbindelser." -#: ../../include/text.php:1111 -msgid "Sunday" -msgstr "søndag" +#: ../../include/items.php:1383 +msgid "Visible to approved connections." +msgstr "Synlig for godkjente forbindelser." -#: ../../include/text.php:1115 -msgid "January" -msgstr "januar" +#: ../../include/items.php:1385 +msgid "Visible to specific connections." +msgstr "Synlig for spesifikke forbindelser." -#: ../../include/text.php:1115 -msgid "February" -msgstr "februar" +#: ../../include/items.php:4263 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/admin.php:127 +#: ../../mod/admin.php:979 ../../mod/admin.php:1179 ../../mod/thing.php:86 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Elementet ble ikke funnet." -#: ../../include/text.php:1115 -msgid "March" -msgstr "mars" +#: ../../include/items.php:4772 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Samlingen ble ikke funnet." -#: ../../include/text.php:1115 -msgid "April" -msgstr "april" +#: ../../include/items.php:4788 +msgid "Collection is empty." +msgstr "Samlingen er tom." -#: ../../include/text.php:1115 -msgid "May" -msgstr "mai" +#: ../../include/items.php:4795 +#, php-format +msgid "Collection: %s" +msgstr "Samling: %s" -#: ../../include/text.php:1115 -msgid "June" -msgstr "juni" +#: ../../include/items.php:4805 ../../mod/connedit.php:658 +#, php-format +msgid "Connection: %s" +msgstr "Forbindelse: %s" -#: ../../include/text.php:1115 -msgid "July" -msgstr "juli" +#: ../../include/items.php:4807 +msgid "Connection not found." +msgstr "Forbindelsen ble ikke funnet." -#: ../../include/text.php:1115 -msgid "August" -msgstr "august" +#: ../../include/widgets.php:91 ../../include/nav.php:157 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Apper" -#: ../../include/text.php:1115 -msgid "September" -msgstr "september" +#: ../../include/widgets.php:92 +msgid "System" +msgstr "System" -#: ../../include/text.php:1115 -msgid "October" -msgstr "oktober" +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Lag personlig app" -#: ../../include/text.php:1115 -msgid "November" -msgstr "november" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Endre personlig app" -#: ../../include/text.php:1115 -msgid "December" -msgstr "desember" +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "Ignorer/Skjul" -#: ../../include/text.php:1193 -msgid "unknown.???" -msgstr "ukjent.???" +#: ../../include/widgets.php:143 ../../mod/connections.php:125 +msgid "Suggestions" +msgstr "Forslag" -#: ../../include/text.php:1194 -msgid "bytes" -msgstr "bytes" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Se mer..." -#: ../../include/text.php:1230 -msgid "remove category" -msgstr "fjern kategori" +#: ../../include/widgets.php:165 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du har %1$.0f av %2$.0f tillate forbindelser." -#: ../../include/text.php:1299 -msgid "remove from file" -msgstr "fjern fra fil" +#: ../../include/widgets.php:171 +msgid "Add New Connection" +msgstr "Legg til ny forbindelse" -#: ../../include/text.php:1375 ../../include/text.php:1386 -#: ../../mod/connedit.php:635 -msgid "Click to open/close" -msgstr "Klikk for å åpne/lukke" +#: ../../include/widgets.php:172 +msgid "Enter the channel address" +msgstr "Skriv kanal-adressen" -#: ../../include/text.php:1534 ../../mod/events.php:444 -msgid "Link to Source" -msgstr "Lenke til kilde" +#: ../../include/widgets.php:173 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Eksempel: ola.nordmann@eksempel.no, http://eksempel.no/karinordmann" -#: ../../include/text.php:1553 -msgid "Select a page layout: " -msgstr "Velg en side-layout:" +#: ../../include/widgets.php:189 +msgid "Notes" +msgstr "Merknader" -#: ../../include/text.php:1556 ../../include/text.php:1616 -msgid "default" -msgstr "standard" +#: ../../include/widgets.php:265 +msgid "Remove term" +msgstr "Fjern begrep" -#: ../../include/text.php:1589 -msgid "Page content type: " -msgstr "Sidens innholdstype:" +#: ../../include/widgets.php:348 +msgid "Archives" +msgstr "Arkiv" -#: ../../include/text.php:1628 -msgid "Select an alternate language" -msgstr "Velg et annet språk" +#: ../../include/widgets.php:427 ../../mod/connedit.php:567 +msgid "Me" +msgstr "Meg" -#: ../../include/text.php:1760 -msgid "activity" -msgstr "aktivitet" +#: ../../include/widgets.php:428 ../../mod/connedit.php:568 +msgid "Family" +msgstr "Familie" -#: ../../include/text.php:2047 -msgid "Design" -msgstr "Formgivning" +#: ../../include/widgets.php:430 ../../mod/connedit.php:570 +msgid "Acquaintances" +msgstr "Bekjente" -#: ../../include/text.php:2050 -msgid "Blocks" -msgstr "Byggeklosser" +#: ../../include/widgets.php:431 ../../mod/connedit.php:571 +#: ../../mod/connections.php:88 ../../mod/connections.php:103 +msgid "All" +msgstr "Alle" -#: ../../include/text.php:2051 -msgid "Menus" -msgstr "Menyer" +#: ../../include/widgets.php:450 +msgid "Refresh" +msgstr "Forny" -#: ../../include/text.php:2052 -msgid "Layouts" -msgstr "Layout" +#: ../../include/widgets.php:484 +msgid "Account settings" +msgstr "Kontoinnstillinger" -#: ../../include/text.php:2053 -msgid "Pages" -msgstr "Sider" +#: ../../include/widgets.php:490 +msgid "Channel settings" +msgstr "Kanalinnstillinger" -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Mangler romnavn" +#: ../../include/widgets.php:496 +msgid "Additional features" +msgstr "Tilleggsfunksjoner" -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Duplikat romnavn" +#: ../../include/widgets.php:502 +msgid "Feature/Addon settings" +msgstr "Funksjons-/Tilleggsinnstillinger" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Ugyldig rom-spesifisering" +#: ../../include/widgets.php:508 +msgid "Display settings" +msgstr "Visningsinnstillinger" -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Rommet ble ikke funnet." +#: ../../include/widgets.php:514 +msgid "Connected apps" +msgstr "Tilkoblede app-er" -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "Rommet er fullt" +#: ../../include/widgets.php:520 +msgid "Export channel" +msgstr "Eksporter kanal" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan se min normale strøm og innlegg" +#: ../../include/widgets.php:529 ../../mod/connedit.php:658 +msgid "Connection Default Permissions" +msgstr "Forbindelsens standard tillatelser" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan se min standard kanalprofil" +#: ../../include/widgets.php:537 +msgid "Premium Channel Settings" +msgstr "Premiumkanal-innstillinger" -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kan se mine fotoalbum" +#: ../../include/widgets.php:567 +msgid "Private Mail Menu" +msgstr "Meny for privat post" -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kan se mine forbindelser" +#: ../../include/widgets.php:569 +msgid "Check Mail" +msgstr "Sjekk meldinger" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kan se mitt fillager" +#: ../../include/widgets.php:575 +msgid "Combined View" +msgstr "Kombinert visning" -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kan se mine websider" +#: ../../include/widgets.php:580 ../../include/nav.php:191 +msgid "Inbox" +msgstr "Innboks" -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Kan sende meg deres kanalstrøm og innlegg" +#: ../../include/widgets.php:585 ../../include/nav.php:192 +msgid "Outbox" +msgstr "Utboks" -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan lage innlegg på min kanalside (\"vegg\")" +#: ../../include/widgets.php:590 ../../include/nav.php:193 +msgid "New Message" +msgstr "Ny melding" -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Kan kommentere på eller like mine innlegg" +#: ../../include/widgets.php:609 ../../include/widgets.php:621 +msgid "Conversations" +msgstr "Samtaler" -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kan sende meg private meldinger" +#: ../../include/widgets.php:613 +msgid "Received Messages" +msgstr "Mottatte meldinger" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kan legge inn bilder i mine fotoalbum" +#: ../../include/widgets.php:617 +msgid "Sent Messages" +msgstr "Sendte meldinger" -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kan like/ikke like forskjellige greier" +#: ../../include/widgets.php:631 +msgid "No messages." +msgstr "Ingen meldinger." -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profiler og andre ting enn innlegg/kommentarer" +#: ../../include/widgets.php:648 +msgid "Delete conversation" +msgstr "Slett samtale" -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan videresende til alle mine kanalkontakter via @navn i innlegg" +#: ../../include/widgets.php:650 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avansert - nyttig for å lage forumkanaler for grupper" +#: ../../include/widgets.php:738 +msgid "Chat Rooms" +msgstr "Chatrom" -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" +#: ../../include/widgets.php:758 +msgid "Bookmarked Chatrooms" +msgstr "Bokmerkede chatrom" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kan skrive til mitt fillager" +#: ../../include/widgets.php:778 +msgid "Suggested Chatrooms" +msgstr "Foreslåtte chatrom" -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kan endre mine websider" +#: ../../include/widgets.php:905 ../../include/widgets.php:963 +msgid "photo/image" +msgstr "foto/bilde" -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler" +#: ../../include/widgets.php:1058 ../../include/widgets.php:1060 +msgid "Rate Me" +msgstr "Vurder meg" -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Litt avansert - svært nyttig i åpne fellesskap" +#: ../../include/widgets.php:1064 +msgid "View Ratings" +msgstr "Vis vurderinger" -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kan administrere mine kanalressurser" +#: ../../include/widgets.php:1075 +msgid "Public Hubs" +msgstr "Offentlige huber" -#: ../../include/permissions.php:48 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør" +#: ../../include/widgets.php:1123 +msgid "Forums" +msgstr "Forum" -#: ../../include/permissions.php:810 -msgid "Social Networking" -msgstr "Sosialt nettverk" +#: ../../include/widgets.php:1150 +msgid "Tasks" +msgstr "Oppgaver" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Ganske offentlig" +#: ../../include/widgets.php:1159 +msgid "Documentation" +msgstr "Dokumentasjon" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Begrenset" +#: ../../include/widgets.php:1161 +msgid "Project/Site Information" +msgstr "Prosjekt-/Nettstedsinformasjon" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Privat" +#: ../../include/widgets.php:1162 +msgid "For Members" +msgstr "For medlemmer" -#: ../../include/permissions.php:811 -msgid "Community Forum" -msgstr "Forum for fellesskap" +#: ../../include/widgets.php:1163 +msgid "For Administrators" +msgstr "For administratorer" -#: ../../include/permissions.php:812 -msgid "Feed Republish" -msgstr "Republisering av strømmet innhold" +#: ../../include/widgets.php:1164 +msgid "For Developers" +msgstr "For utviklere" -#: ../../include/permissions.php:813 -msgid "Special Purpose" -msgstr "Spesiell bruk" +#: ../../include/widgets.php:1189 ../../mod/admin.php:410 +msgid "Site" +msgstr "Nettsted" -#: ../../include/permissions.php:813 -msgid "Celebrity/Soapbox" -msgstr "Kjendis/Talerstol" +#: ../../include/widgets.php:1190 +msgid "Accounts" +msgstr "Kontoer" -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Gruppelager" +#: ../../include/widgets.php:1191 ../../mod/admin.php:939 +msgid "Channels" +msgstr "Kanaler" -#: ../../include/permissions.php:814 -msgid "Custom/Expert Mode" -msgstr "Tilpasset/Ekspertmodus" +#: ../../include/widgets.php:1192 ../../mod/admin.php:1031 +#: ../../mod/admin.php:1071 +msgid "Plugins" +msgstr "Tilleggsfunksjoner" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "En standardtekst om hva du bør gjøre som ny her" +#: ../../include/widgets.php:1193 ../../mod/admin.php:1231 +#: ../../mod/admin.php:1265 +msgid "Themes" +msgstr "Temaer" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." +#: ../../include/widgets.php:1194 +msgid "Inspect queue" +msgstr "Inspiser kø" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Lag en ny kanal" +#: ../../include/widgets.php:1195 +msgid "Profile Config" +msgstr "Profilinnstillinger" -#: ../../mod/manage.php:165 -msgid "Current Channel" -msgstr "Gjeldende kanal" +#: ../../include/widgets.php:1196 +msgid "DB updates" +msgstr "Databaseoppdateringer" -#: ../../mod/manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Bytt til en av dine kanaler ved å velge den." +#: ../../include/widgets.php:1214 ../../include/widgets.php:1220 +#: ../../mod/admin.php:1350 +msgid "Logs" +msgstr "Logger" -#: ../../mod/manage.php:168 -msgid "Default Channel" -msgstr "Standardkanal" +#: ../../include/widgets.php:1218 ../../include/nav.php:210 +msgid "Admin" +msgstr "Administrator" -#: ../../mod/manage.php:169 -msgid "Make Default" -msgstr "Gjør til standard" +#: ../../include/widgets.php:1219 +msgid "Plugin Features" +msgstr "Tilleggsfunksjoner" -#: ../../mod/manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nye meldinger" +#: ../../include/widgets.php:1221 +msgid "User registrations waiting for confirmation" +msgstr "Brukerregistreringer som venter på bekreftelse" -#: ../../mod/manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nye introduksjoner" +#: ../../include/zot.php:677 +msgid "Invalid data packet" +msgstr "Ugyldig datapakke" -#: ../../mod/manage.php:175 -msgid "Delegated Channels" -msgstr "Delegerte kanaler" +#: ../../include/zot.php:693 +msgid "Unable to verify channel signature" +msgstr "Ikke i stand til å sjekke kanalsignaturen" -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "Navn er påkrevd" +#: ../../include/zot.php:2213 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Ikke i stand til å bekrefte signaturen til %s" -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Nøkkel og hemmelighet er påkrevd" +#: ../../include/zot.php:3511 +msgid "invalid target signature" +msgstr "Målets signatur er ugyldig" -#: ../../mod/settings.php:124 -msgid "Diaspora Policy Settings updated." -msgstr "Innstillinger for Diaspora retningslinjer er oppdatert." +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1496 +msgid "Logout" +msgstr "Logg ut" -#: ../../mod/settings.php:232 -msgid "Passwords do not match. Password unchanged." -msgstr "Passordene stemmer ikke overens. Passord uforandret." +#: ../../include/nav.php:82 ../../include/nav.php:114 +msgid "End this session" +msgstr "Avslutt denne økten" -#: ../../mod/settings.php:236 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tomme passord er ikke tillatt. Passord uforandret." +#: ../../include/nav.php:85 ../../include/nav.php:145 +msgid "Home" +msgstr "Hjem" -#: ../../mod/settings.php:250 -msgid "Password changed." -msgstr "Passord endret." +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Dine innlegg og samtaler" -#: ../../mod/settings.php:252 -msgid "Password update failed. Please try again." -msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Din profilside" -#: ../../mod/settings.php:266 -msgid "Not valid email." -msgstr "Ikke gyldig e-post." +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Endre profiler" -#: ../../mod/settings.php:269 -msgid "Protected email address. Cannot change to that email." -msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen." +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Håndter/endre profiler" -#: ../../mod/settings.php:278 -msgid "System failure storing new email. Please try again." -msgstr "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen." +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Endre din profil" -#: ../../mod/settings.php:517 -msgid "Settings updated." -msgstr "Innstillinger oppdatert." +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Dine bilder" -#: ../../mod/settings.php:573 ../../mod/api.php:106 ../../mod/admin.php:419 -#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1556 -msgid "No" -msgstr "Nei" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Dine filer" -#: ../../mod/settings.php:573 ../../mod/api.php:105 ../../mod/admin.php:421 -#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1556 -msgid "Yes" -msgstr "Ja" +#: ../../include/nav.php:97 +msgid "Your chatrooms" +msgstr "Dine chatterom" -#: ../../mod/settings.php:581 ../../mod/settings.php:607 -#: ../../mod/settings.php:643 -msgid "Add application" -msgstr "Legg til program" +#: ../../include/nav.php:103 +msgid "Your bookmarks" +msgstr "Dine bokmerker" -#: ../../mod/settings.php:584 -msgid "Name of application" -msgstr "Navn på program" +#: ../../include/nav.php:107 +msgid "Your webpages" +msgstr "Dine websider" -#: ../../mod/settings.php:585 ../../mod/settings.php:611 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../include/nav.php:111 +msgid "Sign in" +msgstr "Logg på" -#: ../../mod/settings.php:585 ../../mod/settings.php:586 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisk laget - kan endres om du vil. Største lengde 20" +#: ../../include/nav.php:128 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klikk for å logge ut" -#: ../../mod/settings.php:586 ../../mod/settings.php:612 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../include/nav.php:131 +msgid "Remote authentication" +msgstr "Fjernautentisering" -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -msgid "Redirect" -msgstr "Omdirigering" +#: ../../include/nav.php:131 +msgid "Click to authenticate to your home hub" +msgstr "Klikk for å godkjennes mot din hjemme-hub" -#: ../../mod/settings.php:587 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette" +#: ../../include/nav.php:145 +msgid "Home Page" +msgstr "Hjemmeside" -#: ../../mod/settings.php:588 ../../mod/settings.php:614 -msgid "Icon url" -msgstr "Ikon-URL" +#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1473 +msgid "Register" +msgstr "Registrer" -#: ../../mod/settings.php:588 -msgid "Optional" -msgstr "Valgfritt" +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Lag en konto" -#: ../../mod/settings.php:599 -msgid "You can't edit this application." -msgstr "Du kan ikke endre dette programmet." +#: ../../include/nav.php:154 +msgid "Help and documentation" +msgstr "Hjelp og dokumentasjon" -#: ../../mod/settings.php:642 -msgid "Connected Apps" -msgstr "Tilkoblede app-er" +#: ../../include/nav.php:157 +msgid "Applications, utilities, links, games" +msgstr "Programmer, verktøy, lenker, spill" -#: ../../mod/settings.php:646 -msgid "Client key starts with" -msgstr "Klientnøkkel starter med" +#: ../../include/nav.php:159 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" -#: ../../mod/settings.php:647 -msgid "No name" -msgstr "Ikke noe navn" +#: ../../include/nav.php:162 +msgid "Channel Directory" +msgstr "Kanalkatalog" -#: ../../mod/settings.php:648 -msgid "Remove authorization" -msgstr "Fjern tillatelse" +#: ../../include/nav.php:174 +msgid "Grid" +msgstr "Nett" -#: ../../mod/settings.php:662 -msgid "No feature settings configured" -msgstr "Ingen funksjonsinnstillinger er konfigurert" +#: ../../include/nav.php:174 +msgid "Your grid" +msgstr "Ditt nett" -#: ../../mod/settings.php:678 -msgid "Feature/Addon Settings" -msgstr "Funksjons-/Tilleggsinnstillinger" +#: ../../include/nav.php:175 +msgid "Mark all grid notifications seen" +msgstr "Marker alle nettvarsler som sett" -#: ../../mod/settings.php:680 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Innstillinger for den innebygde Diaspora-etterlikningen" +#: ../../include/nav.php:177 +msgid "Channel home" +msgstr "Kanalhjem" -#: ../../mod/settings.php:681 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Tillat ethvert Diaspora-medlem å kommentere på dine offentlige innlegg." +#: ../../include/nav.php:178 +msgid "Mark all channel notifications seen" +msgstr "Merk alle kanalvarsler som sett" -#: ../../mod/settings.php:682 -msgid "Diaspora Policy Settings" -msgstr "Innstillinger for Diaspora retningslinjer" +#: ../../include/nav.php:181 ../../mod/connections.php:260 +msgid "Connections" +msgstr "Forbindelser" -#: ../../mod/settings.php:683 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Stopp dine merkelapper/emneknagger/hashtagger fra å bli omdirigert til andre nettsteder" +#: ../../include/nav.php:184 +msgid "Notices" +msgstr "Varsel" -#: ../../mod/settings.php:707 -msgid "Account Settings" -msgstr "Kontoinnstillinger" +#: ../../include/nav.php:184 +msgid "Notifications" +msgstr "Varsler" -#: ../../mod/settings.php:708 -msgid "Enter New Password:" -msgstr "Skriv nytt passord:" +#: ../../include/nav.php:185 +msgid "See all notifications" +msgstr "Se alle varsler" -#: ../../mod/settings.php:709 -msgid "Confirm New Password:" -msgstr "Bekreft nytt passord:" +#: ../../include/nav.php:186 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Merk alle systemvarsler som sett" -#: ../../mod/settings.php:709 -msgid "Leave password fields blank unless changing" -msgstr "La passordfeltene stå blanke om det ikke skal endres" +#: ../../include/nav.php:188 +msgid "Private mail" +msgstr "Privat post" -#: ../../mod/settings.php:711 ../../mod/settings.php:1046 -msgid "Email Address:" -msgstr "E-postadresse:" +#: ../../include/nav.php:189 +msgid "See all private messages" +msgstr "Se alle private meldinger" -#: ../../mod/settings.php:712 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Slett konto" +#: ../../include/nav.php:190 +msgid "Mark all private messages seen" +msgstr "Merk alle private meldinger som sett" -#: ../../mod/settings.php:713 -msgid "Remove this account including all its channels" -msgstr "Slett denne kontoen inkludert alle dens kanaler" +#: ../../include/nav.php:196 +msgid "Event Calendar" +msgstr "Kalender" -#: ../../mod/settings.php:729 -msgid "Off" -msgstr "Av" +#: ../../include/nav.php:197 +msgid "See all events" +msgstr "Se alle hendelser" -#: ../../mod/settings.php:729 -msgid "On" -msgstr "På" +#: ../../include/nav.php:198 +msgid "Mark all events seen" +msgstr "Merk alle hendelser som sett" -#: ../../mod/settings.php:736 -msgid "Additional Features" -msgstr "Ekstra funksjoner" +#: ../../include/nav.php:200 +msgid "Manage Your Channels" +msgstr "Håndter dine kanaler" -#: ../../mod/settings.php:760 -msgid "Connector Settings" -msgstr "Koblingsinnstillinger" +#: ../../include/nav.php:202 +msgid "Account/Channel Settings" +msgstr "Konto-/kanal-innstillinger" -#: ../../mod/settings.php:799 -msgid "No special theme for mobile devices" -msgstr "Ikke noe spesielt tema for mobile enheter" +#: ../../include/nav.php:210 +msgid "Site Setup and Configuration" +msgstr "Nettstedsoppsett og -konfigurasjon" -#: ../../mod/settings.php:802 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Eksperimentelt)" +#: ../../include/nav.php:246 +msgid "@name, #tag, ?doc, content" +msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" -#: ../../mod/settings.php:805 ../../mod/admin.php:391 -msgid "mobile" -msgstr "mobil" +#: ../../include/nav.php:247 +msgid "Please wait..." +msgstr "Vennligst vent..." -#: ../../mod/settings.php:841 -msgid "Display Settings" -msgstr "Visningsinnstillinger" +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "En standardtekst om hva du bør gjøre som ny her" -#: ../../mod/settings.php:847 -msgid "Display Theme:" -msgstr "Visningstema:" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakten ble ikke funnet." -#: ../../mod/settings.php:848 -msgid "Mobile Theme:" -msgstr "Mobiltema:" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Venneforespørsel sendt." -#: ../../mod/settings.php:849 -msgid "Enable user zoom on mobile devices" -msgstr "Skru på brukerstyrt zoom på mobile enheter" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Foreslå venner" -#: ../../mod/settings.php:850 -msgid "Update browser every xx seconds" -msgstr "Oppdater nettleser hvert xx sekunder" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Foreslå en venn for %s" -#: ../../mod/settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 sekunder, ikke noe maksimum" +#: ../../mod/directory.php:59 ../../mod/display.php:13 ../../mod/search.php:13 +#: ../../mod/photos.php:453 ../../mod/ratings.php:82 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Offentlig tilgang avvist." -#: ../../mod/settings.php:851 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maksimalt antall samtaler å laste samtidig:" +#: ../../mod/directory.php:234 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d vurdering" +msgstr[1] "%d vurderinger" -#: ../../mod/settings.php:851 -msgid "Maximum of 100 items" -msgstr "Maksimum 100 elementer" +#: ../../mod/directory.php:245 +msgid "Gender: " +msgstr "Kjønn:" -#: ../../mod/settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "Vis emoticons (smilefjes) som bilder" +#: ../../mod/directory.php:247 +msgid "Status: " +msgstr "Status:" -#: ../../mod/settings.php:853 -msgid "Link post titles to source" -msgstr "Lenk innleggets tittel til kilden" +#: ../../mod/directory.php:249 +msgid "Homepage: " +msgstr "Hjemmeside:" -#: ../../mod/settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "Systemsidens layoutbehandler - (avansert)" +#: ../../mod/directory.php:308 ../../mod/events.php:699 +msgid "Description:" +msgstr "Beskrivelse:" -#: ../../mod/settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "Bruk blogg-/listemodus på kanalsiden" +#: ../../mod/directory.php:317 +msgid "Public Forum:" +msgstr "Offentlig forum:" -#: ../../mod/settings.php:857 ../../mod/settings.php:858 -msgid "(comments displayed separately)" -msgstr "(kommentarer vist separat)" +#: ../../mod/directory.php:320 +msgid "Keywords: " +msgstr "Nøkkelord:" -#: ../../mod/settings.php:858 -msgid "Use blog/list mode on matrix page" -msgstr "Bruk blogg-/listemodus på matrix-siden" +#: ../../mod/directory.php:323 +msgid "Don't suggest" +msgstr "Ikke foreslå" -#: ../../mod/settings.php:859 -msgid "Channel page max height of content (in pixels)" -msgstr "Kanalsidens makshøyde for innhold (i pixler)" +#: ../../mod/directory.php:325 +msgid "Common connections:" +msgstr "Felles forbindelser:" -#: ../../mod/settings.php:859 ../../mod/settings.php:860 -msgid "click to expand content exceeding this height" -msgstr "klikk for å utvide innhold som overstiger denne høyden" +#: ../../mod/directory.php:374 +msgid "Global Directory" +msgstr "Global katalog" -#: ../../mod/settings.php:860 -msgid "Matrix page max height of content (in pixels)" -msgstr "Matrix-sidens makshøyde for innholde (i pixler)" +#: ../../mod/directory.php:374 +msgid "Local Directory" +msgstr "Lokal katalog" -#: ../../mod/settings.php:894 -msgid "Nobody except yourself" -msgstr "Ingen unntatt deg selv" +#: ../../mod/directory.php:380 +msgid "Finding:" +msgstr "Finner:" -#: ../../mod/settings.php:895 -msgid "Only those you specifically allow" -msgstr "Bare de du spesifikt tillater" +#: ../../mod/directory.php:385 +msgid "next page" +msgstr "Neste side" -#: ../../mod/settings.php:896 -msgid "Approved connections" -msgstr "Godkjente forbindelser" +#: ../../mod/directory.php:385 +msgid "previous page" +msgstr "Forrige side" -#: ../../mod/settings.php:897 -msgid "Any connections" -msgstr "Enhver forbindelse" +#: ../../mod/directory.php:386 +msgid "Sort options" +msgstr "Sorteringsvalg" -#: ../../mod/settings.php:898 -msgid "Anybody on this website" -msgstr "Enhver ved dette nettstedet" +#: ../../mod/directory.php:387 +msgid "Alphabetic" +msgstr "Alfabetisk" -#: ../../mod/settings.php:899 -msgid "Anybody in this network" -msgstr "Enhver i dette nettverket" +#: ../../mod/directory.php:388 +msgid "Reverse Alphabetic" +msgstr "Omvendt alfabetisk" -#: ../../mod/settings.php:900 -msgid "Anybody authenticated" -msgstr "Enhver som er autentisert" +#: ../../mod/directory.php:389 +msgid "Newest to Oldest" +msgstr "Nyest til eldst" -#: ../../mod/settings.php:901 -msgid "Anybody on the internet" -msgstr "Enhver på Internett" +#: ../../mod/directory.php:390 +msgid "Oldest to Newest" +msgstr "Eldst til nyest" -#: ../../mod/settings.php:975 -msgid "Publish your default profile in the network directory" -msgstr "Publiser din standardprofil i nettverkskatalogen" +#: ../../mod/directory.php:407 +msgid "No entries (some entries may be hidden)." +msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." -#: ../../mod/settings.php:980 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?" +#: ../../mod/bookmarks.php:40 +msgid "Bookmark added" +msgstr "Bokmerke lagt til" -#: ../../mod/settings.php:984 ../../mod/profile_photo.php:366 -msgid "or" -msgstr "eller" +#: ../../mod/bookmarks.php:62 +msgid "My Bookmarks" +msgstr "Mine bokmerker" -#: ../../mod/settings.php:989 -msgid "Your channel address is" -msgstr "Din kanaladresse er" +#: ../../mod/bookmarks.php:73 +msgid "My Connections Bookmarks" +msgstr "Mine forbindelsers bokmerker" -#: ../../mod/settings.php:1037 -msgid "Channel Settings" -msgstr "Kanalinnstillinger" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protokollfeil. Ingen ID ble returnert." -#: ../../mod/settings.php:1044 -msgid "Basic Settings" -msgstr "Grunninnstillinger" +#: ../../mod/openid.php:72 ../../mod/openid.php:179 ../../mod/post.php:285 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Velkommen %s. Ekstern autentisering er vellykket." -#: ../../mod/settings.php:1047 -msgid "Your Timezone:" -msgstr "Din tidssone:" +#: ../../mod/block.php:27 ../../mod/page.php:36 +msgid "Invalid item." +msgstr "Ugyldig element." -#: ../../mod/settings.php:1048 -msgid "Default Post Location:" -msgstr "Standard plassering ved innlegg:" +#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29 +msgid "Channel not found." +msgstr "Kanalen ble ikke funnet." -#: ../../mod/settings.php:1048 -msgid "Geographical location to display on your posts" -msgstr "Geografisk plassering som vises på dine innlegg" +#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:214 +#: ../../mod/page.php:89 ../../index.php:237 +msgid "Page not found." +msgstr "Siden ikke funnet." -#: ../../mod/settings.php:1049 -msgid "Use Browser Location:" -msgstr "Bruk nettleseren sin plassering:" +#: ../../mod/id.php:11 +msgid "First Name" +msgstr "Fornavn" -#: ../../mod/settings.php:1051 -msgid "Adult Content" -msgstr "Voksent innhold" +#: ../../mod/id.php:12 +msgid "Last Name" +msgstr "Etternavn" -#: ../../mod/settings.php:1051 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)" +#: ../../mod/id.php:13 +msgid "Nickname" +msgstr "Kallenavn" -#: ../../mod/settings.php:1053 -msgid "Security and Privacy Settings" -msgstr "Sikkerhets- og personverninnstillinger" +#: ../../mod/id.php:14 +msgid "Full Name" +msgstr "Fullt navn" -#: ../../mod/settings.php:1055 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Dine tillatelser er allerede satt. Klikk for å se/justere." +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" +msgstr "Profilbilde 16px" -#: ../../mod/settings.php:1057 -msgid "Hide my online presence" -msgstr "Skjul min tilstedeværelse online" +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" +msgstr "Profilbilde 32px" -#: ../../mod/settings.php:1057 -msgid "Prevents displaying in your profile that you are online" -msgstr "Forhindrer visning på din profil av at du er online " +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" +msgstr "Profilbilde 48px" -#: ../../mod/settings.php:1059 -msgid "Simple Privacy Settings:" -msgstr "Enkle personverninnstillinger:" +#: ../../mod/id.php:23 +msgid "Profile Photo 64px" +msgstr "Profilbilde 64px" -#: ../../mod/settings.php:1060 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)" +#: ../../mod/id.php:24 +msgid "Profile Photo 80px" +msgstr "Profilbilde 80px" -#: ../../mod/settings.php:1061 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)" +#: ../../mod/id.php:25 +msgid "Profile Photo 128px" +msgstr "Profilbilde 128px" -#: ../../mod/settings.php:1062 -msgid "Private - default private, never open or public" -msgstr "Privat - standard er privat, aldri åpen eller offentlig" +#: ../../mod/id.php:26 +msgid "Timezone" +msgstr "Tidssone" -#: ../../mod/settings.php:1063 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blokkert - standard blokkert til/fra alle" +#: ../../mod/id.php:27 +msgid "Homepage URL" +msgstr "Hjemmeside URL" -#: ../../mod/settings.php:1065 -msgid "Allow others to tag your posts" -msgstr "Tillat andre å merke dine innlegg" +#: ../../mod/id.php:29 +msgid "Birth Year" +msgstr "Fødselsår" -#: ../../mod/settings.php:1065 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant" +#: ../../mod/id.php:30 +msgid "Birth Month" +msgstr "Fødselsmåne" -#: ../../mod/settings.php:1067 -msgid "Advanced Privacy Settings" -msgstr "Avanserte personverninnstillinger" +#: ../../mod/id.php:31 +msgid "Birth Day" +msgstr "Fødselsdag" -#: ../../mod/settings.php:1069 -msgid "Expire other channel content after this many days" -msgstr "Annet kanal innhold utløper etter så mange dager" +#: ../../mod/id.php:32 +msgid "Birthdate" +msgstr "Fødselsdato" -#: ../../mod/settings.php:1069 -msgid "0 or blank prevents expiration" -msgstr "0 eller blankt forhindrer utløp" +#: ../../mod/id.php:33 ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Kjønn" -#: ../../mod/settings.php:1070 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksimalt antall venneforespørsler per dag:" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Liker/Liker ikke" -#: ../../mod/settings.php:1070 -msgid "May reduce spam activity" -msgstr "Kan redusere søppelpostaktivitet" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Denne handlingen er begrenset til medlemmer." -#: ../../mod/settings.php:1071 -msgid "Default Post Permissions" -msgstr "Standard innleggstillatelser" +#: ../../mod/like.php:21 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Vennligst logg inn med din $Projectname ID eller registrer deg som et nytt $Projectname-medlem for å fortsette" -#: ../../mod/settings.php:1072 ../../mod/mitem.php:161 ../../mod/mitem.php:204 -msgid "(click to open/close)" -msgstr "(klikk for å åpne/lukke)" +#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165 +msgid "Invalid request." +msgstr "Ugyldig forespørsel." -#: ../../mod/settings.php:1076 -msgid "Channel permissions category:" -msgstr "Kategori med kanaltillatelser:" +#: ../../mod/like.php:142 +msgid "thing" +msgstr "ting" -#: ../../mod/settings.php:1082 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" +#: ../../mod/like.php:188 +msgid "Channel unavailable." +msgstr "Kanalen er utilgjengelig." -#: ../../mod/settings.php:1082 -msgid "Useful to reduce spamming" -msgstr "Nyttig for å redusere søppelpost" +#: ../../mod/like.php:236 +msgid "Previous action reversed." +msgstr "Forrige handling er omgjort." -#: ../../mod/settings.php:1085 -msgid "Notification Settings" -msgstr "Varslingsinnstillinger" +#: ../../mod/like.php:414 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s er enig med %2$s sin %3$s" -#: ../../mod/settings.php:1086 -msgid "By default post a status message when:" -msgstr "Legg inn en statusmelding når du:" +#: ../../mod/like.php:416 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s er ikke enig med %2$s sin %3$s" -#: ../../mod/settings.php:1087 -msgid "accepting a friend request" -msgstr "aksepterer en venneforespørsel" +#: ../../mod/like.php:418 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s avstår fra å mene noe om %2$s sin %3$s" -#: ../../mod/settings.php:1088 -msgid "joining a forum/community" -msgstr "blir med i et forum/miljø" +#: ../../mod/like.php:420 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s deltar på %2$ss %3$s" -#: ../../mod/settings.php:1089 -msgid "making an interesting profile change" -msgstr "gjør en interessant profilendring" +#: ../../mod/like.php:422 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s deltar ikke på %2$ss %3$s" -#: ../../mod/settings.php:1090 -msgid "Send a notification email when:" -msgstr "Send en varsel-e-post når:" +#: ../../mod/like.php:424 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s deltar kanskje på %2$ss %3$s" -#: ../../mod/settings.php:1091 -msgid "You receive a connection request" -msgstr "Du har mottatt en forespørsel om forbindelse" +#: ../../mod/like.php:520 +msgid "Action completed." +msgstr "Handling ferdig." -#: ../../mod/settings.php:1092 -msgid "Your connections are confirmed" -msgstr "Dine forbindelser er bekreftet" +#: ../../mod/like.php:521 +msgid "Thank you." +msgstr "Tusen takk." -#: ../../mod/settings.php:1093 -msgid "Someone writes on your profile wall" -msgstr "Noen skriver på din profilvegg" +#: ../../mod/uexport.php:51 ../../mod/uexport.php:52 +msgid "Export Channel" +msgstr "Eksporter kanal" -#: ../../mod/settings.php:1094 -msgid "Someone writes a followup comment" -msgstr "Noen skriver en oppfølgende kommentar" +#: ../../mod/uexport.php:53 +msgid "" +"Export your basic channel information to a 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 server hub, but does not contain your content." +msgstr "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet." -#: ../../mod/settings.php:1095 -msgid "You receive a private message" -msgstr "Du mottar en privat melding" +#: ../../mod/uexport.php:54 +msgid "Export Content" +msgstr "Eksporter innhold" -#: ../../mod/settings.php:1096 -msgid "You receive a friend suggestion" -msgstr "Du mottok et venneforslag" +#: ../../mod/uexport.php:55 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner." + +#: ../../mod/uexport.php:56 +msgid "Export your posts from a given year." +msgstr "Eksporter dine innlegg fra et bestemt år" + +#: ../../mod/uexport.php:58 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde." -#: ../../mod/settings.php:1097 -msgid "You are tagged in a post" -msgstr "Du merkes i et innlegg" +#: ../../mod/uexport.php:59 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "For å velge alle innlegg for et gitt år, slik som iår, besøk %2$s" -#: ../../mod/settings.php:1098 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du ble prikket/oppildnet/og så vider i et innlegg" +#: ../../mod/uexport.php:60 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2$s" -#: ../../mod/settings.php:1101 -msgid "Show visual notifications including:" -msgstr "Vis visuelle varslinger om:" +#: ../../mod/uexport.php:61 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)." -#: ../../mod/settings.php:1103 -msgid "Unseen matrix activity" -msgstr "Usett matrixaktivitet" +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Borte" -#: ../../mod/settings.php:1104 -msgid "Unseen channel activity" -msgstr "Usett kanalaktivitet" +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" -#: ../../mod/settings.php:1105 -msgid "Unseen private messages" -msgstr "Usette private meldinger" +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s merket %3$s til %2$s med %4$s" -#: ../../mod/settings.php:1105 ../../mod/settings.php:1110 -#: ../../mod/settings.php:1111 ../../mod/settings.php:1112 -msgid "Recommended" -msgstr "Anbefalt" +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Ingen kanal." -#: ../../mod/settings.php:1106 -msgid "Upcoming events" -msgstr "Kommende hendelser" +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Felles forbindelser" -#: ../../mod/settings.php:1107 -msgid "Events today" -msgstr "Hendelser idag" +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Ingen forbindelser felles." -#: ../../mod/settings.php:1108 -msgid "Upcoming birthdays" -msgstr "Kommende fødselsdager" +#: ../../mod/ping.php:260 +msgid "sent you a private message" +msgstr "sendte deg en privat melding" -#: ../../mod/settings.php:1108 -msgid "Not available in all themes" -msgstr "Ikke tilgjengelig i alle temaer" +#: ../../mod/ping.php:308 +msgid "added your channel" +msgstr "la til din kanal" -#: ../../mod/settings.php:1109 -msgid "System (personal) notifications" -msgstr "System (personlige) varslinger" +#: ../../mod/ping.php:350 +msgid "posted an event" +msgstr "la ut en hendelse" -#: ../../mod/settings.php:1110 -msgid "System info messages" -msgstr "System infomeldinger" +#: ../../mod/help.php:147 +msgid "Documentation Search" +msgstr "Søk i dokumentasjon" -#: ../../mod/settings.php:1111 -msgid "System critical alerts" -msgstr "System kritiske varsel" +#: ../../mod/help.php:184 ../../mod/help.php:190 ../../mod/help.php:196 +msgid "Help:" +msgstr "Hjelp:" -#: ../../mod/settings.php:1112 -msgid "New connections" -msgstr "Nye forbindelser" +#: ../../mod/help.php:211 ../../index.php:234 +msgid "Not Found" +msgstr "Ikke funnet" -#: ../../mod/settings.php:1113 -msgid "System Registrations" -msgstr "Systemregistreringer" +#: ../../mod/help.php:235 +msgid "$Projectname Documentation" +msgstr "$Projectname dokumentasjon" -#: ../../mod/settings.php:1114 +#: ../../mod/removeme.php:29 msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet." -#: ../../mod/settings.php:1116 -msgid "Notify me of events this many days in advance" -msgstr "Varsle meg om hendelser dette antall dager på forhånd" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Fjern denne kanalen" -#: ../../mod/settings.php:1116 -msgid "Must be greater than 0" -msgstr "Må være større enn 0" +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "WARNING: " +msgstr "ADVARSEL:" -#: ../../mod/settings.php:1118 -msgid "Advanced Account/Page Type Settings" -msgstr "Avanserte innstillinger for konto/sidetype" +#: ../../mod/removeme.php:58 +msgid "This channel will be completely removed from the network. " +msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket." -#: ../../mod/settings.php:1119 -msgid "Change the behaviour of this account for special situations" -msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner" +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Denne handlingen er permanent og kan ikke angres!" -#: ../../mod/settings.php:1122 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!" +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Vennligst skriv ditt passord for å få bekreftelse:" -#: ../../mod/settings.php:1123 -msgid "Miscellaneous Settings" -msgstr "Diverse innstillinger" +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Fjern denne kanalen og alle dens kloner fra nettverket" -#: ../../mod/settings.php:1125 -msgid "Personal menu to display in your channel pages" -msgstr "Personlig meny som kan vises på dine kanalsider" +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket" -#: ../../mod/settings.php:1126 ../../mod/removeme.php:61 +#: ../../mod/removeme.php:61 ../../mod/settings.php:1109 msgid "Remove Channel" msgstr "Fjern kanal" -#: ../../mod/settings.php:1127 -msgid "Remove this channel." -msgstr "Fjern denne kanalen." +#: ../../mod/filer.php:48 +msgid "- select -" +msgstr "- velg -" -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Xchan oppslag" +#: ../../mod/mitem.php:24 ../../mod/menu.php:140 +msgid "Menu not found." +msgstr "Menyen ble ikke funnet." -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Slå opp xchan som begynner med (eller webbie):" +#: ../../mod/mitem.php:48 +msgid "Unable to create element." +msgstr "Klarer ikke å lage element." -#: ../../mod/xchan.php:37 ../../mod/menu.php:136 ../../mod/mitem.php:111 +#: ../../mod/mitem.php:72 +msgid "Unable to update menu element." +msgstr "Ikke i stand til å oppdatere menyelement." + +#: ../../mod/mitem.php:88 +msgid "Unable to add menu element." +msgstr "Ikke i stand til å legge til menyelement." + +#: ../../mod/mitem.php:116 ../../mod/menu.php:162 ../../mod/xchan.php:37 msgid "Not found." msgstr "Ikke funnet." -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Tillat programforbindelse" +#: ../../mod/mitem.php:149 ../../mod/mitem.php:222 +msgid "Menu Item Permissions" +msgstr "Menyelement Tillatelser" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" +#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1053 +msgid "(click to open/close)" +msgstr "(klikk for å åpne/lukke)" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Vennligst logg inn for å fortsette." +#: ../../mod/mitem.php:152 ../../mod/mitem.php:168 +msgid "Link Name" +msgstr "Lenkenavn" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?" +#: ../../mod/mitem.php:153 ../../mod/mitem.php:227 +msgid "Link or Submenu Target" +msgstr "Lenke- eller undermeny-mål" -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Byggeklossens navn" +#: ../../mod/mitem.php:153 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal lagt til." +#: ../../mod/mitem.php:154 ../../mod/mitem.php:228 +msgid "Use magic-auth if available" +msgstr "Bruk magic-autent hvis mulig" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Merkelapp fjernet" +#: ../../mod/mitem.php:155 ../../mod/mitem.php:229 +msgid "Open link in new window" +msgstr "Åpne lenke i nytt vindu" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Fjern merkelapp fra element" +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Order in list" +msgstr "Ordne i liste" -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Velg merkelapp å fjerne:" +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Høyere tall vil synke mot bunnen av listen" -#: ../../mod/tagrm.php:133 ../../mod/photos.php:875 -msgid "Remove" -msgstr "Fjern" +#: ../../mod/mitem.php:157 +msgid "Submit and finish" +msgstr "Send inn og avslutt" -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Fortsett" +#: ../../mod/mitem.php:158 +msgid "Submit and continue" +msgstr "Send inn og fortsett" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Premiumkanal-oppsett" +#: ../../mod/mitem.php:166 +msgid "Menu:" +msgstr "Meny:" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Slå på restriksjoner for forbindelse med premiumkanal" +#: ../../mod/mitem.php:169 +msgid "Link Target" +msgstr "Lenkemål" -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." +#: ../../mod/mitem.php:172 +msgid "Edit menu" +msgstr "Endre meny" -#: ../../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 "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" +#: ../../mod/mitem.php:175 +msgid "Edit element" +msgstr "Endre element" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" +#: ../../mod/mitem.php:176 +msgid "Drop element" +msgstr "Slett element" -#: ../../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 "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." +#: ../../mod/mitem.php:177 +msgid "New element" +msgstr "Nytt element" -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" +#: ../../mod/mitem.php:178 +msgid "Edit this menu container" +msgstr "Endre denne menybeholderen" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Begrenset kanal eller premiumkanal" +#: ../../mod/mitem.php:179 +msgid "Add menu element" +msgstr "Legg til menyelement" -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profiltreff" +#: ../../mod/mitem.php:180 +msgid "Delete this menu item" +msgstr "Slett dette menyelementet" -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil." +#: ../../mod/mitem.php:181 +msgid "Edit this menu item" +msgstr "Endre dette menyelementet" -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "er interessert i:" +#: ../../mod/mitem.php:198 +msgid "Menu item not found." +msgstr "Menyelement ble ikke funnet." -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Ingen treff" +#: ../../mod/mitem.php:211 +msgid "Menu item deleted." +msgstr "Menyelement slettet." -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elementet er ikke tilgjengelig." +#: ../../mod/mitem.php:213 +msgid "Menu item could not be deleted." +msgstr "Menyelement kunne ikke bli slettet." -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Henting av URL gir følgende feil: %1$s" +#: ../../mod/mitem.php:220 +msgid "Edit Menu Element" +msgstr "Endre menyelement" -#: ../../mod/home.php:48 -msgid "Hubzilla - "The Network"" -msgstr "Hubzilla - "Nettverket"" +#: ../../mod/mitem.php:226 +msgid "Link text" +msgstr "Lenketekst" -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Velkommen til %s" +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Fikk ikke tilgang til kontaktinformasjonen." -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Fant ikke valgt profil." -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Endring av bildestørrelse mislyktes." +#: ../../mod/connedit.php:219 +msgid "Connection updated." +msgstr "Forbindelsen er oppdatert." -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart." +#: ../../mod/connedit.php:221 +msgid "Failed to update connection record." +msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bildet overstiger størrelsesbegrensningen på %d" +#: ../../mod/connedit.php:268 +msgid "is now connected to" +msgstr "er nå forbundet til" -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Kan ikke behandle bildet." +#: ../../mod/connedit.php:391 +msgid "Could not access address book record." +msgstr "Fikk ikke tilgang til informasjonen i adresseboken." -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Bildet er ikke tilgjengelig." +#: ../../mod/connedit.php:405 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Last opp fil:" +#: ../../mod/connedit.php:414 ../../mod/connedit.php:423 +#: ../../mod/connedit.php:432 ../../mod/connedit.php:441 +#: ../../mod/connedit.php:454 +msgid "Unable to set address book parameters." +msgstr "Ikke i stand til å angi parametre for adresseboken." -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Velg en profil:" +#: ../../mod/connedit.php:478 +msgid "Connection has been removed." +msgstr "Forbindelsen har blitt fjernet." -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Last opp profilbilde:" +#: ../../mod/connedit.php:497 +#, php-format +msgid "View %s's profile" +msgstr "Vis %s sin profil" -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "hopp over dette steget" +#: ../../mod/connedit.php:501 +msgid "Refresh Permissions" +msgstr "Oppfrisk tillatelser" -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "velg et bilde fra dine fotoalbum" +#: ../../mod/connedit.php:504 +msgid "Fetch updated permissions" +msgstr "Hent oppdaterte tillatelser" -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Beskjær bildet" +#: ../../mod/connedit.php:508 +msgid "Recent Activity" +msgstr "Nylig aktivitet" -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Vennligst juster bildebeskjæringen for optimal visning." +#: ../../mod/connedit.php:511 +msgid "View recent posts and comments" +msgstr "Vis nylige innlegg og kommentarer" -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Avslutt redigering" +#: ../../mod/connedit.php:515 ../../mod/admin.php:785 +msgid "Unblock" +msgstr "Ikke blokker lenger" -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Opplasting av bildet var vellykket." +#: ../../mod/connedit.php:515 ../../mod/admin.php:784 +msgid "Block" +msgstr "Blokker" -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Opplasting av bildet mislyktes." +#: ../../mod/connedit.php:518 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen" -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Forminsking av bildet [%s] mislyktes." +#: ../../mod/connedit.php:519 +msgid "This connection is blocked!" +msgstr "Denne forbindelsen er blokkert!" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ugyldig element." +#: ../../mod/connedit.php:523 +msgid "Unignore" +msgstr "Ikke ignorer lenger" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanalen ble ikke funnet." +#: ../../mod/connedit.php:523 ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorer" -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Siden ikke funnet." +#: ../../mod/connedit.php:526 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Liker/Liker ikke" +#: ../../mod/connedit.php:527 +msgid "This connection is ignored!" +msgstr "Denne forbindelsen er ignorert!" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Denne handlingen er begrenset til medlemmer." +#: ../../mod/connedit.php:531 +msgid "Unarchive" +msgstr "Ikke arkiver lenger" -#: ../../mod/like.php:21 +#: ../../mod/connedit.php:531 +msgid "Archive" +msgstr "Arkiver" + +#: ../../mod/connedit.php:534 msgid "" -"Please login with your Hubzilla ID or register as a new Redmatrix.member to continue." -msgstr "Vennligst logg inn med din Hubzilla ID eller registrer deg som et nytt Redmatrix.medlem for å fortsette" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold" -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Ugyldig forespørsel." +#: ../../mod/connedit.php:535 +msgid "This connection is archived!" +msgstr "Denne forbindelsen er arkivert!" -#: ../../mod/like.php:143 -msgid "thing" -msgstr "ting" +#: ../../mod/connedit.php:539 +msgid "Unhide" +msgstr "Ikke skjul lenger" -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Kanalen er utilgjengelig." +#: ../../mod/connedit.php:539 +msgid "Hide" +msgstr "Skjul" -#: ../../mod/like.php:228 -msgid "Previous action reversed." -msgstr "Forrige handling er omgjort." +#: ../../mod/connedit.php:542 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser" -#: ../../mod/like.php:387 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s er enig med %2$s sin %3$s" +#: ../../mod/connedit.php:543 +msgid "This connection is hidden!" +msgstr "Denne forbindelsen er skjult!" -#: ../../mod/like.php:389 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s er ikke enig med %2$s sin %3$s" +#: ../../mod/connedit.php:550 +msgid "Delete this connection" +msgstr "Slett denne forbindelsen" -#: ../../mod/like.php:391 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s avstår fra å mene noe om %2$s sin %3$s" +#: ../../mod/connedit.php:631 +msgid "Approve this connection" +msgstr "Godta denne forbindelsen" -#: ../../mod/like.php:393 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s deltar på %2$ss %3$s" +#: ../../mod/connedit.php:631 +msgid "Accept connection to allow communication" +msgstr "Godta denne forbindelsen for å tillate kommunikasjon" -#: ../../mod/like.php:395 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s deltar ikke på %2$ss %3$s" +#: ../../mod/connedit.php:636 +msgid "Set Affinity" +msgstr "Angi nærhet" -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s deltar kanskje på %2$ss %3$s" +#: ../../mod/connedit.php:639 +msgid "Set Profile" +msgstr "Angi profil" -#: ../../mod/like.php:481 -msgid "Action completed." -msgstr "Handling ferdig." +#: ../../mod/connedit.php:642 +msgid "Set Affinity & Profile" +msgstr "Angi nærhet og profil" -#: ../../mod/like.php:482 -msgid "Thank you." -msgstr "Tusen takk." +#: ../../mod/connedit.php:659 +msgid "Apply these permissions automatically" +msgstr "Bruk disse tillatelsene automatisk" -#: ../../mod/events.php:87 -msgid "Event can not end before it has started." -msgstr "Hendelsen kan ikke slutte før den starter." +#: ../../mod/connedit.php:661 +msgid "This connection's address is" +msgstr "Denne forbindelsens adresse er" -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 -msgid "Unable to generate preview." -msgstr "Klarer ikke å lage forhåndsvisning." +#: ../../mod/connedit.php:664 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser." -#: ../../mod/events.php:96 -msgid "Event title and start time are required." -msgstr "Hendelsestittel og starttidspunkt er påkrevd." +#: ../../mod/connedit.php:666 +msgid "Slide to adjust your degree of friendship" +msgstr "Flytt for å justere din grad av vennskap" -#: ../../mod/events.php:114 -msgid "Event not found." -msgstr "Hendelsen ble ikke funnet." +#: ../../mod/connedit.php:668 +msgid "Slide to adjust your rating" +msgstr "Flytt for å justere din vurdering" -#: ../../mod/events.php:396 -msgid "l, F j" -msgstr "l, F j" +#: ../../mod/connedit.php:669 ../../mod/connedit.php:674 +msgid "Optionally explain your rating" +msgstr "Velg om du vil forklare vurderingen" -#: ../../mod/events.php:418 -msgid "Edit event" -msgstr "Endre hendelse" +#: ../../mod/connedit.php:671 +msgid "Custom Filter" +msgstr "Tilpasset filter" -#: ../../mod/events.php:419 -msgid "Delete event" -msgstr "Slett hendelse" +#: ../../mod/connedit.php:672 +msgid "Only import posts with this text" +msgstr "Bare importer innlegg med disse ordene" -#: ../../mod/events.php:473 -msgid "Create New Event" -msgstr "Lag ny hendelse" +#: ../../mod/connedit.php:672 ../../mod/connedit.php:673 +msgid "" +"words one per line or #tags or /patterns/, leave blank to import all posts" +msgstr "ett ord per linje eller #merkelapper eller /mønstre/, la feltet stå tomt for å importere alle innlegg" -#: ../../mod/events.php:474 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Forrige" +#: ../../mod/connedit.php:673 +msgid "Do not import posts with this text" +msgstr "Ikke importer innlegg med denne teksten" -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 -msgid "Next" -msgstr "Neste" +#: ../../mod/connedit.php:675 +msgid "This information is public!" +msgstr "Denne informasjonen er offentlig!" -#: ../../mod/events.php:476 -msgid "Export" -msgstr "Eksport" +#: ../../mod/connedit.php:680 +msgid "Connection Pending Approval" +msgstr "Forbindelse venter på godkjenning" -#: ../../mod/events.php:504 -msgid "Event removed" -msgstr "Hendelse slettet" +#: ../../mod/connedit.php:681 +msgid "Connection Request" +msgstr "Forespørsel om forbindelse" -#: ../../mod/events.php:507 -msgid "Failed to remove event" -msgstr "Mislyktes med å slette hendelse" +#: ../../mod/connedit.php:682 +#, php-format +msgid "" +"(%s) would like to connect with you. Please approve this connection to allow" +" communication." +msgstr "(%s) ønsker forbindelse med deg. Vennligst godkjenn denne forbindelsen for å tillate kommunikasjon." -#: ../../mod/events.php:625 -msgid "Event details" -msgstr "Hendelsesdetaljer" +#: ../../mod/connedit.php:683 ../../mod/admin.php:781 +msgid "Approve" +msgstr "Godkjenn" -#: ../../mod/events.php:626 -msgid "Starting date and Title are required." -msgstr "Startdato og Tittel er påkrevd." +#: ../../mod/connedit.php:684 +msgid "Approve Later" +msgstr "Godkjenn senere" -#: ../../mod/events.php:628 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparert liste)" +#: ../../mod/connedit.php:687 +msgid "inherited" +msgstr "arvet" -#: ../../mod/events.php:630 -msgid "Event Starts:" -msgstr "Hendelsen starter:" +#: ../../mod/connedit.php:689 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. " -#: ../../mod/events.php:637 -msgid "Finish date/time is not known or not relevant" -msgstr "Sluttdato/-tidspunkt er ikke kjent eller ikke relevant" +#: ../../mod/connedit.php:691 +msgid "Their Settings" +msgstr "Deres innstillinger" -#: ../../mod/events.php:639 -msgid "Event Finishes:" -msgstr "Hendelsen slutter:" +#: ../../mod/connedit.php:692 +msgid "My Settings" +msgstr "Mine innstillinger" -#: ../../mod/events.php:641 ../../mod/events.php:642 -msgid "Adjust for viewer timezone" -msgstr "Juster i forhold til tilskuerens tidssone" +#: ../../mod/connedit.php:694 +msgid "Individual Permissions" +msgstr "Individuelle tillatelser" -#: ../../mod/events.php:641 +#: ../../mod/connedit.php:695 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager." +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan ikke endre arvede innstillingene her." -#: ../../mod/events.php:643 -msgid "Description:" -msgstr "Beskrivelse:" +#: ../../mod/connedit.php:696 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres." -#: ../../mod/events.php:647 -msgid "Title:" -msgstr "Tittel:" +#: ../../mod/connedit.php:697 +msgid "Last update:" +msgstr "Siste oppdatering:" -#: ../../mod/events.php:649 -msgid "Share this event" -msgstr "Del denne hendelsen" +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Angi ditt nåværende humør og fortell dine venner" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s følger %2$s sin %3$s" +#: ../../mod/magic.php:69 +msgid "Hub not found." +msgstr "Hubben ble ikke funnet." + +#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert." + +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "Konfigurasjonsbehandler" + +#: ../../mod/pconfig.php:50 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig." #: ../../mod/pubsites.php:16 msgid "Public Sites" @@ -4885,12 +4990,12 @@ msgstr "Offentlige nettsteder" #: ../../mod/pubsites.php:19 msgid "" -"The listed sites allow public registration into the Hubzilla. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Nettstedene på listen tillater offentlig registrering i Hubzilla. Alle nettsteder i matrix er forbundet så medlemskap på enhver av dem formidler medlemskap i hele matrix. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Tilbyderlenkene kan gi tilleggsopplysninger." +"The listed sites allow public registration for the $Projectname network. All" +" sites in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some sites may require subscription or" +" provide tiered service plans. The provider links may " +"provide additional details." +msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i hele matrix. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Tilbyderlenkene kan gi tilleggsopplysninger." #: ../../mod/pubsites.php:25 msgid "Rate this hub" @@ -4924,1376 +5029,1284 @@ msgstr "Vurder" msgid "View ratings" msgstr "Vis vurderinger" -#: ../../mod/connedit.php:75 ../../mod/connections.php:37 -msgid "Could not access contact record." -msgstr "Fikk ikke tilgang til kontaktinformasjonen." +#: ../../mod/filestorage.php:82 +msgid "Permission Denied." +msgstr "Tillatelse avvist." -#: ../../mod/connedit.php:99 ../../mod/connections.php:51 -msgid "Could not locate selected profile." -msgstr "Fant ikke valgt profil." +#: ../../mod/filestorage.php:98 +msgid "File not found." +msgstr "Filen ble ikke funnet." -#: ../../mod/connedit.php:204 ../../mod/connections.php:94 -msgid "Connection updated." -msgstr "Forbindelsen er oppdatert." +#: ../../mod/filestorage.php:141 +msgid "Edit file permissions" +msgstr "Endre filtillatelser" -#: ../../mod/connedit.php:206 ../../mod/connections.php:96 -msgid "Failed to update connection record." -msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." +#: ../../mod/filestorage.php:150 +msgid "Set/edit permissions" +msgstr "Angi/endre tillatelser" -#: ../../mod/connedit.php:252 -msgid "is now connected to" -msgstr "er nå forbundet til" +#: ../../mod/filestorage.php:151 +msgid "Include all files and sub folders" +msgstr "Inkluder alle filer og undermapper" -#: ../../mod/connedit.php:365 -msgid "Could not access address book record." -msgstr "Fikk ikke tilgang til informasjonen i adresseboken." +#: ../../mod/filestorage.php:152 +msgid "Return to file list" +msgstr "Gå tilbake til filoversikten" -#: ../../mod/connedit.php:379 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." +#: ../../mod/filestorage.php:154 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" -msgstr "Kanalen er ikke blokkert lenger" +#: ../../mod/filestorage.php:155 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" -msgstr "Kanalen har blitt blokkert" +#: ../../mod/filestorage.php:157 +msgid "Share this file" +msgstr "Del denne filen" -#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 -#: ../../mod/connedit.php:443 -msgid "Unable to set address book parameters." -msgstr "Ikke i stand til å angi parametre for adresseboken." +#: ../../mod/filestorage.php:158 +msgid "Show URL to this file" +msgstr "Vis URLen til denne filen" -#: ../../mod/connedit.php:398 -msgid "Channel has been unignored" -msgstr "Kanalen er ikke lenger ignorert" +#: ../../mod/filestorage.php:159 +msgid "Notify your contacts about this file" +msgstr "Varsle dine kontakter om denne filen" -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" -msgstr "Kanalen blir ignorert" +#: ../../mod/layouts.php:121 ../../mod/layouts.php:179 +#: ../../mod/editlayout.php:161 +msgid "Layout Name" +msgstr "Layout-navn" -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" -msgstr "Kanalen er ikke lenger arkivert" +#: ../../mod/layouts.php:124 ../../mod/editlayout.php:159 +msgid "Layout Description (Optional)" +msgstr "Layoutens beskrivelse (valgfritt)" -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" -msgstr "Kanalen er arkivert" +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" +msgstr "Hjelp med Comanche sidebeskrivelsesspråk" -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" -msgstr "Kanalen er ikke lenger skjult" +#: ../../mod/layouts.php:180 +msgid "Layout Description" +msgstr "Layout-beskrivelse" -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" -msgstr "Kanalen er blitt skjult" +#: ../../mod/layouts.php:185 +msgid "Download PDL file" +msgstr "Last ned PDL-fil" -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" -msgstr "Kanalen har blitt godkjent" +#: ../../mod/poke.php:164 +msgid "Poke/Prod" +msgstr "Prikke/oppildne" -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" -msgstr "Kanalen er ikke lenger godkjent" +#: ../../mod/poke.php:165 +msgid "poke, prod or do other things to somebody" +msgstr "prikke, oppildne eller gjør andre ting med noen" -#: ../../mod/connedit.php:467 -msgid "Connection has been removed." -msgstr "Forbindelsen har blitt fjernet." +#: ../../mod/poke.php:166 +msgid "Recipient" +msgstr "Mottaker" -#: ../../mod/connedit.php:487 -#, php-format -msgid "View %s's profile" -msgstr "Vis %s sin profil" +#: ../../mod/poke.php:167 +msgid "Choose what you wish to do to recipient" +msgstr "Velg hva du ønsker å gjøre med mottakeren" -#: ../../mod/connedit.php:491 -msgid "Refresh Permissions" -msgstr "Oppfrisk tillatelser" +#: ../../mod/poke.php:170 +msgid "Make this post private" +msgstr "Gjør dette innlegget privat" -#: ../../mod/connedit.php:494 -msgid "Fetch updated permissions" -msgstr "Hent oppdaterte tillatelser" +#: ../../mod/network.php:91 +msgid "No such group" +msgstr "Gruppen finnes ikke" -#: ../../mod/connedit.php:498 -msgid "Recent Activity" -msgstr "Nylig aktivitet" +#: ../../mod/network.php:131 +msgid "No such channel" +msgstr "Ingen slik kanal" -#: ../../mod/connedit.php:501 -msgid "View recent posts and comments" -msgstr "Vis nylige innlegg og kommentarer" +#: ../../mod/network.php:136 +msgid "forum" +msgstr "forum" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:818 -msgid "Unblock" -msgstr "Ikke blokker lenger" +#: ../../mod/network.php:148 +msgid "Search Results For:" +msgstr "Søkeresultat for:" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:817 -msgid "Block" -msgstr "Blokker" +#: ../../mod/network.php:207 +msgid "Collection is empty" +msgstr "Samlingen er tom" -#: ../../mod/connedit.php:510 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen" +#: ../../mod/network.php:216 +msgid "Collection: " +msgstr "Samling:" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -msgid "Unignore" -msgstr "Ikke ignorer lenger" +#: ../../mod/network.php:242 +msgid "Invalid connection." +msgstr "Ugyldig forbindelse." -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorer" +#: ../../mod/chat.php:19 ../../mod/channel.php:25 +msgid "You must be logged in to see this page." +msgstr "Du må være innloegget for å se denne siden." -#: ../../mod/connedit.php:517 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen" +#: ../../mod/chat.php:171 +msgid "Room not found" +msgstr "Rommet ble ikke funnet" -#: ../../mod/connedit.php:520 -msgid "Unarchive" -msgstr "Ikke arkiver lenger" +#: ../../mod/chat.php:182 +msgid "Leave Room" +msgstr "Forlat rom" -#: ../../mod/connedit.php:520 -msgid "Archive" -msgstr "Arkiver" +#: ../../mod/chat.php:183 +msgid "Delete This Room" +msgstr "Slett dette rommet" -#: ../../mod/connedit.php:523 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold" +#: ../../mod/chat.php:184 +msgid "I am away right now" +msgstr "Jeg er borte akkurat nå" -#: ../../mod/connedit.php:526 -msgid "Unhide" -msgstr "Ikke skjul lenger" +#: ../../mod/chat.php:185 +msgid "I am online" +msgstr "Jeg er online" -#: ../../mod/connedit.php:526 -msgid "Hide" -msgstr "Skjul" +#: ../../mod/chat.php:187 +msgid "Bookmark this room" +msgstr "Bokmerk dette rommet" -#: ../../mod/connedit.php:529 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser" +#: ../../mod/chat.php:205 ../../mod/chat.php:227 +msgid "New Chatroom" +msgstr "Nytt chatrom" -#: ../../mod/connedit.php:536 -msgid "Delete this connection" -msgstr "Slett denne forbindelsen" +#: ../../mod/chat.php:206 +msgid "Chatroom Name" +msgstr "Navn på chatrom" -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 -msgid "Approve this connection" -msgstr "Godta denne forbindelsen" +#: ../../mod/chat.php:223 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$s sine chatrom" -#: ../../mod/connedit.php:611 -msgid "Accept connection to allow communication" -msgstr "Godta denne forbindelsen for å tillate kommunikasjon" +#: ../../mod/search.php:209 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementer merket med: %s" -#: ../../mod/connedit.php:627 +#: ../../mod/search.php:211 #, php-format -msgid "Connections: settings for %s" -msgstr "Forbindelser: innstillinger for %s" +msgid "Search results for: %s" +msgstr "Søkeresultater for: %s" -#: ../../mod/connedit.php:628 -msgid "Apply these permissions automatically" -msgstr "Bruk disse tillatelsene automatisk" +#: ../../mod/message.php:34 +msgid "Conversation removed." +msgstr "Samtale fjernet." -#: ../../mod/connedit.php:632 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Bruk tillatelsene angitt på denne siden på alle nye forbindelser." +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." -#: ../../mod/connedit.php:636 -msgid "Slide to adjust your degree of friendship" -msgstr "Flytt for å justere din grad av vennskap" +#: ../../mod/editpost.php:20 ../../mod/editblock.php:78 +#: ../../mod/editblock.php:94 ../../mod/editlayout.php:76 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Elementet ble ikke funnet." -#: ../../mod/connedit.php:637 ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Vurdering (denne informasjonen er offentlig)" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Elementet kan ikke endres" -#: ../../mod/connedit.php:638 ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)" +#: ../../mod/editpost.php:55 +msgid "Delete item?" +msgstr "Slett element?" -#: ../../mod/connedit.php:645 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "Standard tillatelser for din kanaltype har (nettopp) blitt valgt. De har ikke blitt sendt inn og lagret ennå. Vennligst se over tillatelsene på denne siden og gjør eventuelle ønskede endringer nå. Denne nye forbindelsen kan muligens ikke klare å kommunisere med deg inntil du sender inn denne siden, som vil installere og ta i bruk de valgte tillatelsene." +#: ../../mod/editpost.php:122 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:185 +msgid "Insert YouTube video" +msgstr "Sett inn YouTube-video" -#: ../../mod/connedit.php:648 -msgid "inherited" -msgstr "arvet" +#: ../../mod/editpost.php:123 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:186 +msgid "Insert Vorbis [.ogg] video" +msgstr "Sett inn Vorbis [.ogg] video" -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" -msgstr "Forbindelsen har ingen individuelle tillatelser!" +#: ../../mod/editpost.php:124 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:187 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Legg i" -#: ../../mod/connedit.php:652 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Dette kan være riktig basert på dine personverninnstillinger, men kanskje du bør se over \"Avanserte tillatelser\"." +#: ../../mod/editpost.php:165 ../../mod/rpost.php:128 +msgid "Edit post" +msgstr "Endre innlegg" + +#: ../../mod/dreport.php:15 +msgid "Invalid message" +msgstr "Ugyldig melding" -#: ../../mod/connedit.php:654 -msgid "Profile Visibility" -msgstr "Profilens synlighet" +#: ../../mod/dreport.php:25 +msgid "no results" +msgstr "ingen resultater" -#: ../../mod/connedit.php:655 +#: ../../mod/dreport.php:30 #, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. " +msgid "Delivery report for %1$s" +msgstr "Leveringsrapport for %1$s" -#: ../../mod/connedit.php:656 -msgid "Contact Information / Notes" -msgstr "Kontaktinformasjon / Merknader" +#: ../../mod/dreport.php:39 +msgid "channel sync processed" +msgstr "Kanalsynkronisering er behandlet" -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" -msgstr "Endre kontaktmerknader" +#: ../../mod/dreport.php:43 +msgid "queued" +msgstr "lagt i kø" -#: ../../mod/connedit.php:659 -msgid "Their Settings" -msgstr "Deres innstillinger" +#: ../../mod/dreport.php:47 +msgid "posted" +msgstr "lagt inn" -#: ../../mod/connedit.php:660 -msgid "My Settings" -msgstr "Mine innstillinger" +#: ../../mod/dreport.php:51 +msgid "accepted for delivery" +msgstr "akseptert for levering" -#: ../../mod/connedit.php:662 -msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "Standard tillatelser for denne kanaltypen har (nettopp) blitt valgt. De har ikke blitt lagret og det er for øyeblikket ingen lagrede standard tillatelser. Vennligst se over/endre de valgte innstillingene og klikk [Send inn] for å lagre." +#: ../../mod/dreport.php:55 +msgid "updated" +msgstr "oppdatert" -#: ../../mod/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" -msgstr "Tøm/Skru av Automatiske tillatelser" +#: ../../mod/dreport.php:58 +msgid "update ignored" +msgstr "oppdatering ignorert" -#: ../../mod/connedit.php:664 -msgid "Forum Members" -msgstr "Forummedlemmer" +#: ../../mod/dreport.php:61 +msgid "permission denied" +msgstr "tillatelse avvist" -#: ../../mod/connedit.php:665 -msgid "Soapbox" -msgstr "Talerstol" +#: ../../mod/editblock.php:118 +msgid "Delete block?" +msgstr "Slett byggeklossen?" -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" -msgstr "Full deling (typiske tillatelser i sosiale nettverk)" +#: ../../mod/editblock.php:180 +msgid "Edit Block" +msgstr "Endre byggekloss" -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " -msgstr "Forsiktig deling" +#: ../../mod/home.php:57 ../../mod/home.php:63 ../../mod/siteinfo.php:157 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../mod/connedit.php:668 -msgid "Follow Only" -msgstr "Bare følg" +#: ../../mod/home.php:73 +#, php-format +msgid "Welcome to %s" +msgstr "Velkommen til %s" -#: ../../mod/connedit.php:669 -msgid "Individual Permissions" -msgstr "Individuelle tillatelser" +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "Ikke i stand til å finne opprinnelig innlegg." -#: ../../mod/connedit.php:670 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Å endre arvede innstillinger på denne siden vil ikke ha noen effekt." +#: ../../mod/item.php:407 +msgid "Empty post discarded." +msgstr "Tomt innlegg forkastet." -#: ../../mod/connedit.php:671 -msgid "Advanced Permissions" -msgstr "Avanserte tillatelser" +#: ../../mod/item.php:447 +msgid "Executable content type not permitted to this channel." +msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." -#: ../../mod/connedit.php:672 -msgid "Simple Permissions (select one and submit)" -msgstr "Enkle tillatelser (velg en og lagre)" +#: ../../mod/item.php:896 +msgid "System error. Post not saved." +msgstr "Systemfeil. Innlegg ble ikke lagret." + +#: ../../mod/item.php:1163 +msgid "Unable to obtain post information from database." +msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen." -#: ../../mod/connedit.php:676 +#: ../../mod/item.php:1170 #, php-format -msgid "Visit %s's profile - %s" -msgstr "Besøk %s sin profil - %s" +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du har nådd din grense på %1$.0f startinnlegg." -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" -msgstr "Blokker/Ikke blokker kontakt" +#: ../../mod/item.php:1177 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du har nådd din grense på %1$.0f websider." -#: ../../mod/connedit.php:678 -msgid "Ignore contact" -msgstr "Ignorer kontakt" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Ikke i stand til å finne hubben din." -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" -msgstr "Reparer URL-innstillinger" +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Innlegg vellykket." -#: ../../mod/connedit.php:680 -msgid "View conversations" -msgstr "Vis samtaler" +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Temainnstillinger er oppdatert." -#: ../../mod/connedit.php:682 -msgid "Delete contact" -msgstr "Slett kontakt" +#: ../../mod/admin.php:160 +msgid "# Accounts" +msgstr "# Kontoer" -#: ../../mod/connedit.php:686 -msgid "Last update:" -msgstr "Siste oppdatering:" +#: ../../mod/admin.php:161 +msgid "# blocked accounts" +msgstr "# blokkerte kontoer" -#: ../../mod/connedit.php:688 -msgid "Update public posts" -msgstr "Oppdater offentlige innlegg" +#: ../../mod/admin.php:162 +msgid "# expired accounts" +msgstr "# utgåtte kontoer" -#: ../../mod/connedit.php:690 -msgid "Update now" -msgstr "Oppdater nå" +#: ../../mod/admin.php:163 +msgid "# expiring accounts" +msgstr "# kontoer som holder på å gå ut" -#: ../../mod/connedit.php:696 -msgid "Currently blocked" -msgstr "For øyeblikket blokkert" +#: ../../mod/admin.php:174 +msgid "# Channels" +msgstr "# Kanaler" -#: ../../mod/connedit.php:697 -msgid "Currently ignored" -msgstr "For øyeblikket ignorert" +#: ../../mod/admin.php:175 +msgid "# primary" +msgstr "# hoved" -#: ../../mod/connedit.php:698 -msgid "Currently archived" -msgstr "For øyeblikket arkivert" +#: ../../mod/admin.php:176 +msgid "# clones" +msgstr "# kloner" -#: ../../mod/connedit.php:699 -msgid "Currently pending" -msgstr "For øyeblikket ventende" +#: ../../mod/admin.php:182 +msgid "Message queues" +msgstr "Meldingskøer" -#: ../../mod/dav.php:121 -msgid "Hubzilla channel" -msgstr "Hubzilla-kanal" +#: ../../mod/admin.php:198 ../../mod/admin.php:409 ../../mod/admin.php:506 +#: ../../mod/admin.php:774 ../../mod/admin.php:938 ../../mod/admin.php:1030 +#: ../../mod/admin.php:1070 ../../mod/admin.php:1230 ../../mod/admin.php:1264 +#: ../../mod/admin.php:1349 +msgid "Administration" +msgstr "Administrasjon" -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Samling opprettet." +#: ../../mod/admin.php:199 +msgid "Summary" +msgstr "Sammendrag" -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Kunne ikke lage samling." +#: ../../mod/admin.php:202 +msgid "Registered accounts" +msgstr "Registrerte kontoer" -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Samlingen er oppdatert." +#: ../../mod/admin.php:203 ../../mod/admin.php:510 +msgid "Pending registrations" +msgstr "Ventende registreringer" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Lag en samling med kanaler." +#: ../../mod/admin.php:204 +msgid "Registered channels" +msgstr "Registrerte kanaler" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Navn på samling:" +#: ../../mod/admin.php:205 ../../mod/admin.php:511 +msgid "Active plugins" +msgstr "Aktive tilleggsfunksjoner" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Medlemmer er synlig for andre kanaler" +#: ../../mod/admin.php:206 +msgid "Version" +msgstr "Versjon" -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Samling fjernet." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Ikke i stand til å fjerne samlingen." +#: ../../mod/admin.php:321 +msgid "Site settings updated." +msgstr "Nettstedsinnstillinger er oppdatert." -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Samlingsbehandler" +#: ../../mod/admin.php:358 ../../mod/settings.php:790 +msgid "mobile" +msgstr "mobil" -#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 -msgid "Members" -msgstr "Medlemmer" +#: ../../mod/admin.php:360 +msgid "experimental" +msgstr "eksperimentell" -#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 -msgid "All Connected Channels" -msgstr "Alle tilkoblede kanaler" +#: ../../mod/admin.php:362 +msgid "unsupported" +msgstr "ikke støttet" -#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 -msgid "Click on a channel to add or remove." -msgstr "Klikk på en kanal for å legge til eller fjerne." +#: ../../mod/admin.php:387 +msgid "Yes - with approval" +msgstr "Ja - med godkjenning" -#: ../../mod/siteinfo.php:106 -#, php-format -msgid "Version %s" -msgstr "Versjon %s" +#: ../../mod/admin.php:393 +msgid "My site is not a public server" +msgstr "Mitt nettsted er ikke en offentlig tjeneste" -#: ../../mod/siteinfo.php:127 -msgid "Installed plugins/addons/apps:" -msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" +#: ../../mod/admin.php:394 +msgid "My site has paid access only" +msgstr "Mitt nettsted gir kun tilgang mot betaling" -#: ../../mod/siteinfo.php:140 -msgid "No installed plugins/addons/apps" -msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" +#: ../../mod/admin.php:395 +msgid "My site has free access only" +msgstr "Mitt nettsted har kun gratis tilgang" -#: ../../mod/siteinfo.php:149 -msgid "Red" -msgstr "Red" +#: ../../mod/admin.php:396 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" -#: ../../mod/siteinfo.php:150 -msgid "" -"This is a hub of the Hubzilla - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dette er en hub i Hubzilla - et globalt kooperativt nettverk av desentraliserte personvernforsterkede nettsteder." +#: ../../mod/admin.php:412 ../../mod/register.php:207 +msgid "Registration" +msgstr "Registrering" -#: ../../mod/siteinfo.php:152 -msgid "Tag: " -msgstr "Merkelapp:" +#: ../../mod/admin.php:413 +msgid "File upload" +msgstr "Last opp fil" -#: ../../mod/siteinfo.php:154 -msgid "Last background fetch: " -msgstr "Siste innhenting i bakgrunnen:" +#: ../../mod/admin.php:414 +msgid "Policies" +msgstr "Retningslinjer" -#: ../../mod/siteinfo.php:157 -msgid "Running at web location" -msgstr "Kjører på webplasseringen" +#: ../../mod/admin.php:419 +msgid "Site name" +msgstr "Nettstedets navn" -#: ../../mod/siteinfo.php:158 -msgid "" -"Please visit Redmatrix.me to learn more" -" about the Hubzilla." -msgstr "Vennligst besøk Redmatrix.me for å lære mer om Hubzilla." +#: ../../mod/admin.php:420 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../mod/siteinfo.php:159 -msgid "Bug reports and issues: please visit" -msgstr "Feilmeldinger og feilretting: vennligst besøk" +#: ../../mod/admin.php:421 +msgid "Administrator Information" +msgstr "Administratorinformasjon" -#: ../../mod/siteinfo.php:162 +#: ../../mod/admin.php:421 msgid "" -"Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot " -"com" -msgstr "Forslag, ros og så videre - vennligst e-post \"hubzilla\" hos librelist - punktum com" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her" -#: ../../mod/siteinfo.php:164 -msgid "Site Administrators" -msgstr "Nettstedsadministratorer" +#: ../../mod/admin.php:422 +msgid "System language" +msgstr "Systemspråk" -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Hjelp:" +#: ../../mod/admin.php:423 +msgid "System theme" +msgstr "Systemtema" -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "Ikke funnet" +#: ../../mod/admin.php:423 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger" -#: ../../mod/setup.php:166 -msgid "Hubzilla Server - Setup" -msgstr "Hubzilla tjener - oppsett" +#: ../../mod/admin.php:424 +msgid "Mobile system theme" +msgstr "Mobilt systemtema" -#: ../../mod/setup.php:172 -msgid "Could not connect to database." -msgstr "Fikk ikke kontakt med databasen." +#: ../../mod/admin.php:424 +msgid "Theme for mobile devices" +msgstr "Tema for mobile enheter" -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS." +#: ../../mod/admin.php:426 +msgid "Allow Feeds as Connections" +msgstr "Tillat strømmer som forbindelser" -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Kunne ikke lage tabellen." +#: ../../mod/admin.php:426 +msgid "(Heavy system resource usage)" +msgstr "(Tung bruk av systemressurser)" -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Databasen til ditt nettsted har blitt installert." +#: ../../mod/admin.php:427 +msgid "Maximum image size" +msgstr "Største bildestørrelse" -#: ../../mod/setup.php:194 +#: ../../mod/admin.php:427 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient." +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset." -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Vennligst les filen \"install/INSTALL.txt\"." +#: ../../mod/admin.php:428 +msgid "Does this site allow new member registration?" +msgstr "Tillater dette nettstedet registrering av nye medlemmer?" -#: ../../mod/setup.php:261 -msgid "System check" -msgstr "Systemsjekk" +#: ../../mod/admin.php:429 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?" -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Sjekk igjen" +#: ../../mod/admin.php:430 +msgid "Register text" +msgstr "Registreringstekst" -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Databaseforbindelse" +#: ../../mod/admin.php:430 +msgid "Will be displayed prominently on the registration page." +msgstr "Vil bli vist på en fremtredende måte på registreringssiden." -#: ../../mod/setup.php:290 -msgid "" -"In order to install Hubzilla we need to know how to connect to your " -"database." -msgstr "For å installere Hubzilla må du oppgi hvordan din database kan kontaktes." +#: ../../mod/admin.php:431 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)" -#: ../../mod/setup.php:291 +#: ../../mod/admin.php:431 msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene." +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "eksempel: 'public' for å vise offentlig strøm av innlegg, 'page/sys/home/ for å vise en system-webside called 'home\" eller 'include:home.html' for å inkludere en fil." -#: ../../mod/setup.php:292 +#: ../../mod/admin.php:432 +msgid "Preserve site homepage URL" +msgstr "Bevar URL-en til nettstedets hjemmeside" + +#: ../../mod/admin.php:432 msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter." +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere" -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Navn på databasetjener" +#: ../../mod/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "Kontoer forlatt etter x dager" -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "Standard er localhost" +#: ../../mod/admin.php:433 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense." -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Databaseport" +#: ../../mod/admin.php:434 +msgid "Allowed friend domains" +msgstr "Tillatte vennedomener" -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" -msgstr "Kommunikasjonsportnummer - bruk 0 for standard" +#: ../../mod/admin.php:434 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener." -#: ../../mod/setup.php:298 -msgid "Database Login Name" -msgstr "Database innloggingsnavn" +#: ../../mod/admin.php:435 +msgid "Allowed email domains" +msgstr "Tillate e-postdomener" -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Database innloggingspassord" +#: ../../mod/admin.php:435 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt" -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Databasenavn" +#: ../../mod/admin.php:436 +msgid "Not allowed email domains" +msgstr "Ikke tillatte e-postdomener" -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Databasetype" +#: ../../mod/admin.php:436 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert." -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "E-postadressen til administrator ved nettstedet" +#: ../../mod/admin.php:437 +msgid "Block public" +msgstr "Blokker offentlig tilgang" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 +#: ../../mod/admin.php:437 msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet." +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn." -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "Nettstedets URL" +#: ../../mod/admin.php:438 +msgid "Verify Email Addresses" +msgstr "Bekreft e-postadresser" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." -msgstr "Vennligst bruk SSL (https) URL hvis tilgjengelig." +#: ../../mod/admin.php:438 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)." -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Vennligst velg en standard tidssone for ditt nettsted" +#: ../../mod/admin.php:439 +msgid "Force publish" +msgstr "Tving publisering" -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Nettstedets innstillinger" +#: ../../mod/admin.php:439 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog." -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (PATH)." +#: ../../mod/admin.php:440 +msgid "Disable discovery tab" +msgstr "Skru av oppdagelsesfanen" -#: ../../mod/setup.php:396 +#: ../../mod/admin.php:440 msgid "" -"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." -msgstr "Hvis du ikke har en kommandolinjeversjon av PHP installert på tjeneren, så vil du ikke kunne kjøre bakgrunnshenting via cron." +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Fjern fanen fra nettverksvisningen med offentlig innhold trukket inn fra kilder valg for dette nettstedet." -#: ../../mod/setup.php:400 -msgid "PHP executable path" -msgstr "PHP-kjørefilens sti" +#: ../../mod/admin.php:441 +msgid "login on Homepage" +msgstr "Logg inn på hjemmesiden" -#: ../../mod/setup.php:400 +#: ../../mod/admin.php:441 msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Skriv full sti til kjørefilen for PHP. Du kan la denne stå blank for å fortsette installasjonen." +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert." -#: ../../mod/setup.php:405 -msgid "Command line PHP" -msgstr "Kommandolinje PHP" +#: ../../mod/admin.php:443 +msgid "Proxy user" +msgstr "Brukernavn mellomtjener" -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" påskrudd." +#: ../../mod/admin.php:444 +msgid "Proxy URL" +msgstr "Mellomtjener URL" -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "Dette er påkrevd for at meldingslevering skal virke." +#: ../../mod/admin.php:445 +msgid "Network timeout" +msgstr "Nettverk tidsavbrudd" -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../mod/admin.php:445 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)." -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler" +#: ../../mod/admin.php:446 +msgid "Delivery interval" +msgstr "Leveringsinterval" -#: ../../mod/setup.php:439 +#: ../../mod/admin.php:446 msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Ved kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "Lag krypteringsnøkler" - -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "libCurl PHP-modul" - -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP-modul" - -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP-modul" - -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "MySQLi eller Postgres PHP modul" - -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "mb_string PHP-modul" - -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP-modul" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere." -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite-modul" +#: ../../mod/admin.php:447 +msgid "Deliveries per process" +msgstr "Leveranser per prosess" -#: ../../mod/setup.php:458 +#: ../../mod/admin.php:447 msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert." +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5." -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" +#: ../../mod/admin.php:448 +msgid "Poll interval" +msgstr "Spørreintervall" -#: ../../mod/setup.php:464 +#: ../../mod/admin.php:448 msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Feil: proc_open er påkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet." -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Feil: libCURL PHP-modul er påkrevd, men er ikke installert." +#: ../../mod/admin.php:449 +msgid "Maximum Load Average" +msgstr "Største belastningsgjennomsnitt" -#: ../../mod/setup.php:476 +#: ../../mod/admin.php:449 msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Feil: GD graphics PHP-modul med JPEG-støtte er påkrevd, men er ikke installert." - -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." -msgstr "Feil: openssl PHP-modul er påkrevd, men er ikke installert." +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50." -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Feil: mysqli eller postgres PHP modul er påkrevd, men ingen av dem er installert." +#: ../../mod/admin.php:450 +msgid "Expiration period in days for imported (matrix/network) content" +msgstr "Antall dager før importert innhold (matrix/nettverk) utgår" -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Feil: mb_string PHP-modul er påkrevd, men er ikke installert." +#: ../../mod/admin.php:450 +msgid "0 for no expiration of imported content" +msgstr "0 dersom importert innhold ikke skal utgå" -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Feil: mcrypt PHP-modul er påkrevd, men er ikke installert." +#: ../../mod/admin.php:498 +msgid "No server found" +msgstr "Ingen tjener funnet" -#: ../../mod/setup.php:508 -msgid "" -"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." -msgstr "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til." +#: ../../mod/admin.php:505 ../../mod/admin.php:788 +msgid "ID" +msgstr "ID" -#: ../../mod/setup.php:509 -msgid "" -"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." -msgstr "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan." +#: ../../mod/admin.php:505 +msgid "for channel" +msgstr "for kanalen" -#: ../../mod/setup.php:510 -msgid "" -"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." -msgstr "På slutten av denne prosedyren vil vi gi deg en tekst til å lagre i en fil kalt .htconfig.php i toppkatalogen til din Red." +#: ../../mod/admin.php:505 +msgid "on server" +msgstr "på tjener" -#: ../../mod/setup.php:511 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Alternativt, så kan du hoppe over denne prosedyren og gjennomføre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner." +#: ../../mod/admin.php:505 +msgid "Status" +msgstr "Status" -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php kan skrives til" +#: ../../mod/admin.php:507 +msgid "Server" +msgstr "Tjener" -#: ../../mod/setup.php:524 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red bruker malmotoren Smarty3 for å gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for å framskynde gjengivelsen." +#: ../../mod/admin.php:524 +msgid "Update has been marked successful" +msgstr "Oppdateringen har blitt merket som en suksess" -#: ../../mod/setup.php:525 +#: ../../mod/admin.php:534 #, php-format -msgid "" -"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." -msgstr "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under Red sin hovedmappe." - -#: ../../mod/setup.php:526 ../../mod/setup.php:544 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen." +msgid "Executing %s failed. Check system logs." +msgstr "Utføring av %s feilet. Sjekk systemlogger." -#: ../../mod/setup.php:527 +#: ../../mod/admin.php:537 #, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder." +msgid "Update %s was successfully applied." +msgstr "Oppdatering %s ble gjennomført med suksess." -#: ../../mod/setup.php:530 +#: ../../mod/admin.php:541 #, php-format -msgid "%s is writable" -msgstr "%s kan skrives til" +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket." -#: ../../mod/setup.php:543 -msgid "" -"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" -msgstr "Red bruker lagringsmappen for å lagre opplastede filer. Webtjeneren trenger å ha skrivetilgang til lagringsmappen under Red sin toppnivåmappe." +#: ../../mod/admin.php:544 +#, php-format +msgid "Update function %s could not be found." +msgstr "Oppdatering av funksjon %s kunne ikke finnes." -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "lageret kan skrives til" +#: ../../mod/admin.php:560 +msgid "No failed updates." +msgstr "Ingen mislykkede oppdateringer." -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet." +#: ../../mod/admin.php:564 +msgid "Failed Updates" +msgstr "Mislykkede oppdateringer" -#: ../../mod/setup.php:578 -msgid "" -"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!" -msgstr "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!" +#: ../../mod/admin.php:566 +msgid "Mark success (if update was manually applied)" +msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" -#: ../../mod/setup.php:579 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub." +#: ../../mod/admin.php:567 +msgid "Attempt to execute this update step automatically" +msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" -#: ../../mod/setup.php:580 -msgid "" -"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." -msgstr "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer." +#: ../../mod/admin.php:599 +msgid "Queue Statistics" +msgstr "Køstatistikk" -#: ../../mod/setup.php:581 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet." +#: ../../mod/admin.php:600 +msgid "Total Entries" +msgstr "Totalt antall oppføringer" -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere." +#: ../../mod/admin.php:601 +msgid "Priority" +msgstr "Prioritet" -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "SSL sertifikat-kontroll" +#: ../../mod/admin.php:602 +msgid "Destination URL" +msgstr "Mål-URL" -#: ../../mod/setup.php:590 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:" +#: ../../mod/admin.php:603 +msgid "Mark hub permanently offline" +msgstr "Merk hub som permanent offline" -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "URL rewrite virker" +#: ../../mod/admin.php:604 +msgid "Empty queue for this hub" +msgstr "Tøm køen for denne hubben" -#: ../../mod/setup.php:602 -msgid "" -"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." -msgstr "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener." +#: ../../mod/admin.php:605 +msgid "Last known contact" +msgstr "Siste kjente kontakt" -#: ../../mod/setup.php:625 -msgid "Errors encountered creating database tables." -msgstr "Feil oppstod under opprettelsen av databasetabeller." +#: ../../mod/admin.php:641 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s konto blokkert/ikke blokkert lenger" +msgstr[1] "%s kontoer blokkert/ikke blokkert lenger" -#: ../../mod/setup.php:660 -msgid "

What next

" -msgstr "

Hva gjenstår

" +#: ../../mod/admin.php:649 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s konto slettet" +msgstr[1] "%s kontoer slettet" -#: ../../mod/setup.php:661 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren." +#: ../../mod/admin.php:685 +msgid "Account not found" +msgstr "Kontoen ble ikke funnet" -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Ingen kanal." +#: ../../mod/admin.php:697 +#, php-format +msgid "Account '%s' deleted" +msgstr "Kontoen '%s' slettet" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Felles forbindelser" +#: ../../mod/admin.php:705 +#, php-format +msgid "Account '%s' blocked" +msgstr "Kontoen '%s' blokkert" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Ingen forbindelser felles." +#: ../../mod/admin.php:713 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Kontoen '%s' er ikke blokkert lenger" -#: ../../mod/id.php:8 -msgid "First Name" -msgstr "Fornavn" +#: ../../mod/admin.php:775 ../../mod/admin.php:787 +msgid "Users" +msgstr "Brukere" -#: ../../mod/id.php:9 -msgid "Last Name" -msgstr "Etternavn" +#: ../../mod/admin.php:777 ../../mod/admin.php:941 +msgid "select all" +msgstr "velg alle" -#: ../../mod/id.php:10 -msgid "Nickname" -msgstr "Kallenavn" +#: ../../mod/admin.php:778 +msgid "User registrations waiting for confirm" +msgstr "Brukerregistreringer som venter på bekreftelse" -#: ../../mod/id.php:11 -msgid "Full Name" -msgstr "Fullt navn" +#: ../../mod/admin.php:779 +msgid "Request date" +msgstr "Dato for forespørsel" -#: ../../mod/id.php:17 -msgid "Profile Photo 16px" -msgstr "Profilbilde 16px" +#: ../../mod/admin.php:780 +msgid "No registrations." +msgstr "Ingen registreringer." -#: ../../mod/id.php:18 -msgid "Profile Photo 32px" -msgstr "Profilbilde 32px" +#: ../../mod/admin.php:782 +msgid "Deny" +msgstr "Avslå" -#: ../../mod/id.php:19 -msgid "Profile Photo 48px" -msgstr "Profilbilde 48px" +#: ../../mod/admin.php:788 +msgid "Register date" +msgstr "Registreringsdato" -#: ../../mod/id.php:20 -msgid "Profile Photo 64px" -msgstr "Profilbilde 64px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 80px" -msgstr "Profilbilde 80px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 128px" -msgstr "Profilbilde 128px" - -#: ../../mod/id.php:23 -msgid "Timezone" -msgstr "Tidssone" +#: ../../mod/admin.php:788 +msgid "Last login" +msgstr "Siste innlogging" -#: ../../mod/id.php:24 -msgid "Homepage URL" -msgstr "Hjemmeside URL" +#: ../../mod/admin.php:788 +msgid "Expires" +msgstr "Utløper" -#: ../../mod/id.php:26 -msgid "Birth Year" -msgstr "Fødselsår" +#: ../../mod/admin.php:788 +msgid "Service Class" +msgstr "Tjenesteklasse" -#: ../../mod/id.php:27 -msgid "Birth Month" -msgstr "Fødselsmåne" +#: ../../mod/admin.php:790 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?" -#: ../../mod/id.php:28 -msgid "Birth Day" -msgstr "Fødselsdag" +#: ../../mod/admin.php:791 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?" -#: ../../mod/id.php:29 -msgid "Birthdate" -msgstr "Fødselsdato" +#: ../../mod/admin.php:827 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s kanal er sensurert/ikke sensurert lenger" +msgstr[1] "%s kanaler er sensurert/ikke sensurert lenger" -#: ../../mod/id.php:30 ../../mod/profiles.php:431 -msgid "Gender" -msgstr "Kjønn" +#: ../../mod/admin.php:836 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s kanal med kode tillatt/ikke tillatt" +msgstr[1] "%s kanaler med kode tillatt/ikke tillatt" -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Blokkert" +#: ../../mod/admin.php:843 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanal slettet" +msgstr[1] "%s kanaler slettet" -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Ignorert" +#: ../../mod/admin.php:863 +msgid "Channel not found" +msgstr "Kanalen ble ikke funnet" -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Skjult" +#: ../../mod/admin.php:874 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanalen '%s' er slettet" -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Arkivert" +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanalen '%s' er sensurert" -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Alle" +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanalen '%s' er ikke sensurert lenger" -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Foreslå nye forbindelser" +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Kanal '%s' kode tillatt" -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Nye forbindelser" +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Kanal '%s' kode ikke tillatt" -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Vis ventende (nye) forbindelser" +#: ../../mod/admin.php:943 +msgid "Censor" +msgstr "Sensurer" -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle forbindelser" +#: ../../mod/admin.php:944 +msgid "Uncensor" +msgstr "Ikke sensurer lenger" -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Vis alle forbindelser" +#: ../../mod/admin.php:945 +msgid "Allow Code" +msgstr "Tillat kode" -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Ikke blokkert lenger" +#: ../../mod/admin.php:946 +msgid "Disallow Code" +msgstr "Ikke tillat kode" -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Vis bare forbindelser som ikke er blokkert" +#: ../../mod/admin.php:948 +msgid "UID" +msgstr "UID" -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Vis bare forbindelser som er blokkert" +#: ../../mod/admin.php:948 ../../mod/profiles.php:447 +msgid "Address" +msgstr "Adresse" -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Vis bare ignorerte forbindelser" +#: ../../mod/admin.php:950 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?" -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Vis bare arkiverte forbindelser" +#: ../../mod/admin.php:951 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?" -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Vis bare skjulte forbindelser" +#: ../../mod/admin.php:991 +#, php-format +msgid "Plugin %s disabled." +msgstr "Tilleggsfunksjonen %s er avskrudd." -#: ../../mod/connections.php:372 +#: ../../mod/admin.php:995 #, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +msgid "Plugin %s enabled." +msgstr "Tilleggsfunksjonen %s er påskrudd." -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Endre forbindelse" +#: ../../mod/admin.php:1005 ../../mod/admin.php:1203 +msgid "Disable" +msgstr "Skru av" -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Søk blant dine forbindelser" +#: ../../mod/admin.php:1008 ../../mod/admin.php:1205 +msgid "Enable" +msgstr "Skru på" -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Fant:" +#: ../../mod/admin.php:1032 ../../mod/admin.php:1232 +msgid "Toggle" +msgstr "Skru av og på" -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "nettside" +#: ../../mod/admin.php:1040 ../../mod/admin.php:1242 +msgid "Author: " +msgstr "Forfatter:" -#: ../../mod/impel.php:38 -msgid "block" -msgstr "byggekloss" +#: ../../mod/admin.php:1041 ../../mod/admin.php:1243 +msgid "Maintainer: " +msgstr "Vedlikeholder:" -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "layout" +#: ../../mod/admin.php:1168 +msgid "No themes found." +msgstr "Ingen temaer er funnet." -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%s element installert" +#: ../../mod/admin.php:1224 +msgid "Screenshot" +msgstr "Skjermbilde" -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merket %3$s til %2$s med %4$s" +#: ../../mod/admin.php:1270 +msgid "[Experimental]" +msgstr "[Eksperimentelt]" -#: ../../mod/cloud.php:120 -msgid "Hubzilla - Guests: Username: {your email address}, Password: +++" -msgstr "Hubzilla - gjester: brukernavn: {din e-postadresse}, passord: +++" +#: ../../mod/admin.php:1271 +msgid "[Unsupported]" +msgstr "[Ingen støtte]" -#: ../../mod/item.php:165 -msgid "Unable to locate original post." -msgstr "Ikke i stand til å finne opprinnelig innlegg." +#: ../../mod/admin.php:1295 +msgid "Log settings updated." +msgstr "Logginnstillinger er oppdatert." -#: ../../mod/item.php:424 -msgid "Empty post discarded." -msgstr "Tomt innlegg forkastet." +#: ../../mod/admin.php:1352 +msgid "Clear" +msgstr "Tøm" -#: ../../mod/item.php:466 -msgid "Executable content type not permitted to this channel." -msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." +#: ../../mod/admin.php:1358 +msgid "Debugging" +msgstr "Feilsøking" -#: ../../mod/item.php:865 -msgid "System error. Post not saved." -msgstr "Systemfeil. Innlegg ble ikke lagret." +#: ../../mod/admin.php:1359 +msgid "Log file" +msgstr "Loggfil" -#: ../../mod/item.php:1083 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du har nådd din grense på %1$.0f startinnlegg." +#: ../../mod/admin.php:1359 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Må kunne skrives til av webtjenesten. Relativ til din Red sin toppnivåkatalog." -#: ../../mod/item.php:1089 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du har nådd din grense på %1$.0f websider." +#: ../../mod/admin.php:1360 +msgid "Log level" +msgstr "Loggnivå" -#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 -#: ../../mod/directory.php:47 ../../mod/viewconnections.php:17 -#: ../../mod/photos.php:429 -msgid "Public access denied." -msgstr "Offentlig tilgang avvist." +#: ../../mod/admin.php:1406 +msgid "New Profile Field" +msgstr "Nytt profilfelt" -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Tingen er oppdatert" +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "Field nickname" +msgstr "Feltets kallenavn" -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Objektlagring: mislyktes" +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "System name of field" +msgstr "Systemnavnet til feltet" -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Ting lagt til" +#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 +msgid "Input type" +msgstr "Inndata-type" -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Field Name" +msgstr "Feltnavn" -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Vis ting" +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Label on profile pages" +msgstr "Merkelapp på profilsider" -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "element ble ikke funnet." +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Help text" +msgstr "Hjelpetekst" -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Endre ting" +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Additional info (optional)" +msgstr "Tilleggsinformasjon (valgfritt)" -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Velg en profil" +#: ../../mod/admin.php:1420 +msgid "Field definition not found" +msgstr "Feltdefinisjonen ble ikke funnet" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Legg inn en aktivitet" +#: ../../mod/admin.php:1426 +msgid "Edit Profile Field" +msgstr "Endre profilfelt" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sender bare til seere av den aktuelle profilen" +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installert." -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Navn på ting for eksempel noe" +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Feil oppsett for app-en." -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL til ting (valgfritt)" +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Innbyggingskode" -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL til bilde av ting (valgfritt)" +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "Endre app" -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Legg til ting i din profil" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Borte" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Velg en bokmerkemappe" +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "Lag app" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Lagre bokmerke" +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Navn på app" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL-en til bokmerket" +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Plassering (URL) til app" -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 msgid "Description" msgstr "Beskrivelse" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Eller skriv nytt navn på bokmerkemappe" +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "Bildeikon URL" -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "Ingen flere systemvarsler." +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x80 pixler - valgfritt" -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "Systemvarsler" +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versjons-ID" -#: ../../mod/acl.php:231 -msgid "network" -msgstr "nettverk" +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Pris på app" -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Plassering (URL) for å kjøpe app" -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout er oppdatert." +#: ../../mod/menu.php:45 +msgid "Unable to update menu." +msgstr "Ikke i stand til å oppdatere meny." -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Endre beskrivelsen av systemsiden" +#: ../../mod/menu.php:56 +msgid "Unable to create menu." +msgstr "Ikke i stand til å lage meny." -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layouten ble ikke funnet." +#: ../../mod/menu.php:94 ../../mod/menu.php:106 +msgid "Menu Name" +msgstr "Menynavn" -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulnavn:" +#: ../../mod/menu.php:94 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unikt navn (ikke synlig på websiden) - påkrevet" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Layout-hjelp" +#: ../../mod/menu.php:95 ../../mod/menu.php:107 +msgid "Menu Title" +msgstr "Menytittel" -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- velg -" +#: ../../mod/menu.php:95 +msgid "Visible on webpage - leave empty for no title" +msgstr "Synlig på websiden - la stå tomt for ingen tittel" -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjenesteplan tillater bare %d kanaler." +#: ../../mod/menu.php:96 +msgid "Allow Bookmarks" +msgstr "Tillat bokmerker" -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Ingenting å importere." +#: ../../mod/menu.php:96 ../../mod/menu.php:153 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menyen kan brukes til å lagre lagrede bokmerker" -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Ikke i stand til å laste ned data fra gammel tjener" +#: ../../mod/menu.php:97 ../../mod/menu.php:155 +msgid "Submit and proceed" +msgstr "Send inn og fortsett" -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Importert fil er tom." +#: ../../mod/menu.php:109 +msgid "Drop" +msgstr "Slett" -#: ../../mod/import.php:106 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes." +#: ../../mod/menu.php:113 +msgid "Bookmarks allowed" +msgstr "Bokmerker tillatt" -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." +#: ../../mod/menu.php:115 +msgid "Delete this menu" +msgstr "Slett denne menyen" -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Kanalkloning mislyktes. Import mislyktes." +#: ../../mod/menu.php:116 ../../mod/menu.php:150 +msgid "Edit menu contents" +msgstr "Endre menyinnholdet" -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Klonet kanal ble ikke funnet. Import mislyktes." +#: ../../mod/menu.php:117 +msgid "Edit this menu" +msgstr "Endre denne menyen" -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import ferdig." +#: ../../mod/menu.php:132 +msgid "Menu could not be deleted." +msgstr "Menyen kunne ikke bli slettet." -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Du må være innlogget for å bruke denne funksjonen." +#: ../../mod/menu.php:145 +msgid "Edit Menu" +msgstr "Endre meny" -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Importer kanal" +#: ../../mod/menu.php:149 +msgid "Add or remove entries to this menu" +msgstr "Legg til eller fjern punkter i denne menyen" -#: ../../mod/import.php:493 -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 "Bruk dette skjemaet til å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente kanalidentiteten fra den gamle tjeneren/hubben via nettverket eller bruke en eksportert fil. Bare identiteten og forbindelser/relasjoner vil bli importert. Importering av innhold er ennå ikke tilgjengelig." +#: ../../mod/menu.php:151 +msgid "Menu name" +msgstr "Menynavn" -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "Fil som skal lastes opp" +#: ../../mod/menu.php:151 +msgid "Must be unique, only seen by you" +msgstr "Må være unik, ses bare av deg" -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" +#: ../../mod/menu.php:152 +msgid "Menu title" +msgstr "Menytittel" -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamle identitetsadresse (xyz@example.com)" +#: ../../mod/menu.php:152 +msgid "Menu title as seen by others" +msgstr "Menytittelen andre ser" -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Din gamle innloggings e-postadresse" +#: ../../mod/menu.php:153 +msgid "Allow bookmarks" +msgstr "Tillat bokmerker" -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Ditt gamle innloggingspassord" +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." +msgstr "Ingen flere systemvarsler." -#: ../../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 "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media." +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" +msgstr "Systemvarsler" -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Gjør dette nettstedet til min primære plassering" +#: ../../mod/page.php:126 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Importerer eksisterende innlegg hvis mulig." +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Legg til en kanal" -#: ../../mod/editlayout.php:78 ../../mod/editwebpage.php:77 -#: ../../mod/editpost.php:20 ../../mod/editblock.php:79 -#: ../../mod/editblock.php:95 -msgid "Item not found" -msgstr "Elementet ble ikke funnet." +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "En kanal er din egen samling av relaterte web-sider. En kanal kan brukes til å samle sosiale nettverksprofiler, blogger, samtalegrupper og forum, kjendissider og mye mer. Du kan lage så mange kanaler som din tjenestetilbyder tillater." -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Endre layout" +#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Kanalnavn" -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Slett layout?" +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"" -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 -#: ../../mod/editpost.php:122 ../../mod/editblock.php:152 -msgid "Insert YouTube video" -msgstr "Sett inn YouTube-video" +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Velg et kort kallenavn" -#: ../../mod/editlayout.php:149 ../../mod/editwebpage.php:184 -#: ../../mod/editpost.php:123 ../../mod/editblock.php:153 -msgid "Insert Vorbis [.ogg] video" -msgstr "Sett inn Vorbis [.ogg] video" +#: ../../mod/new_channel.php:115 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske (minner om en e-postadresse) og som du kan dele med andre." -#: ../../mod/editlayout.php:150 ../../mod/editwebpage.php:185 -#: ../../mod/editpost.php:124 ../../mod/editblock.php:154 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Legg i" +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Eller importerer en eksisterende kanal fra et annet sted." -#: ../../mod/editlayout.php:183 -msgid "Delete Layout" -msgstr "Slett layout" +#: ../../mod/new_channel.php:118 +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 "Vennligst velg en kanaltype (for eksempel sosialt nettverk eller forum for felleskap) og krav til personvern slik at vi kan velge de beste tillatelsene for deg." -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "Du må være innloegget for å se denne siden." +#: ../../mod/new_channel.php:119 +msgid "Channel Type" +msgstr "Kanaltype" -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Rommet ble ikke funnet" +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "Les mer om roller" -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Forlat rom" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ugyldig forespørselsidentifikator." -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Slett dette rommet" +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Forkast" -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Jeg er borte akkurat nå" +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout er oppdatert." -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Jeg er online" +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Endre beskrivelsen av systemsiden" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Bokmerk dette rommet" +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layouten ble ikke funnet." -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nytt chatrom" +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulnavn:" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Navn på chatrom" +#: ../../mod/pdledit.php:55 +msgid "Layout Help" +msgstr "Layout-hjelp" -#: ../../mod/chat.php:225 +#: ../../mod/subthread.php:102 #, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s sine chatrom" - -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Endre webside" - -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Slett webside?" - -#: ../../mod/editwebpage.php:220 -msgid "Delete Webpage" -msgstr "Slett webside" - -#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:47 -msgid "This site is not a directory server" -msgstr "Dette nettstedet er ikke en katalogtjener" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s følger %2$s sin %3$s" #: ../../mod/lostpass.php:15 msgid "No valid account found." @@ -6303,7 +6316,7 @@ msgstr "Ingen gyldig konto funnet." msgid "Password reset request issued. Check your email." msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 #, php-format msgid "Site Member (%s)" msgstr "Nettstedsmedlem (%s)" @@ -6319,2575 +6332,2848 @@ msgid "" "Password reset failed." msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." -#: ../../mod/lostpass.php:85 ../../boot.php:1560 +#: ../../mod/lostpass.php:86 ../../boot.php:1505 msgid "Password Reset" msgstr "Tilbakestill passord" -#: ../../mod/lostpass.php:86 +#: ../../mod/lostpass.php:87 msgid "Your password has been reset as requested." msgstr "Ditt passord har blitt tilbakestilt som forespurt." -#: ../../mod/lostpass.php:87 +#: ../../mod/lostpass.php:88 msgid "Your new password is" msgstr "Ditt nye passord er" -#: ../../mod/lostpass.php:88 +#: ../../mod/lostpass.php:89 msgid "Save or copy your new password - and then" msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" -#: ../../mod/lostpass.php:89 +#: ../../mod/lostpass.php:90 msgid "click here to login" msgstr "klikke her for å logge inn" -#: ../../mod/lostpass.php:90 +#: ../../mod/lostpass.php:91 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." -#: ../../mod/lostpass.php:107 +#: ../../mod/lostpass.php:108 #, php-format msgid "Your password has changed at %s" msgstr "Ditt passord er endret hos %s" -#: ../../mod/lostpass.php:122 +#: ../../mod/lostpass.php:123 msgid "Forgot your Password?" msgstr "Glemt passord ditt?" -#: ../../mod/lostpass.php:123 +#: ../../mod/lostpass.php:124 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner." -#: ../../mod/lostpass.php:124 +#: ../../mod/lostpass.php:125 msgid "Email Address" msgstr "E-postadresse" -#: ../../mod/lostpass.php:125 +#: ../../mod/lostpass.php:126 msgid "Reset" msgstr "Tilbakestill" -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Nettsted:" +#: ../../mod/photos.php:79 +msgid "Page owner information could not be retrieved." +msgstr "Informasjon om sideeier kunne ikke hentes." -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" +#: ../../mod/photos.php:100 +msgid "Album not found." +msgstr "Albumet ble ikke funnet." -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Elementet kan ikke endres" +#: ../../mod/photos.php:127 +msgid "Delete Album" +msgstr "Slett album" -#: ../../mod/editpost.php:42 ../../mod/rpost.php:98 -msgid "Edit post" -msgstr "Endre innlegg" +#: ../../mod/photos.php:170 ../../mod/photos.php:970 +msgid "Delete Photo" +msgstr "Slett bilde" -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Slett element?" +#: ../../mod/photos.php:464 +msgid "No photos selected" +msgstr "Ingen bilder valgt" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Grensen for totalt antall invitasjoner er overskredet." +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "Tilgang til dette elementet er begrenset." -#: ../../mod/invite.php:49 +#: ../../mod/photos.php:552 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : ikke en gyldig e-postadresse." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Bli med oss på Red" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted." +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." -#: ../../mod/invite.php:92 +#: ../../mod/photos.php:555 #, php-format -msgid "%s : Message delivery failed." -msgstr "%s : meldingslevering feilet." +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB lagringsplass til bilder er brukt." -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d melding sendt." -msgstr[1] "%d meldinger sendt." +#: ../../mod/photos.php:583 +msgid "Upload Photos" +msgstr "Last opp bilder" -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du har ikke flere invitasjoner tilgjengelig" +#: ../../mod/photos.php:587 +msgid "Enter an album name" +msgstr "Skriv et albumnavn" -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Send invitasjoner" +#: ../../mod/photos.php:588 +msgid "or select an existing album (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Skriv e-postadresser, en per linje:" +#: ../../mod/photos.php:589 +msgid "Create a status post for this upload" +msgstr "Lag et statusinnlegg for denne opplastingen" -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Din melding:" +#: ../../mod/photos.php:616 +msgid "Album name could not be decoded" +msgstr "Albumnavnet kunne ikke dekodes" -#: ../../mod/invite.php:132 -msgid "Please join my community on Hubzilla." -msgstr "Du er velkommen til å bli med i mitt fellesskap på Hubzilla." +#: ../../mod/photos.php:660 ../../mod/photos.php:1197 +#: ../../mod/photos.php:1214 +msgid "Contact Photos" +msgstr "Kontaktbilder" -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Du må oppgi denne invitasjonskoden:" +#: ../../mod/photos.php:688 +msgid "Show Newest First" +msgstr "Vis nyeste først" -#: ../../mod/invite.php:135 -msgid "1. Register at any Hubzilla location (they are all inter-connected)" -msgstr "1. Registrer ved enhver Hubzilla-lokasjon (de er alle forbundet med hverandre)" +#: ../../mod/photos.php:690 +msgid "Show Oldest First" +msgstr "Vis eldste først" -#: ../../mod/invite.php:137 -msgid "2. Enter my Hubzilla network address into the site searchbar." -msgstr "2. Skriv inn min Hubzilla-adresse i nettstedets søkefelt." +#: ../../mod/photos.php:714 ../../mod/photos.php:1247 +msgid "View Photo" +msgstr "Vis foto" -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "eller besøk" +#: ../../mod/photos.php:743 +msgid "Edit Album" +msgstr "Endre album" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klikk [Forbindelse]" +#: ../../mod/photos.php:788 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset." -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Plassering er ikke funnet." +#: ../../mod/photos.php:790 +msgid "Photo not available" +msgstr "Bilde er utilgjengelig" -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "Primær plassering kan ikke fjernes." +#: ../../mod/photos.php:848 +msgid "Use as profile photo" +msgstr "Bruk som profilbilde" -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Ingen plasseringer ble funnet." +#: ../../mod/photos.php:855 +msgid "Private Photo" +msgstr "Privat bilde" -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Håndter kanalplasseringer" +#: ../../mod/photos.php:866 ../../mod/events.php:528 +msgid "Previous" +msgstr "Forrige" -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Plassering (adresse)" +#: ../../mod/photos.php:870 +msgid "View Full Size" +msgstr "Vis i full størrelse" -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Hovedplassering" +#: ../../mod/photos.php:875 ../../mod/events.php:529 ../../mod/setup.php:285 +msgid "Next" +msgstr "Neste" -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Slett plassering" +#: ../../mod/photos.php:915 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Fjern" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." +#: ../../mod/photos.php:949 +msgid "Edit photo" +msgstr "Endre bilde" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Kilden er laget." +#: ../../mod/photos.php:951 +msgid "Rotate CW (right)" +msgstr "Roter med klokka (mot høyre)" -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Kilden er oppdatert." +#: ../../mod/photos.php:952 +msgid "Rotate CCW (left)" +msgstr "Roter mot klokka (venstre)" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../mod/photos.php:955 +msgid "Enter a new album name" +msgstr "Skriv et nytt albumnavn" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Håndtere eksterne innholdskilder til din kanal." +#: ../../mod/photos.php:956 +msgid "or select an existing one (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Ny kilde" +#: ../../mod/photos.php:959 +msgid "Caption" +msgstr "Overskrift" -#: ../../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 "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger." +#: ../../mod/photos.php:961 +msgid "Add a Tag" +msgstr "Legg til merkelapp" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Bare importer innhold med disse ordene (ett ord per linje)" +#: ../../mod/photos.php:965 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "La stå tomt for å importere alt offentlig innhold" +#: ../../mod/photos.php:968 +msgid "Flag as adult in album view" +msgstr "Flag som voksent i albumvisning" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Kanalnavn" +#: ../../mod/photos.php:1160 +msgid "In This Photo:" +msgstr "I dette bildet:" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Kilden ble ikke funnet." +#: ../../mod/photos.php:1165 +msgid "Map" +msgstr "Kart" -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Endre kilde" +#: ../../mod/photos.php:1253 +msgid "View Album" +msgstr "Vis album" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Slett kilde" +#: ../../mod/photos.php:1276 +msgid "Recent Photos" +msgstr "Nye bilder" -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Kilden er fjernet" +#: ../../mod/dav.php:121 +msgid "$Projectname channel" +msgstr "$Projectname-kanal" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Ikke i stand til å fjerne kilde." +#: ../../mod/rate.php:157 +msgid "Website:" +msgstr "Nettsted:" -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Menyen er oppdatert." +#: ../../mod/rate.php:160 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" -#: ../../mod/menu.php:35 -msgid "Unable to update menu." -msgstr "Ikke i stand til å oppdatere meny." +#: ../../mod/rate.php:161 +msgid "Rating (this information is public)" +msgstr "Vurdering (denne informasjonen er offentlig)" -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Meny laget." +#: ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" +msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)" -#: ../../mod/menu.php:44 -msgid "Unable to create menu." -msgstr "Ikke i stand til å lage meny." +#: ../../mod/events.php:21 +msgid "Calendar entries imported." +msgstr "Kalenderhendelsene er importert." -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Håndtere menyer" +#: ../../mod/events.php:23 +msgid "No calendar entries found." +msgstr "Ingen kalenderhendelser funnet." -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Slett" +#: ../../mod/events.php:96 +msgid "Event can not end before it has started." +msgstr "Hendelsen kan ikke slutte før den starter." -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Bokmerker tillatt" +#: ../../mod/events.php:98 ../../mod/events.php:107 ../../mod/events.php:127 +msgid "Unable to generate preview." +msgstr "Klarer ikke å lage forhåndsvisning." -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Lag en ny meny" +#: ../../mod/events.php:105 +msgid "Event title and start time are required." +msgstr "Hendelsestittel og starttidspunkt er påkrevd." -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Slett denne menyen" +#: ../../mod/events.php:125 ../../mod/events.php:250 +msgid "Event not found." +msgstr "Hendelsen ble ikke funnet." -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Endre menyinnholdet" +#: ../../mod/events.php:448 +msgid "l, F j" +msgstr "l, F j" -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Endre denne menyen" +#: ../../mod/events.php:470 +msgid "Edit event" +msgstr "Endre hendelse" -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Ny meny" +#: ../../mod/events.php:472 +msgid "Delete event" +msgstr "Slett hendelse" -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Menynavn" +#: ../../mod/events.php:506 +msgid "calendar" +msgstr "kalender" -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" -msgstr "Må være unik, ses bare av deg" +#: ../../mod/events.php:527 +msgid "Create New Event" +msgstr "Lag ny hendelse" -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Menytittel" +#: ../../mod/events.php:530 +msgid "Export" +msgstr "Eksport" -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" -msgstr "Menytittelen andre ser" +#: ../../mod/events.php:533 +msgid "Import" +msgstr "Importer" -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Tillat bokmerker" +#: ../../mod/events.php:564 +msgid "Event removed" +msgstr "Hendelse slettet" -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menyen kan brukes til å lagre lagrede bokmerker" +#: ../../mod/events.php:567 +msgid "Failed to remove event" +msgstr "Mislyktes med å slette hendelse" -#: ../../mod/menu.php:108 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menyen ble ikke funnet." +#: ../../mod/events.php:681 +msgid "Event details" +msgstr "Hendelsesdetaljer" -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Meny slettet." +#: ../../mod/events.php:682 +msgid "Starting date and Title are required." +msgstr "Startdato og Tittel er påkrevd." -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." -msgstr "Menyen kunne ikke bli slettet." +#: ../../mod/events.php:684 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparert liste)" -#: ../../mod/menu.php:122 -msgid "Edit Menu" -msgstr "Endre meny" +#: ../../mod/events.php:686 +msgid "Event Starts:" +msgstr "Hendelsen starter:" -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" -msgstr "Legg til eller fjern punkter i denne menyen" +#: ../../mod/events.php:693 +msgid "Finish date/time is not known or not relevant" +msgstr "Sluttdato/-tidspunkt er ikke kjent eller ikke relevant" -#: ../../mod/menu.php:130 ../../mod/mitem.php:213 -msgid "Modify" -msgstr "Endre" +#: ../../mod/events.php:695 +msgid "Event Finishes:" +msgstr "Hendelsen slutter:" -#: ../../mod/filestorage.php:81 -msgid "Permission Denied." -msgstr "Tillatelse avvist." +#: ../../mod/events.php:697 ../../mod/events.php:698 +msgid "Adjust for viewer timezone" +msgstr "Juster i forhold til tilskuerens tidssone" -#: ../../mod/filestorage.php:97 -msgid "File not found." -msgstr "Filen ble ikke funnet." +#: ../../mod/events.php:697 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager." -#: ../../mod/filestorage.php:140 -msgid "Edit file permissions" -msgstr "Endre filtillatelser" +#: ../../mod/events.php:703 +msgid "Title:" +msgstr "Tittel:" -#: ../../mod/filestorage.php:149 -msgid "Set/edit permissions" -msgstr "Angi/endre tillatelser" +#: ../../mod/events.php:705 +msgid "Share this event" +msgstr "Del denne hendelsen" -#: ../../mod/filestorage.php:150 -msgid "Include all files and sub folders" -msgstr "Inkluder alle filer og undermapper" +#: ../../mod/impel.php:192 +#, php-format +msgid "%s element installed" +msgstr "%s element installert" -#: ../../mod/filestorage.php:151 -msgid "Return to file list" -msgstr "Gå tilbake til filoversikten" +#: ../../mod/impel.php:195 +#, php-format +msgid "%s element installation failed" +msgstr "Installasjon av %s-element mislyktes" -#: ../../mod/filestorage.php:153 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" +#: ../../mod/probe.php:24 ../../mod/probe.php:30 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Henting av URL gir følgende feil: %1$s" -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" +#: ../../mod/match.php:22 +msgid "Profile Match" +msgstr "Profiltreff" -#: ../../mod/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Legg ved denne filen i et nytt innlegg" +#: ../../mod/match.php:31 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil." -#: ../../mod/filestorage.php:157 -msgid "Show URL to this file" -msgstr "Vis URLen til denne filen" +#: ../../mod/match.php:63 +msgid "is interested in:" +msgstr "er interessert i:" -#: ../../mod/filestorage.php:158 -msgid "Do not show in shared with me folder of your connections" -msgstr "Ikke vis i Delt med meg-mappen til dine forbindelser" +#: ../../mod/match.php:70 +msgid "No matches" +msgstr "Ingen treff" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakten ble ikke funnet." +#: ../../mod/profile_photo.php:111 +msgid "Image uploaded but image cropping failed." +msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Venneforespørsel sendt." +#: ../../mod/profile_photo.php:165 +msgid "Image resize failed." +msgstr "Endring av bildestørrelse mislyktes." -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Foreslå venner" +#: ../../mod/profile_photo.php:209 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart." -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Foreslå en venn for %s" +#: ../../mod/profile_photo.php:247 +msgid "Image upload failed." +msgstr "Opplasting av bildet mislyktes." -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Hubben ble ikke funnet." +#: ../../mod/profile_photo.php:266 +msgid "Unable to process image." +msgstr "Kan ikke behandle bildet." -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Prikke/oppildne" +#: ../../mod/profile_photo.php:294 +msgid "female" +msgstr "kvinne" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "prikke, oppildne eller gjør andre ting med noen" +#: ../../mod/profile_photo.php:295 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s oppdaterte %2$s sitt" -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Mottaker" +#: ../../mod/profile_photo.php:296 +msgid "male" +msgstr "mann" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Velg hva du ønsker å gjøre med mottakeren" +#: ../../mod/profile_photo.php:297 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s oppdaterte %2$s sitt" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Gjør dette innlegget privat" +#: ../../mod/profile_photo.php:299 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s oppdaterte %2$s deres" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ugyldig profil-identifikator." +#: ../../mod/profile_photo.php:301 +msgid "profile photo" +msgstr "profilbilde" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Endre profilsynlighet" +#: ../../mod/profile_photo.php:365 ../../mod/profile_photo.php:406 +msgid "Photo not available." +msgstr "Bildet er ikke tilgjengelig." -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klikk på en kontakt for å legge til eller fjerne." +#: ../../mod/profile_photo.php:447 +msgid "Upload File:" +msgstr "Last opp fil:" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Synlig for" +#: ../../mod/profile_photo.php:448 +msgid "Select a profile:" +msgstr "Velg en profil:" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Ekstern personverninformasjon er ikke tilgjengelig." +#: ../../mod/profile_photo.php:449 +msgid "Upload Profile Photo" +msgstr "Last opp profilbilde:" -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Synlig for:" +#: ../../mod/profile_photo.php:454 ../../mod/settings.php:972 +msgid "or" +msgstr "eller" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Profilen ble ikke funnet." +#: ../../mod/profile_photo.php:454 +msgid "skip this step" +msgstr "hopp over dette steget" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profilen er slettet." +#: ../../mod/profile_photo.php:454 +msgid "select a photo from your photo albums" +msgstr "velg et bilde fra dine fotoalbum" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" +#: ../../mod/profile_photo.php:470 +msgid "Crop Image" +msgstr "Beskjær bildet" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Ny profil opprettet." +#: ../../mod/profile_photo.php:471 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Vennligst juster bildebeskjæringen for optimal visning." -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profilen er utilgjengelig for klonen." +#: ../../mod/profile_photo.php:473 +msgid "Done Editing" +msgstr "Avslutt redigering" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Profilen er utilgjengelig for eksport." +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal lagt til." -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Profilnavn er påkrevd." +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Merkelapp fjernet" -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Sivilstand" +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Fjern merkelapp fra element" -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Romantisk partner" +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Velg merkelapp å fjerne:" -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "Liker" +#: ../../mod/ratings.php:69 +msgid "No ratings" +msgstr "Ingen vurderinger" -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "Liker ikke" +#: ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Vurderinger" -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Arbeid/sysselsetting" +#: ../../mod/ratings.php:100 +msgid "Rating: " +msgstr "Vurdering:" -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religion" +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Nettsted:" -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Politiske synspunkter" +#: ../../mod/ratings.php:103 +msgid "Description: " +msgstr "Beskrivelse:" -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Seksuelle preferanser" +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Dette nettstedet er ikke en katalogtjener" -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Hjemmeside" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Ikke i stand til å slå opp mottaker." -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Interesser" +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Ikke i stand til å kommunisere med forespurt kanal." -#: ../../mod/profiles.php:447 ../../mod/admin.php:950 -msgid "Address" -msgstr "Adresse" +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan ikke bekrefte forespurt kanal." -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Profilen er oppdatert." +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet." -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Skjul kontakt-/vennelisten din fra de som ser på denne profilen?" +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Meldinger" -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Endre profildetaljer" +#: ../../mod/mail.php:138 +msgid "Message deleted." +msgstr "Melding slettet." -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Vis denne profilen" +#: ../../mod/mail.php:154 +msgid "Message recalled." +msgstr "Innlegg tilbakekalt." -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Endre profilbilde" +#: ../../mod/mail.php:221 +msgid "Send Private Message" +msgstr "Send privat melding" -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Lag en ny profil ved å bruke disse innstillingene" +#: ../../mod/mail.php:222 ../../mod/mail.php:352 +msgid "To:" +msgstr "Til:" -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Klon denne profilen" +#: ../../mod/mail.php:227 ../../mod/mail.php:341 ../../mod/mail.php:354 +msgid "Subject:" +msgstr "Emne:" -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Slett denne profilen" +#: ../../mod/mail.php:231 ../../mod/mail.php:357 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Din melding:" -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Importer profil fra fil" +#: ../../mod/mail.php:238 +msgid "Send" +msgstr "Send" -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Eksporter profil til fil" +#: ../../mod/mail.php:322 +msgid "Delete message" +msgstr "Slett melding" -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Profilnavn:" +#: ../../mod/mail.php:323 +msgid "Recall message" +msgstr "Tilbakekall innlegg" -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "Ditt fulle navn:" +#: ../../mod/mail.php:325 +msgid "Message has been recalled." +msgstr "Innlegget har blitt tilbakekalt." -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Tittel/Beskrivelse:" +#: ../../mod/mail.php:345 +msgid "Delete Conversation" +msgstr "Slett samtale" -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "Ditt kjønn:" +#: ../../mod/mail.php:347 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside." -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Fødselsdag:" +#: ../../mod/mail.php:351 +msgid "Send Reply" +msgstr "Send svar" -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Gateadresse:" +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "Sidetittel" -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Sted/By:" +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen." -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "Postnummer/ZIP-kode:" +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes." -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "Land:" +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Passordene er ikke like." -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Region/fylke:" +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen." -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr " Sivilstand:" +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Din registrering venter på godkjenning av nettstedets eier." -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Hvem: (hvis det er aktuelt) " +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Din registrering kan ikke behandles." -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Registrering på dette nettstedet/denne hubben skjer bare gjennom godkjenning." -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "Siden [dato]:" +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registrer på et annet tilknyttet nettsted/hub" -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "Hjemmeside URL:" +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen." -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Religiøse synspunkter:" +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Tjenesteavtale" -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Nøkkelord:" +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Jeg godtar %s for dette nettstedet" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet." + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Vennligst skriv din invitasjonskode" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Din e-postadresse" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Velg et passord" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Vennligst skriv ditt passord en gang til" + +#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 +msgid "Block Name" +msgstr "Byggeklossens navn" + +#: ../../mod/blocks.php:149 +msgid "Block Title" +msgstr "Byggeklossens tittel" + +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet." + +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Slett denne kontoen" + +#: ../../mod/removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket." + +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket" + +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket" + +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:697 +msgid "Remove Account" +msgstr "Slett konto" + +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Ingen restriksjoner er funnet i tjenesteklasse." + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Elementet er ikke tilgjengelig." + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Kilden er laget." + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Kilden er oppdatert." + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Håndtere eksterne innholdskilder til din kanal." + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Ny kilde" + +#: ../../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 "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger." + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Bare importer innhold med disse ordene (ett ord per linje)" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "La stå tomt for å importere alt offentlig innhold" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Kilden ble ikke funnet." + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Endre kilde" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Slett kilde" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Kilden er fjernet" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Ikke i stand til å fjerne kilde." + +#: ../../mod/lockview.php:37 +msgid "Remote privacy information not available." +msgstr "Ekstern personverninformasjon er ikke tilgjengelig." + +#: ../../mod/lockview.php:58 +msgid "Visible to:" +msgstr "Synlig for:" + +#: ../../mod/acl.php:222 +msgid "network" +msgstr "nettverk" + +#: ../../mod/acl.php:232 +msgid "RSS" +msgstr "RSS" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Vennligst logg inn." + +#: ../../mod/rmagic.php:40 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig." + +#: ../../mod/rmagic.php:40 +msgid "The error message was:" +msgstr "Feilmeldingen var:" + +#: ../../mod/rmagic.php:44 +msgid "Authentication failed." +msgstr "Autentisering mislyktes." + +#: ../../mod/rmagic.php:84 +msgid "Remote Authentication" +msgstr "Fjernautentisering" + +#: ../../mod/rmagic.php:85 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" + +#: ../../mod/rmagic.php:86 +msgid "Authenticate" +msgstr "Autentiser" + +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" + +#: ../../mod/siteinfo.php:111 +#, php-format +msgid "Version %s" +msgstr "Versjon %s" + +#: ../../mod/siteinfo.php:132 +msgid "Installed plugins/addons/apps:" +msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" + +#: ../../mod/siteinfo.php:145 +msgid "No installed plugins/addons/apps" +msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" + +#: ../../mod/siteinfo.php:158 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dette er en $Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern." + +#: ../../mod/siteinfo.php:160 +msgid "Tag: " +msgstr "Merkelapp:" + +#: ../../mod/siteinfo.php:162 +msgid "Last background fetch: " +msgstr "Siste innhenting i bakgrunnen:" + +#: ../../mod/siteinfo.php:164 +msgid "Current load average: " +msgstr "Gjeldende belastningsgjennomsnitt:" + +#: ../../mod/siteinfo.php:167 +msgid "Running at web location" +msgstr "Kjører på webplasseringen" + +#: ../../mod/siteinfo.php:168 +msgid "" +"Please visit redmatrix.me to learn more" +" about $Projectname." +msgstr "Vennligst besøk redmatrix.me for å lære mer om $Projectname." + +#: ../../mod/siteinfo.php:169 +msgid "Bug reports and issues: please visit" +msgstr "Feilmeldinger og feilretting: vennligst besøk" + +#: ../../mod/siteinfo.php:171 +msgid "$projectname issues" +msgstr "$projectname problemer" + +#: ../../mod/siteinfo.php:172 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com" + +#: ../../mod/siteinfo.php:174 +msgid "Site Administrators" +msgstr "Nettstedsadministratorer" + +#: ../../mod/import.php:27 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Din tjenesteplan tillater bare %d kanaler." + +#: ../../mod/import.php:65 ../../mod/import_items.php:38 +msgid "Nothing to import." +msgstr "Ingenting å importere." + +#: ../../mod/import.php:89 ../../mod/import_items.php:62 +msgid "Unable to download data from old server" +msgstr "Ikke i stand til å laste ned data fra gammel tjener" + +#: ../../mod/import.php:95 ../../mod/import_items.php:68 +msgid "Imported file is empty." +msgstr "Importert fil er tom." -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Eksempel: fisking fotografering programvare" +#: ../../mod/import.php:115 ../../mod/import_items.php:82 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer." -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Brukt i katalogoppføringer" +#: ../../mod/import.php:148 +msgid "No channel. Import failed." +msgstr "Ingen kanal. Import mislyktes." -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Fortell oss om deg selv..." +#: ../../mod/import.php:493 +msgid "You must be logged in to use this feature." +msgstr "Du må være innlogget for å bruke denne funksjonen." -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Hobbier/Interesser" +#: ../../mod/import.php:498 +msgid "Import Channel" +msgstr "Importer kanal" -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformasjon og sosiale nettverk" +#: ../../mod/import.php:499 +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." +msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil." -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "Mine andre kanaler" +#: ../../mod/import.php:500 ../../mod/import_items.php:121 +msgid "File to Upload" +msgstr "Fil som skal lastes opp" -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Musikkinteresser" +#: ../../mod/import.php:501 +msgid "Or provide the old server/hub details" +msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Bøker, litteratur" +#: ../../mod/import.php:502 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamle identitetsadresse (xyz@example.com)" -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "TV/fjernsyn" +#: ../../mod/import.php:503 +msgid "Your old login email address" +msgstr "Din gamle innloggings e-postadresse" -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/kultur/underholdning" +#: ../../mod/import.php:504 +msgid "Your old login password" +msgstr "Ditt gamle innloggingspassord" -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Kjærlighet/romantikk" +#: ../../mod/import.php:505 +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 "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media." -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Arbeid/sysselsetting" +#: ../../mod/import.php:506 +msgid "Make this hub my primary location" +msgstr "Gjør dette nettstedet til min primære plassering" -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "Skole/utdanning" +#: ../../mod/import.php:507 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)" -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Dette er din standardprofil." +#: ../../mod/import.php:508 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig." -#: ../../mod/profiles.php:728 ../../mod/directory.php:207 -msgid "Age: " -msgstr "Alder:" +#: ../../mod/thing.php:111 +msgid "Thing updated" +msgstr "Tingen er oppdatert" -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Endre/håndter profiler" +#: ../../mod/thing.php:163 +msgid "Object store: failed" +msgstr "Objektlagring: mislyktes" -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Legg til profilting" +#: ../../mod/thing.php:167 +msgid "Thing added" +msgstr "Ting lagt til" -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Inkluder ønskverdige objekter i din profil" +#: ../../mod/thing.php:193 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Ingen vurderinger" +#: ../../mod/thing.php:256 +msgid "Show Thing" +msgstr "Vis ting" -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Vurderinger" +#: ../../mod/thing.php:263 +msgid "item not found." +msgstr "element ble ikke funnet." -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Vurdering:" +#: ../../mod/thing.php:296 +msgid "Edit Thing" +msgstr "Endre ting" -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Nettsted:" +#: ../../mod/thing.php:298 ../../mod/thing.php:348 +msgid "Select a profile" +msgstr "Velg en profil" -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Beskrivelse:" +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Post an activity" +msgstr "Legg inn en aktivitet" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protokollfeil. Ingen ID ble returnert." +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Only sends to viewers of the applicable profile" +msgstr "Sender bare til seere av den aktuelle profilen" -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:290 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Velkommen %s. Ekstern autentisering er vellykket." +#: ../../mod/thing.php:304 ../../mod/thing.php:353 +msgid "Name of thing e.g. something" +msgstr "Navn på ting for eksempel noe" -#: ../../mod/directory.php:213 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d vurdering" -msgstr[1] "%d vurderinger" +#: ../../mod/thing.php:306 ../../mod/thing.php:354 +msgid "URL of thing (optional)" +msgstr "URL til ting (valgfritt)" -#: ../../mod/directory.php:225 -msgid "Gender: " -msgstr "Kjønn:" +#: ../../mod/thing.php:308 ../../mod/thing.php:355 +msgid "URL for photo of thing (optional)" +msgstr "URL til bilde av ting (valgfritt)" -#: ../../mod/directory.php:227 -msgid "Status: " -msgstr "Status:" +#: ../../mod/thing.php:346 +msgid "Add Thing to your Profile" +msgstr "Legg til ting i din profil" -#: ../../mod/directory.php:229 -msgid "Homepage: " -msgstr "Hjemmeside:" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Grensen for totalt antall invitasjoner er overskredet." -#: ../../mod/directory.php:232 -msgid "Hometown: " -msgstr "Hjemby:" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : ikke en gyldig e-postadresse." -#: ../../mod/directory.php:234 -msgid "About: " -msgstr "Om:" +#: ../../mod/invite.php:76 +msgid "Please join us on $Projectname" +msgstr "Bli med oss på $Projectname" -#: ../../mod/directory.php:292 -msgid "Public Forum:" -msgstr "Offentlig forum:" +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted." -#: ../../mod/directory.php:295 -msgid "Keywords: " -msgstr "Nøkkelord:" +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : meldingslevering feilet." -#: ../../mod/directory.php:350 -msgid "Finding:" -msgstr "Finner:" +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d melding sendt." +msgstr[1] "%d meldinger sendt." -#: ../../mod/directory.php:355 -msgid "next page" -msgstr "Neste side" +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Du har ikke flere invitasjoner tilgjengelig" -#: ../../mod/directory.php:355 -msgid "previous page" -msgstr "Forrige side" +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Send invitasjoner" -#: ../../mod/directory.php:372 -msgid "No entries (some entries may be hidden)." -msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Skriv e-postadresser, en per linje:" -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Eksporter kanal" +#: ../../mod/invite.php:132 +msgid "Please join my community on $Projectname." +msgstr "Du er velkommen til å bli med i mitt fellesskap på $Projectname." + +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Du må oppgi denne invitasjonskoden:" -#: ../../mod/uexport.php:35 +#: ../../mod/invite.php:135 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 "Eksporter grunnleggende informasjon om kanalen din til en liten fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet." +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrer ved enhver $Projectname-lokasjon (de er alle forbundet med hverandre)" -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Eksporter innhold" +#: ../../mod/invite.php:137 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Skriv inn min $Projectname-adresse i nettstedets søkefelt." -#: ../../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 "Eksporter din kanalinformasjon og alt innholdet til en sikkerhetskopi som JSON-fil. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og alt innholdet ditt, men er generelt ikke egnet for å importere en kanal til en ny hub, fordi denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner." +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "eller besøk" -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Ingen forbindelser." +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klikk [Forbindelse]" -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besøk %s sin profil [%s]" +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_home.php:21 ../../mod/update_network.php:23 +#: ../../mod/update_search.php:46 ../../mod/update_public.php:21 +msgid "[Embedded content - reload page to view]" +msgstr "[Innebygget innhold - last siden på nytt for å se]" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "Målets signatur er ugyldig" +#: ../../mod/viewsrc.php:40 +msgid "Source of Item" +msgstr "Kilde til element" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Temainnstillinger er oppdatert." +#: ../../mod/settings.php:76 +msgid "Name is required" +msgstr "Navn er påkrevd" -#: ../../mod/admin.php:93 ../../mod/admin.php:440 -msgid "Site" -msgstr "Nettsted" +#: ../../mod/settings.php:80 +msgid "Key and Secret are required" +msgstr "Nøkkel og hemmelighet er påkrevd" -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Kontoer" +#: ../../mod/settings.php:231 +msgid "Passwords do not match. Password unchanged." +msgstr "Passordene stemmer ikke overens. Passord uforandret." -#: ../../mod/admin.php:95 ../../mod/admin.php:942 -msgid "Channels" -msgstr "Kanaler" +#: ../../mod/settings.php:235 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Tomme passord er ikke tillatt. Passord uforandret." -#: ../../mod/admin.php:96 ../../mod/admin.php:1033 ../../mod/admin.php:1073 -msgid "Plugins" -msgstr "Tilleggsfunksjoner" +#: ../../mod/settings.php:249 +msgid "Password changed." +msgstr "Passord endret." -#: ../../mod/admin.php:97 ../../mod/admin.php:1233 ../../mod/admin.php:1268 -msgid "Themes" -msgstr "Temaer" +#: ../../mod/settings.php:251 +msgid "Password update failed. Please try again." +msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Inspiser kø" +#: ../../mod/settings.php:265 +msgid "Not valid email." +msgstr "Ikke gyldig e-post." -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Profilinnstillinger" +#: ../../mod/settings.php:268 +msgid "Protected email address. Cannot change to that email." +msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen." + +#: ../../mod/settings.php:277 +msgid "System failure storing new email. Please try again." +msgstr "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen." -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "Databaseoppdateringer" +#: ../../mod/settings.php:518 +msgid "Settings updated." +msgstr "Innstillinger oppdatert." -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1351 -msgid "Logs" -msgstr "Logger" +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +#: ../../mod/settings.php:644 +msgid "Add application" +msgstr "Legg til program" -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Tilleggsfunksjoner" +#: ../../mod/settings.php:585 +msgid "Name of application" +msgstr "Navn på program" -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Brukerregistreringer som venter på bekreftelse" +#: ../../mod/settings.php:586 ../../mod/settings.php:612 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# Kontoer" +#: ../../mod/settings.php:586 ../../mod/settings.php:587 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisk laget - kan endres om du vil. Største lengde 20" -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# blokkerte kontoer" +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "# utgåtte kontoer" +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +msgid "Redirect" +msgstr "Omdirigering" -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "# kontoer som holder på å gå ut" +#: ../../mod/settings.php:588 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette" -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# Kanaler" +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Icon url" +msgstr "Ikon-URL" -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "# hoved" +#: ../../mod/settings.php:589 +msgid "Optional" +msgstr "Valgfritt" -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# kloner" +#: ../../mod/settings.php:600 +msgid "You can't edit this application." +msgstr "Du kan ikke endre dette programmet." -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "Meldingskøer" +#: ../../mod/settings.php:643 +msgid "Connected Apps" +msgstr "Tilkoblede app-er" -#: ../../mod/admin.php:240 ../../mod/admin.php:439 ../../mod/admin.php:533 -#: ../../mod/admin.php:807 ../../mod/admin.php:941 ../../mod/admin.php:1032 -#: ../../mod/admin.php:1072 ../../mod/admin.php:1232 ../../mod/admin.php:1267 -#: ../../mod/admin.php:1350 -msgid "Administration" -msgstr "Administrasjon" +#: ../../mod/settings.php:647 +msgid "Client key starts with" +msgstr "Klientnøkkel starter med" -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "Sammendrag" +#: ../../mod/settings.php:648 +msgid "No name" +msgstr "Ikke noe navn" -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Registrerte kontoer" +#: ../../mod/settings.php:649 +msgid "Remove authorization" +msgstr "Fjern tillatelse" -#: ../../mod/admin.php:245 ../../mod/admin.php:537 -msgid "Pending registrations" -msgstr "Ventende registreringer" +#: ../../mod/settings.php:662 +msgid "No feature settings configured" +msgstr "Ingen funksjonsinnstillinger er konfigurert" -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Registrerte kanaler" +#: ../../mod/settings.php:669 +msgid "Feature/Addon Settings" +msgstr "Funksjons-/Tilleggsinnstillinger" -#: ../../mod/admin.php:247 ../../mod/admin.php:538 -msgid "Active plugins" -msgstr "Aktive tilleggsfunksjoner" +#: ../../mod/settings.php:692 +msgid "Account Settings" +msgstr "Kontoinnstillinger" -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Versjon" +#: ../../mod/settings.php:693 +msgid "Enter New Password:" +msgstr "Skriv nytt passord:" -#: ../../mod/admin.php:356 -msgid "Site settings updated." -msgstr "Nettstedsinnstillinger er oppdatert." +#: ../../mod/settings.php:694 +msgid "Confirm New Password:" +msgstr "Bekreft nytt passord:" -#: ../../mod/admin.php:393 -msgid "experimental" -msgstr "eksperimentell" +#: ../../mod/settings.php:694 +msgid "Leave password fields blank unless changing" +msgstr "La passordfeltene stå blanke om det ikke skal endres" -#: ../../mod/admin.php:395 -msgid "unsupported" -msgstr "ikke støttet" +#: ../../mod/settings.php:696 ../../mod/settings.php:1027 +msgid "Email Address:" +msgstr "E-postadresse:" -#: ../../mod/admin.php:420 -msgid "Yes - with approval" -msgstr "Ja - med godkjenning" +#: ../../mod/settings.php:698 +msgid "Remove this account including all its channels" +msgstr "Slett denne kontoen inkludert alle dens kanaler" -#: ../../mod/admin.php:426 -msgid "My site is not a public server" -msgstr "Mitt nettsted er ikke en offentlig tjeneste" +#: ../../mod/settings.php:714 +msgid "Off" +msgstr "Av" -#: ../../mod/admin.php:427 -msgid "My site has paid access only" -msgstr "Mitt nettsted gir kun tilgang mot betaling" +#: ../../mod/settings.php:714 +msgid "On" +msgstr "På" -#: ../../mod/admin.php:428 -msgid "My site has free access only" -msgstr "Mitt nettsted har kun gratis tilgang" +#: ../../mod/settings.php:721 +msgid "Additional Features" +msgstr "Ekstra funksjoner" -#: ../../mod/admin.php:429 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" +#: ../../mod/settings.php:745 +msgid "Connector Settings" +msgstr "Koblingsinnstillinger" -#: ../../mod/admin.php:442 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registrering" +#: ../../mod/settings.php:784 +msgid "No special theme for mobile devices" +msgstr "Ikke noe spesielt tema for mobile enheter" -#: ../../mod/admin.php:443 -msgid "File upload" -msgstr "Last opp fil" +#: ../../mod/settings.php:787 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Eksperimentelt)" -#: ../../mod/admin.php:444 -msgid "Policies" -msgstr "Retningslinjer" +#: ../../mod/settings.php:826 +msgid "Display Settings" +msgstr "Visningsinnstillinger" -#: ../../mod/admin.php:449 -msgid "Site name" -msgstr "Nettstedets navn" +#: ../../mod/settings.php:827 +msgid "Theme Settings" +msgstr "Temainnstillinger" -#: ../../mod/admin.php:450 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../mod/settings.php:828 +msgid "Custom Theme Settings" +msgstr "Tilpassede temainnstillinger" -#: ../../mod/admin.php:451 -msgid "Administrator Information" -msgstr "Administratorinformasjon" +#: ../../mod/settings.php:829 +msgid "Content Settings" +msgstr "Innholdsinnstillinger" -#: ../../mod/admin.php:451 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her" +#: ../../mod/settings.php:835 +msgid "Display Theme:" +msgstr "Visningstema:" -#: ../../mod/admin.php:452 -msgid "System language" -msgstr "Systemspråk" +#: ../../mod/settings.php:836 +msgid "Mobile Theme:" +msgstr "Mobiltema:" -#: ../../mod/admin.php:453 -msgid "System theme" -msgstr "Systemtema" +#: ../../mod/settings.php:837 +msgid "Enable user zoom on mobile devices" +msgstr "Skru på brukerstyrt zoom på mobile enheter" -#: ../../mod/admin.php:453 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger" +#: ../../mod/settings.php:838 +msgid "Update browser every xx seconds" +msgstr "Oppdater nettleser hvert xx sekunder" -#: ../../mod/admin.php:454 -msgid "Mobile system theme" -msgstr "Mobilt systemtema" +#: ../../mod/settings.php:838 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 sekunder, ikke noe maksimum" -#: ../../mod/admin.php:454 -msgid "Theme for mobile devices" -msgstr "Tema for mobile enheter" +#: ../../mod/settings.php:839 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maksimalt antall samtaler å laste samtidig:" -#: ../../mod/admin.php:456 -msgid "Enable Diaspora Protocol" -msgstr "Skru på Diaspora-protokollen" +#: ../../mod/settings.php:839 +msgid "Maximum of 100 items" +msgstr "Maksimum 100 elementer" -#: ../../mod/admin.php:456 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Samhandling med Diaspora og Friendica - eksperimentell" +#: ../../mod/settings.php:840 +msgid "Show emoticons (smilies) as images" +msgstr "Vis emoticons (smilefjes) som bilder" -#: ../../mod/admin.php:457 -msgid "Allow Feeds as Connections" -msgstr "Tillat strømmer som forbindelser" +#: ../../mod/settings.php:841 +msgid "Link post titles to source" +msgstr "Lenk innleggets tittel til kilden" -#: ../../mod/admin.php:457 -msgid "(Heavy system resource usage)" -msgstr "(Tung bruk av systemressurser)" +#: ../../mod/settings.php:842 +msgid "System Page Layout Editor - (advanced)" +msgstr "Systemsidens layoutbehandler - (avansert)" -#: ../../mod/admin.php:458 -msgid "Maximum image size" -msgstr "Største bildestørrelse" +#: ../../mod/settings.php:845 +msgid "Use blog/list mode on channel page" +msgstr "Bruk blogg-/listemodus på kanalsiden" -#: ../../mod/admin.php:458 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset." +#: ../../mod/settings.php:845 ../../mod/settings.php:846 +msgid "(comments displayed separately)" +msgstr "(kommentarer vist separat)" -#: ../../mod/admin.php:459 -msgid "Does this site allow new member registration?" -msgstr "Tillater dette nettstedet registrering av nye medlemmer?" +#: ../../mod/settings.php:846 +msgid "Use blog/list mode on matrix page" +msgstr "Bruk blogg-/listemodus på matrix-siden" -#: ../../mod/admin.php:460 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?" +#: ../../mod/settings.php:847 +msgid "Channel page max height of content (in pixels)" +msgstr "Kanalsidens makshøyde for innhold (i pixler)" -#: ../../mod/admin.php:461 -msgid "Register text" -msgstr "Registreringstekst" +#: ../../mod/settings.php:847 ../../mod/settings.php:848 +msgid "click to expand content exceeding this height" +msgstr "klikk for å utvide innhold som overstiger denne høyden" -#: ../../mod/admin.php:461 -msgid "Will be displayed prominently on the registration page." -msgstr "Vil bli vist på en fremtredende måte på registreringssiden." +#: ../../mod/settings.php:848 +msgid "Matrix page max height of content (in pixels)" +msgstr "Matrix-sidens makshøyde for innholde (i pixler)" -#: ../../mod/admin.php:462 -msgid "Accounts abandoned after x days" -msgstr "Kontoer forlatt etter x dager" +#: ../../mod/settings.php:882 +msgid "Nobody except yourself" +msgstr "Ingen unntatt deg selv" -#: ../../mod/admin.php:462 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense." +#: ../../mod/settings.php:883 +msgid "Only those you specifically allow" +msgstr "Bare de du spesifikt tillater" -#: ../../mod/admin.php:463 -msgid "Allowed friend domains" -msgstr "Tillatte vennedomener" +#: ../../mod/settings.php:884 +msgid "Approved connections" +msgstr "Godkjente forbindelser" -#: ../../mod/admin.php:463 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener." +#: ../../mod/settings.php:885 +msgid "Any connections" +msgstr "Enhver forbindelse" -#: ../../mod/admin.php:464 -msgid "Allowed email domains" -msgstr "Tillate e-postdomener" +#: ../../mod/settings.php:886 +msgid "Anybody on this website" +msgstr "Enhver ved dette nettstedet" -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt" +#: ../../mod/settings.php:887 +msgid "Anybody in this network" +msgstr "Enhver i dette nettverket" -#: ../../mod/admin.php:465 -msgid "Not allowed email domains" -msgstr "Ikke tillatte e-postdomener" +#: ../../mod/settings.php:888 +msgid "Anybody authenticated" +msgstr "Enhver som er autentisert" -#: ../../mod/admin.php:465 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert." +#: ../../mod/settings.php:889 +msgid "Anybody on the internet" +msgstr "Enhver på Internett" -#: ../../mod/admin.php:466 -msgid "Block public" -msgstr "Blokker offentlig tilgang" +#: ../../mod/settings.php:963 +msgid "Publish your default profile in the network directory" +msgstr "Publiser din standardprofil i nettverkskatalogen" -#: ../../mod/admin.php:466 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn." +#: ../../mod/settings.php:968 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?" -#: ../../mod/admin.php:467 -msgid "Verify Email Addresses" -msgstr "Bekreft e-postadresser" +#: ../../mod/settings.php:977 +msgid "Your channel address is" +msgstr "Din kanaladresse er" -#: ../../mod/admin.php:467 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)." +#: ../../mod/settings.php:1018 +msgid "Channel Settings" +msgstr "Kanalinnstillinger" -#: ../../mod/admin.php:468 -msgid "Force publish" -msgstr "Tving publisering" +#: ../../mod/settings.php:1025 +msgid "Basic Settings" +msgstr "Grunninnstillinger" -#: ../../mod/admin.php:468 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog." +#: ../../mod/settings.php:1028 +msgid "Your Timezone:" +msgstr "Din tidssone:" -#: ../../mod/admin.php:469 -msgid "Disable discovery tab" -msgstr "Skru av oppdagelsesfanen" +#: ../../mod/settings.php:1029 +msgid "Default Post Location:" +msgstr "Standard plassering ved innlegg:" -#: ../../mod/admin.php:469 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Fjern fanen fra nettverksvisningen med offentlig innhold trukket inn fra kilder valg for dette nettstedet." +#: ../../mod/settings.php:1029 +msgid "Geographical location to display on your posts" +msgstr "Geografisk plassering som vises på dine innlegg" + +#: ../../mod/settings.php:1030 +msgid "Use Browser Location:" +msgstr "Bruk nettleseren sin plassering:" -#: ../../mod/admin.php:470 -msgid "No login on Homepage" -msgstr "Ingen innlogging på hjemmesiden" +#: ../../mod/settings.php:1032 +msgid "Adult Content" +msgstr "Voksent innhold" -#: ../../mod/admin.php:470 +#: ../../mod/settings.php:1032 msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Sett hake for å skjule innloggingsskjemaet fra ditt nettsteds hjemmeside for besøkende som ikke er innlogget (for eksempel når du legger inn innhold på hjemmesiden via nettstedskanalen)." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)" -#: ../../mod/admin.php:472 -msgid "Proxy user" -msgstr "Brukernavn mellomtjener" +#: ../../mod/settings.php:1034 +msgid "Security and Privacy Settings" +msgstr "Sikkerhets- og personverninnstillinger" -#: ../../mod/admin.php:473 -msgid "Proxy URL" -msgstr "Mellomtjener URL" +#: ../../mod/settings.php:1036 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Dine tillatelser er allerede satt. Klikk for å se/justere." -#: ../../mod/admin.php:474 -msgid "Network timeout" -msgstr "Nettverk tidsavbrudd" +#: ../../mod/settings.php:1038 +msgid "Hide my online presence" +msgstr "Skjul min tilstedeværelse online" -#: ../../mod/admin.php:474 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)." +#: ../../mod/settings.php:1038 +msgid "Prevents displaying in your profile that you are online" +msgstr "Forhindrer visning på din profil av at du er online " -#: ../../mod/admin.php:475 -msgid "Delivery interval" -msgstr "Leveringsinterval" +#: ../../mod/settings.php:1040 +msgid "Simple Privacy Settings:" +msgstr "Enkle personverninnstillinger:" -#: ../../mod/admin.php:475 +#: ../../mod/settings.php:1041 msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere." - -#: ../../mod/admin.php:476 -msgid "Poll interval" -msgstr "Spørreintervall" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)" -#: ../../mod/admin.php:476 +#: ../../mod/settings.php:1042 msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)" -#: ../../mod/admin.php:477 -msgid "Maximum Load Average" -msgstr "Største belastningsgjennomsnitt" +#: ../../mod/settings.php:1043 +msgid "Private - default private, never open or public" +msgstr "Privat - standard er privat, aldri åpen eller offentlig" -#: ../../mod/admin.php:477 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50." +#: ../../mod/settings.php:1044 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blokkert - standard blokkert til/fra alle" -#: ../../mod/admin.php:525 -msgid "No server found" -msgstr "Ingen tjener funnet" +#: ../../mod/settings.php:1046 +msgid "Allow others to tag your posts" +msgstr "Tillat andre å merke dine innlegg" -#: ../../mod/admin.php:532 ../../mod/admin.php:821 -msgid "ID" -msgstr "ID" +#: ../../mod/settings.php:1046 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant" -#: ../../mod/admin.php:532 -msgid "for channel" -msgstr "for kanalen" +#: ../../mod/settings.php:1048 +msgid "Advanced Privacy Settings" +msgstr "Avanserte personverninnstillinger" -#: ../../mod/admin.php:532 -msgid "on server" -msgstr "på tjener" +#: ../../mod/settings.php:1050 +msgid "Expire other channel content after this many days" +msgstr "Annet kanal innhold utløper etter så mange dager" -#: ../../mod/admin.php:532 -msgid "Status" -msgstr "Status" +#: ../../mod/settings.php:1050 +msgid "0 or blank prevents expiration" +msgstr "0 eller blankt forhindrer utløp" -#: ../../mod/admin.php:534 -msgid "Server" -msgstr "Tjener" +#: ../../mod/settings.php:1051 +msgid "Maximum Friend Requests/Day:" +msgstr "Maksimalt antall venneforespørsler per dag:" -#: ../../mod/admin.php:551 -msgid "Update has been marked successful" -msgstr "Oppdateringen har blitt merket som en suksess" +#: ../../mod/settings.php:1051 +msgid "May reduce spam activity" +msgstr "Kan redusere søppelpostaktivitet" -#: ../../mod/admin.php:561 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Utføring av %s feilet. Sjekk systemlogger." +#: ../../mod/settings.php:1052 +msgid "Default Post Permissions" +msgstr "Standard innleggstillatelser" -#: ../../mod/admin.php:564 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Oppdatering %s ble gjennomført med suksess." +#: ../../mod/settings.php:1057 +msgid "Channel permissions category:" +msgstr "Kategori med kanaltillatelser:" -#: ../../mod/admin.php:568 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket." +#: ../../mod/settings.php:1063 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" -#: ../../mod/admin.php:571 -#, php-format -msgid "Update function %s could not be found." -msgstr "Oppdatering av funksjon %s kunne ikke finnes." +#: ../../mod/settings.php:1063 +msgid "Useful to reduce spamming" +msgstr "Nyttig for å redusere søppelpost" -#: ../../mod/admin.php:587 -msgid "No failed updates." -msgstr "Ingen mislykkede oppdateringer." +#: ../../mod/settings.php:1066 +msgid "Notification Settings" +msgstr "Varslingsinnstillinger" -#: ../../mod/admin.php:591 -msgid "Failed Updates" -msgstr "Mislykkede oppdateringer" +#: ../../mod/settings.php:1067 +msgid "By default post a status message when:" +msgstr "Legg inn en statusmelding når du:" -#: ../../mod/admin.php:593 -msgid "Mark success (if update was manually applied)" -msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" +#: ../../mod/settings.php:1068 +msgid "accepting a friend request" +msgstr "aksepterer en venneforespørsel" -#: ../../mod/admin.php:594 -msgid "Attempt to execute this update step automatically" -msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" +#: ../../mod/settings.php:1069 +msgid "joining a forum/community" +msgstr "blir med i et forum/miljø" -#: ../../mod/admin.php:628 -msgid "Queue Statistics" -msgstr "Køstatistikk" +#: ../../mod/settings.php:1070 +msgid "making an interesting profile change" +msgstr "gjør en interessant profilendring" -#: ../../mod/admin.php:629 -msgid "Total Entries" -msgstr "Totalt antall oppføringer" +#: ../../mod/settings.php:1071 +msgid "Send a notification email when:" +msgstr "Send en varsel-e-post når:" -#: ../../mod/admin.php:630 -msgid "Priority" -msgstr "Prioritet" +#: ../../mod/settings.php:1072 +msgid "You receive a connection request" +msgstr "Du har mottatt en forespørsel om forbindelse" -#: ../../mod/admin.php:631 -msgid "Destination URL" -msgstr "Mål-URL" +#: ../../mod/settings.php:1073 +msgid "Your connections are confirmed" +msgstr "Dine forbindelser er bekreftet" -#: ../../mod/admin.php:632 -msgid "Mark hub permanently offline" -msgstr "Merk hub som permanent offline" +#: ../../mod/settings.php:1074 +msgid "Someone writes on your profile wall" +msgstr "Noen skriver på din profilvegg" -#: ../../mod/admin.php:633 -msgid "Empty queue for this hub" -msgstr "Tøm køen for denne hubben" +#: ../../mod/settings.php:1075 +msgid "Someone writes a followup comment" +msgstr "Noen skriver en oppfølgende kommentar" -#: ../../mod/admin.php:634 -msgid "Last known contact" -msgstr "Siste kjente kontakt" +#: ../../mod/settings.php:1076 +msgid "You receive a private message" +msgstr "Du mottar en privat melding" -#: ../../mod/admin.php:670 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s bruker blokkert/ikke blokkert lenger" -msgstr[1] "%s brukere blokkert/ikke blokkert lenger" +#: ../../mod/settings.php:1077 +msgid "You receive a friend suggestion" +msgstr "Du mottok et venneforslag" -#: ../../mod/admin.php:678 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s bruker slettet" -msgstr[1] "%s brukere slettet" +#: ../../mod/settings.php:1078 +msgid "You are tagged in a post" +msgstr "Du merkes i et innlegg" -#: ../../mod/admin.php:714 -msgid "Account not found" -msgstr "Kontoen ble ikke funnet" +#: ../../mod/settings.php:1079 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du ble prikket/oppildnet/og så vider i et innlegg" -#: ../../mod/admin.php:734 -#, php-format -msgid "User '%s' blocked" -msgstr "Brukeren '%s' er blokkert" +#: ../../mod/settings.php:1082 +msgid "Show visual notifications including:" +msgstr "Vis visuelle varslinger om:" -#: ../../mod/admin.php:742 -#, php-format -msgid "User '%s' unblocked" -msgstr "Brukeren '%s' er ikke blokkert lenger" +#: ../../mod/settings.php:1084 +msgid "Unseen matrix activity" +msgstr "Usett matrixaktivitet" -#: ../../mod/admin.php:808 ../../mod/admin.php:820 -msgid "Users" -msgstr "Brukere" +#: ../../mod/settings.php:1085 +msgid "Unseen channel activity" +msgstr "Usett kanalaktivitet" -#: ../../mod/admin.php:810 ../../mod/admin.php:944 -msgid "select all" -msgstr "velg alle" +#: ../../mod/settings.php:1086 +msgid "Unseen private messages" +msgstr "Usette private meldinger" -#: ../../mod/admin.php:811 -msgid "User registrations waiting for confirm" -msgstr "Brukerregistreringer som venter på bekreftelse" +#: ../../mod/settings.php:1086 ../../mod/settings.php:1091 +#: ../../mod/settings.php:1092 ../../mod/settings.php:1093 +msgid "Recommended" +msgstr "Anbefalt" -#: ../../mod/admin.php:812 -msgid "Request date" -msgstr "Dato for forespørsel" +#: ../../mod/settings.php:1087 +msgid "Upcoming events" +msgstr "Kommende hendelser" -#: ../../mod/admin.php:813 -msgid "No registrations." -msgstr "Ingen registreringer." +#: ../../mod/settings.php:1088 +msgid "Events today" +msgstr "Hendelser idag" -#: ../../mod/admin.php:814 -msgid "Approve" -msgstr "Godkjenn" +#: ../../mod/settings.php:1089 +msgid "Upcoming birthdays" +msgstr "Kommende fødselsdager" -#: ../../mod/admin.php:815 -msgid "Deny" -msgstr "Avslå" +#: ../../mod/settings.php:1089 +msgid "Not available in all themes" +msgstr "Ikke tilgjengelig i alle temaer" -#: ../../mod/admin.php:821 -msgid "Register date" -msgstr "Registreringsdato" +#: ../../mod/settings.php:1090 +msgid "System (personal) notifications" +msgstr "System (personlige) varslinger" -#: ../../mod/admin.php:821 -msgid "Last login" -msgstr "Siste innlogging" +#: ../../mod/settings.php:1091 +msgid "System info messages" +msgstr "System infomeldinger" -#: ../../mod/admin.php:821 -msgid "Expires" -msgstr "Utløper" +#: ../../mod/settings.php:1092 +msgid "System critical alerts" +msgstr "System kritiske varsel" -#: ../../mod/admin.php:821 -msgid "Service Class" -msgstr "Tjenesteklasse" +#: ../../mod/settings.php:1093 +msgid "New connections" +msgstr "Nye forbindelser" -#: ../../mod/admin.php:823 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte brukere vil bli slettet!\\n\\nAlt som disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette valgte brukere og deres innhold?" +#: ../../mod/settings.php:1094 +msgid "System Registrations" +msgstr "Systemregistreringer" -#: ../../mod/admin.php:824 +#: ../../mod/settings.php:1095 msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren og alt innholdet til denne brukeren?" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler" -#: ../../mod/admin.php:858 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanal er sensurert/ikke sensurert lenger" -msgstr[1] "%s kanaler er sensurert/ikke sensurert lenger" +#: ../../mod/settings.php:1097 +msgid "Notify me of events this many days in advance" +msgstr "Varsle meg om hendelser dette antall dager på forhånd" -#: ../../mod/admin.php:865 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanal slettet" -msgstr[1] "%s kanaler slettet" +#: ../../mod/settings.php:1097 +msgid "Must be greater than 0" +msgstr "Må være større enn 0" -#: ../../mod/admin.php:883 -msgid "Channel not found" -msgstr "Kanalen ble ikke funnet" +#: ../../mod/settings.php:1099 +msgid "Advanced Account/Page Type Settings" +msgstr "Avanserte innstillinger for konto/sidetype" -#: ../../mod/admin.php:894 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanalen '%s' er slettet" +#: ../../mod/settings.php:1100 +msgid "Change the behaviour of this account for special situations" +msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner" -#: ../../mod/admin.php:905 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanalen '%s' er ikke sensurert lenger" +#: ../../mod/settings.php:1103 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!" -#: ../../mod/admin.php:905 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanalen '%s' er sensurert" +#: ../../mod/settings.php:1104 +msgid "Miscellaneous Settings" +msgstr "Diverse innstillinger" -#: ../../mod/admin.php:946 -msgid "Censor" -msgstr "Sensurer" +#: ../../mod/settings.php:1105 +msgid "Default photo upload folder" +msgstr "Standard mappe for opplasting av bilder" -#: ../../mod/admin.php:947 -msgid "Uncensor" -msgstr "Ikke sensurer lenger" +#: ../../mod/settings.php:1106 +msgid "Default file upload folder" +msgstr "Standard mappe for opplasting av filer" -#: ../../mod/admin.php:950 -msgid "UID" -msgstr "UID" +#: ../../mod/settings.php:1108 +msgid "Personal menu to display in your channel pages" +msgstr "Personlig meny som kan vises på dine kanalsider" -#: ../../mod/admin.php:952 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?" +#: ../../mod/settings.php:1110 +msgid "Remove this channel." +msgstr "Fjern denne kanalen." -#: ../../mod/admin.php:953 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Xchan oppslag" -#: ../../mod/admin.php:993 -#, php-format -msgid "Plugin %s disabled." -msgstr "Tilleggsfunksjonen %s er avskrudd." +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Slå opp xchan som begynner med (eller webbie):" -#: ../../mod/admin.php:997 +#: ../../mod/manage.php:130 #, php-format -msgid "Plugin %s enabled." -msgstr "Tilleggsfunksjonen %s er påskrudd." - -#: ../../mod/admin.php:1007 ../../mod/admin.php:1205 -msgid "Disable" -msgstr "Skru av" - -#: ../../mod/admin.php:1010 ../../mod/admin.php:1207 -msgid "Enable" -msgstr "Skru på" +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." -#: ../../mod/admin.php:1034 ../../mod/admin.php:1234 -msgid "Toggle" -msgstr "Skru av og på" +#: ../../mod/manage.php:138 +msgid "Create a new channel" +msgstr "Lag en ny kanal" -#: ../../mod/admin.php:1042 ../../mod/admin.php:1244 -msgid "Author: " -msgstr "Forfatter:" +#: ../../mod/manage.php:161 +msgid "Current Channel" +msgstr "Gjeldende kanal" -#: ../../mod/admin.php:1043 ../../mod/admin.php:1245 -msgid "Maintainer: " -msgstr "Vedlikeholder:" +#: ../../mod/manage.php:163 +msgid "Switch to one of your channels by selecting it." +msgstr "Bytt til en av dine kanaler ved å velge den." -#: ../../mod/admin.php:1170 -msgid "No themes found." -msgstr "Ingen temaer er funnet." +#: ../../mod/manage.php:164 +msgid "Default Channel" +msgstr "Standardkanal" -#: ../../mod/admin.php:1226 -msgid "Screenshot" -msgstr "Skjermbilde" +#: ../../mod/manage.php:165 +msgid "Make Default" +msgstr "Gjør til standard" -#: ../../mod/admin.php:1273 -msgid "[Experimental]" -msgstr "[Eksperimentelt]" +#: ../../mod/manage.php:168 +#, php-format +msgid "%d new messages" +msgstr "%d nye meldinger" -#: ../../mod/admin.php:1274 -msgid "[Unsupported]" -msgstr "[Ingen støtte]" +#: ../../mod/manage.php:169 +#, php-format +msgid "%d new introductions" +msgstr "%d nye introduksjoner" -#: ../../mod/admin.php:1298 -msgid "Log settings updated." -msgstr "Logginnstillinger er oppdatert." +#: ../../mod/manage.php:171 +msgid "Delegated Channels" +msgstr "Delegerte kanaler" -#: ../../mod/admin.php:1353 -msgid "Clear" -msgstr "Tøm" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Tillat programforbindelse" -#: ../../mod/admin.php:1359 -msgid "Debugging" -msgstr "Feilsøking" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" -#: ../../mod/admin.php:1360 -msgid "Log file" -msgstr "Loggfil" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Vennligst logg inn for å fortsette." -#: ../../mod/admin.php:1360 +#: ../../mod/api.php:104 msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Må kunne skrives til av webtjenesten. Relativ til din Red sin toppnivåkatalog." +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?" -#: ../../mod/admin.php:1361 -msgid "Log level" -msgstr "Loggnivå" +#: ../../mod/connections.php:52 ../../mod/connections.php:150 +msgid "Blocked" +msgstr "Blokkert" -#: ../../mod/admin.php:1407 -msgid "New Profile Field" -msgstr "Nytt profilfelt" +#: ../../mod/connections.php:57 ../../mod/connections.php:157 +msgid "Ignored" +msgstr "Ignorert" -#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 -msgid "Field nickname" -msgstr "Feltets kallenavn" +#: ../../mod/connections.php:62 ../../mod/connections.php:171 +msgid "Hidden" +msgstr "Skjult" -#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 -msgid "System name of field" -msgstr "Systemnavnet til feltet" +#: ../../mod/connections.php:67 ../../mod/connections.php:164 +msgid "Archived" +msgstr "Arkivert" -#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 -msgid "Input type" -msgstr "Inndata-type" +#: ../../mod/connections.php:128 +msgid "Suggest new connections" +msgstr "Foreslå nye forbindelser" -#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 -msgid "Field Name" -msgstr "Feltnavn" +#: ../../mod/connections.php:131 +msgid "New Connections" +msgstr "Nye forbindelser" -#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 -msgid "Label on profile pages" -msgstr "Merkelapp på profilsider" +#: ../../mod/connections.php:134 +msgid "Show pending (new) connections" +msgstr "Vis ventende (nye) forbindelser" -#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 -msgid "Help text" -msgstr "Hjelpetekst" +#: ../../mod/connections.php:137 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle forbindelser" -#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 -msgid "Additional info (optional)" -msgstr "Tilleggsinformasjon (valgfritt)" +#: ../../mod/connections.php:140 +msgid "Show all connections" +msgstr "Vis alle forbindelser" -#: ../../mod/admin.php:1421 -msgid "Field definition not found" -msgstr "Feltdefinisjonen ble ikke funnet" +#: ../../mod/connections.php:143 +msgid "Unblocked" +msgstr "Ikke blokkert lenger" -#: ../../mod/admin.php:1427 -msgid "Edit Profile Field" -msgstr "Endre profilfelt" +#: ../../mod/connections.php:146 +msgid "Only show unblocked connections" +msgstr "Vis bare forbindelser som ikke er blokkert" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Ikke i stand til å finne hubben din." +#: ../../mod/connections.php:153 +msgid "Only show blocked connections" +msgstr "Vis bare forbindelser som er blokkert" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Innlegg vellykket." +#: ../../mod/connections.php:160 +msgid "Only show ignored connections" +msgstr "Vis bare ignorerte forbindelser" -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Endre byggekloss" +#: ../../mod/connections.php:167 +msgid "Only show archived connections" +msgstr "Vis bare arkiverte forbindelser" -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Slett byggeklossen?" +#: ../../mod/connections.php:174 +msgid "Only show hidden connections" +msgstr "Vis bare skjulte forbindelser" -#: ../../mod/editblock.php:188 -msgid "Delete Block" -msgstr "Slett byggekloss" +#: ../../mod/connections.php:225 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen." +#: ../../mod/connections.php:226 +msgid "Edit connection" +msgstr "Endre forbindelse" -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes." +#: ../../mod/connections.php:264 +msgid "Search your connections" +msgstr "Søk blant dine forbindelser" -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Passordene er ikke like." +#: ../../mod/connections.php:265 +msgid "Finding: " +msgstr "Fant:" -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen." +#: ../../mod/editlayout.php:112 +msgid "Delete layout?" +msgstr "Slett layout?" -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering venter på godkjenning av nettstedets eier." +#: ../../mod/editlayout.php:178 +msgid "Edit Layout" +msgstr "Endre layout" -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Din registrering kan ikke behandles." +#: ../../mod/editwebpage.php:153 +msgid "Delete webpage?" +msgstr "Slett webside?" -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Registrering på dette nettstedet/denne hubben skjer bare gjennom godkjenning." +#: ../../mod/editwebpage.php:172 +msgid "Page link title" +msgstr "Sidens lenketittel" -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrer på et annet tilknyttet nettsted/hub" +#: ../../mod/editwebpage.php:222 +msgid "Edit Webpage" +msgstr "Endre webside" -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen." +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Samling opprettet." -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Tjenesteavtale" +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Kunne ikke lage samling." -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Jeg godtar %s for dette nettstedet" +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Samlingen er oppdatert." -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet." +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Lag en samling med kanaler." -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon." +#: ../../mod/group.php:87 ../../mod/group.php:180 +msgid "Collection Name: " +msgstr "Navn på samling:" -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Vennligst skriv din invitasjonskode" +#: ../../mod/group.php:89 ../../mod/group.php:183 +msgid "Members are visible to other channels" +msgstr "Medlemmer er synlig for andre kanaler" -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Din e-postadresse" +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Samling fjernet." -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Velg et passord" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Ikke i stand til å fjerne samlingen." -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Vennligst skriv ditt passord en gang til" +#: ../../mod/group.php:179 +msgid "Collection Editor" +msgstr "Samlingsbehandler" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet." +#: ../../mod/group.php:193 +msgid "Members" +msgstr "Medlemmer" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Slett denne kontoen" +#: ../../mod/group.php:195 +msgid "All Connected Channels" +msgstr "Alle tilkoblede kanaler" -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "ADVARSEL:" +#: ../../mod/group.php:227 +msgid "Click on a channel to add or remove." +msgstr "Klikk på en kanal for å legge til eller fjerne." -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket." +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Fortsett" -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Denne handlingen er permanent og kan ikke angres!" +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Premiumkanal-oppsett" -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Vennligst skriv ditt passord for å få bekreftelse:" +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Slå på restriksjoner for forbindelse med premiumkanal" -#: ../../mod/removeaccount.php:60 +#: ../../mod/connect.php:88 msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." -#: ../../mod/removeaccount.php:60 +#: ../../mod/connect.php:90 ../../mod/connect.php:110 msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket" - -#: ../../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 "[Innebygget innhold - last siden på nytt for å se]" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informasjon om sideeier kunne ikke hentes." +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Albumet ble ikke funnet." +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Slett album" +#: ../../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 "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." -#: ../../mod/photos.php:159 ../../mod/photos.php:930 -msgid "Delete Photo" -msgstr "Slett bilde" +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Ingen bilder valgt" +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Begrenset kanal eller premiumkanal" -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Tilgang til dette elementet er begrenset." +#: ../../mod/viewconnections.php:59 +msgid "No connections." +msgstr "Ingen forbindelser." -#: ../../mod/photos.php:523 +#: ../../mod/viewconnections.php:72 #, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." +msgid "Visit %s's profile [%s]" +msgstr "Besøk %s sin profil [%s]" -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB lagringsplass til bilder er brukt." +#: ../../mod/locs.php:21 ../../mod/locs.php:49 +msgid "Location not found." +msgstr "Plassering er ikke funnet." -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Last opp bilder" +#: ../../mod/locs.php:57 +msgid "Location lookup failed." +msgstr "Oppslag på plassering mislyktes." -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:915 -msgid "Enter a new album name" -msgstr "Skriv et nytt albumnavn" +#: ../../mod/locs.php:61 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering." -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:916 -msgid "or select an existing one (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" +#: ../../mod/locs.php:93 +msgid "No locations found." +msgstr "Ingen plasseringer ble funnet." -#: ../../mod/photos.php:556 -msgid "Create a status post for this upload" -msgstr "Lag et statusinnlegg for denne opplastingen" +#: ../../mod/locs.php:104 +msgid "Manage Channel Locations" +msgstr "Håndter kanalplasseringer" -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumnavnet kunne ikke dekodes" +#: ../../mod/locs.php:105 +msgid "Location (address)" +msgstr "Plassering (adresse)" -#: ../../mod/photos.php:625 ../../mod/photos.php:1157 -#: ../../mod/photos.php:1173 -msgid "Contact Photos" -msgstr "Kontaktbilder" +#: ../../mod/locs.php:106 +msgid "Primary Location" +msgstr "Hovedplassering" -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Vis nyeste først" +#: ../../mod/locs.php:107 +msgid "Drop location" +msgstr "Slett plassering" -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Vis eldste først" +#: ../../mod/post.php:234 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokalt. Vennligst logg ut og prøv på nytt." -#: ../../mod/photos.php:675 ../../mod/photos.php:1205 -msgid "View Photo" -msgstr "Vis foto" +#: ../../mod/setup.php:191 +msgid "$Projectname Server - Setup" +msgstr "$Projectname-tjener - oppsett" -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Endre album" +#: ../../mod/setup.php:195 +msgid "Could not connect to database." +msgstr "Fikk ikke kontakt med databasen." -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset." +#: ../../mod/setup.php:199 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS." -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "Bilde er utilgjengelig" +#: ../../mod/setup.php:206 +msgid "Could not create table." +msgstr "Kunne ikke lage tabellen." -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Bruk som profilbilde" +#: ../../mod/setup.php:211 +msgid "Your site database has been installed." +msgstr "Databasen til ditt nettsted har blitt installert." -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privat bilde" +#: ../../mod/setup.php:215 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient." -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "Vis i full størrelse" +#: ../../mod/setup.php:216 ../../mod/setup.php:284 ../../mod/setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Vennligst les filen \"install/INSTALL.txt\"." -#: ../../mod/photos.php:909 -msgid "Edit photo" -msgstr "Endre bilde" +#: ../../mod/setup.php:281 +msgid "System check" +msgstr "Systemsjekk" -#: ../../mod/photos.php:911 -msgid "Rotate CW (right)" -msgstr "Roter med klokka (mot høyre)" +#: ../../mod/setup.php:286 +msgid "Check again" +msgstr "Sjekk igjen" -#: ../../mod/photos.php:912 -msgid "Rotate CCW (left)" -msgstr "Roter mot klokka (venstre)" +#: ../../mod/setup.php:308 +msgid "Database connection" +msgstr "Databaseforbindelse" -#: ../../mod/photos.php:919 -msgid "Caption" -msgstr "Overskrift" +#: ../../mod/setup.php:309 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "For å installere $Projectname må du oppgi hvordan din database kan kontaktes." -#: ../../mod/photos.php:921 -msgid "Add a Tag" -msgstr "Legg til merkelapp" +#: ../../mod/setup.php:310 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene." -#: ../../mod/photos.php:925 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../mod/setup.php:311 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter." -#: ../../mod/photos.php:928 -msgid "Flag as adult in album view" -msgstr "Flag som voksent i albumvisning" +#: ../../mod/setup.php:315 +msgid "Database Server Name" +msgstr "Navn på databasetjener" -#: ../../mod/photos.php:1120 -msgid "In This Photo:" -msgstr "I dette bildet:" +#: ../../mod/setup.php:315 +msgid "Default is localhost" +msgstr "Standard er localhost" -#: ../../mod/photos.php:1125 -msgid "Map" -msgstr "Kart" +#: ../../mod/setup.php:316 +msgid "Database Port" +msgstr "Databaseport" -#: ../../mod/photos.php:1211 -msgid "View Album" -msgstr "Vis album" +#: ../../mod/setup.php:316 +msgid "Communication port number - use 0 for default" +msgstr "Kommunikasjonsportnummer - bruk 0 for standard" -#: ../../mod/photos.php:1234 -msgid "Recent Photos" -msgstr "Nye bilder" +#: ../../mod/setup.php:317 +msgid "Database Login Name" +msgstr "Database innloggingsnavn" -#: ../../mod/post.php:234 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokalt. Vennligst logg ut og prøv på nytt." +#: ../../mod/setup.php:318 +msgid "Database Login Password" +msgstr "Database innloggingspassord" -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Samtale fjernet." +#: ../../mod/setup.php:319 +msgid "Database Name" +msgstr "Databasenavn" -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Ingen meldinger." +#: ../../mod/setup.php:320 +msgid "Database Type" +msgstr "Databasetype" -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Slett samtale" +#: ../../mod/setup.php:322 ../../mod/setup.php:363 +msgid "Site administrator email address" +msgstr "E-postadressen til administrator ved nettstedet" -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" +#: ../../mod/setup.php:322 ../../mod/setup.php:363 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet." -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menyelement er oppdatert." +#: ../../mod/setup.php:323 ../../mod/setup.php:365 +msgid "Website URL" +msgstr "Nettstedets URL" -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Ikke i stand til å oppdatere menyelement." +#: ../../mod/setup.php:323 ../../mod/setup.php:365 +msgid "Please use SSL (https) URL if available." +msgstr "Vennligst bruk SSL (https) URL hvis tilgjengelig." -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menyelement lagt til." +#: ../../mod/setup.php:325 ../../mod/setup.php:367 +msgid "Please select a default timezone for your website" +msgstr "Vennligst velg en standard tidssone for ditt nettsted" -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Ikke i stand til å legge til menyelement." +#: ../../mod/setup.php:352 +msgid "Site settings" +msgstr "Nettstedets innstillinger" -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Håndtere menyelementer" +#: ../../mod/setup.php:417 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (PATH)." -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Endre meny" +#: ../../mod/setup.php:418 +msgid "" +"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." +msgstr "Hvis du ikke har en kommandolinjeversjon av PHP installert på tjeneren, så vil du ikke kunne kjøre bakgrunnshenting via cron." -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Endre element" +#: ../../mod/setup.php:422 +msgid "PHP executable path" +msgstr "PHP-kjørefilens sti" -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Slett element" +#: ../../mod/setup.php:422 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Skriv full sti til kjørefilen for PHP. Du kan la denne stå blank for å fortsette installasjonen." -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Nytt element" +#: ../../mod/setup.php:427 +msgid "Command line PHP" +msgstr "Kommandolinje PHP" -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Endre denne menybeholderen" +#: ../../mod/setup.php:436 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" påskrudd." -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Legg til menyelement" +#: ../../mod/setup.php:437 +msgid "This is required for message delivery to work." +msgstr "Dette er påkrevd for at meldingslevering skal virke." -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Slett dette menyelementet" +#: ../../mod/setup.php:440 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Endre dette menyelementet" +#: ../../mod/setup.php:458 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Den største totale opplastingsstørrelsen du er tillatt er satt til %s. Filstørrelsen på en enkelt fil er satt til å maksimalt være %s. Du har lov til å laste opp inntil %d filer samtidig." -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Nytt menyelement" +#: ../../mod/setup.php:463 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Du kan justere disse innstillingene i tjenerens php.ini." -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Menyelement Tillatelser" +#: ../../mod/setup.php:465 +msgid "PHP upload limits" +msgstr "PHP opplastingsgrenser" -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Lenketekst" +#: ../../mod/setup.php:488 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler" -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL-en til lenken" +#: ../../mod/setup.php:489 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Ved kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use Hubzilla magic-auth if available" -msgstr "Bruk Hubzillas magiske-autentisering hvis tilgjengelig" +#: ../../mod/setup.php:492 +msgid "Generate encryption keys" +msgstr "Lag krypteringsnøkler" -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Åpne lenke i nytt vindu" +#: ../../mod/setup.php:504 +msgid "libCurl PHP module" +msgstr "libCurl PHP-modul" -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Ordne i liste" +#: ../../mod/setup.php:505 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP-modul" -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Høyere tall vil synke mot bunnen av listen" +#: ../../mod/setup.php:506 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP-modul" -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menyelement ble ikke funnet." +#: ../../mod/setup.php:507 +msgid "mysqli or postgres PHP module" +msgstr "MySQLi eller Postgres PHP modul" -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menyelement slettet." +#: ../../mod/setup.php:508 +msgid "mb_string PHP module" +msgstr "mb_string PHP-modul" -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menyelement kunne ikke bli slettet." +#: ../../mod/setup.php:509 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP-modul" -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Endre menyelement" +#: ../../mod/setup.php:510 +msgid "xml PHP module" +msgstr "XML PHP modul" -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Angi ditt nåværende humør og fortell dine venner" +#: ../../mod/setup.php:514 ../../mod/setup.php:516 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite-modul" -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totalt antall stemmer" +#: ../../mod/setup.php:514 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert." -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Gjennomsnittlig vurdering" +#: ../../mod/setup.php:520 ../../mod/setup.php:523 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/removeme.php:29 +#: ../../mod/setup.php:520 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet." +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Feil: proc_open er påkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Fjern denne kanalen" +#: ../../mod/setup.php:528 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Feil: libCURL PHP-modul er påkrevd, men er ikke installert." -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket." +#: ../../mod/setup.php:532 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Feil: GD graphics PHP-modul med JPEG-støtte er påkrevd, men er ikke installert." -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Fjern denne kanalen og alle dens kloner fra nettverket" +#: ../../mod/setup.php:536 +msgid "Error: openssl PHP module required but not installed." +msgstr "Feil: openssl PHP-modul er påkrevd, men er ikke installert." -#: ../../mod/removeme.php:60 +#: ../../mod/setup.php:540 msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Feil: mysqli eller postgres PHP modul er påkrevd, men ingen av dem er installert." -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hjelp med denne funksjonen" +#: ../../mod/setup.php:544 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Feil: mb_string PHP-modul er påkrevd, men er ikke installert." -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layout-navn" +#: ../../mod/setup.php:548 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Feil: mcrypt PHP-modul er påkrevd, men er ikke installert." -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig." +#: ../../mod/setup.php:552 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Feil: XML PHP modul er påkrevet for DAV, men den er ikke installert." -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "Feilmeldingen var:" +#: ../../mod/setup.php:570 +msgid "" +"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." +msgstr "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til." -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Autentisering mislyktes." +#: ../../mod/setup.php:571 +msgid "" +"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." +msgstr "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan." -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Fjernautentisering" +#: ../../mod/setup.php:572 +msgid "" +"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." +msgstr "På slutten av denne prosedyren vil vi gi deg en tekst til å lagre i en fil kalt .htconfig.php i toppkatalogen til din Red." -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" +#: ../../mod/setup.php:573 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Alternativt, så kan du hoppe over denne prosedyren og gjennomføre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner." -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Autentiser" +#: ../../mod/setup.php:576 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php kan skrives til" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Ikke i stand til å slå opp mottaker." +#: ../../mod/setup.php:590 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red bruker malmotoren Smarty3 for å gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for å framskynde gjengivelsen." -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Ikke i stand til å kommunisere med forespurt kanal." +#: ../../mod/setup.php:591 +#, php-format +msgid "" +"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." +msgstr "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under Red sin hovedmappe." -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan ikke bekrefte forespurt kanal." +#: ../../mod/setup.php:592 ../../mod/setup.php:613 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen." -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet." +#: ../../mod/setup.php:593 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder." -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Melding slettet." +#: ../../mod/setup.php:596 +#, php-format +msgid "%s is writable" +msgstr "%s kan skrives til" -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Innlegg tilbakekalt." +#: ../../mod/setup.php:612 +msgid "" +"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" +msgstr "Red bruker lagringsmappen for å lagre opplastede filer. Webtjeneren trenger å ha skrivetilgang til lagringsmappen under Red sin toppnivåmappe." -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Send privat melding" +#: ../../mod/setup.php:616 +msgid "store is writable" +msgstr "lageret kan skrives til" -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "Til:" +#: ../../mod/setup.php:649 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet." -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Emne:" +#: ../../mod/setup.php:650 +msgid "" +"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!" +msgstr "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!" -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Send" +#: ../../mod/setup.php:651 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub." -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Melding ikke funnet." +#: ../../mod/setup.php:652 +msgid "" +"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." +msgstr "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer." -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Slett melding" +#: ../../mod/setup.php:653 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet." -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Tilbakekall innlegg" +#: ../../mod/setup.php:654 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere." -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Innlegget har blitt tilbakekalt." +#: ../../mod/setup.php:656 +msgid "SSL certificate validation" +msgstr "SSL sertifikat-kontroll" + +#: ../../mod/setup.php:662 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:" -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Privat samtale" +#: ../../mod/setup.php:665 +msgid "Url rewrite is working" +msgstr "URL rewrite virker" -#: ../../mod/mail.php:338 +#: ../../mod/setup.php:674 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside." +"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." +msgstr "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener." -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Send svar" +#: ../../mod/setup.php:698 +msgid "Errors encountered creating database tables." +msgstr "Feil oppstod under opprettelsen av databasetabeller." -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ugyldig forespørselsidentifikator." +#: ../../mod/setup.php:732 +msgid "

What next

" +msgstr "

Hva gjenstår

" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Forkast" +#: ../../mod/setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren." -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Vennligst logg inn." +#: ../../mod/sharedwithme.php:94 +msgid "Files: shared with me" +msgstr "Filer: delt med meg" -#: ../../mod/network.php:90 -msgid "No such group" -msgstr "Gruppen finnes ikke" +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "NY" -#: ../../mod/network.php:128 -msgid "Search Results For:" -msgstr "Søkeresultat for:" +#: ../../mod/sharedwithme.php:99 +msgid "Remove all files" +msgstr "Fjern alle filer" -#: ../../mod/network.php:182 -msgid "Collection is empty" -msgstr "Samlingen er tom" +#: ../../mod/sharedwithme.php:100 +msgid "Remove this file" +msgstr "Fjern denne filen" -#: ../../mod/network.php:190 -msgid "Collection: " -msgstr "Samling:" +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." -#: ../../mod/network.php:203 -msgid "Connection: " -msgstr "Forbindelse:" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 +msgid "Profile not found." +msgstr "Profilen ble ikke funnet." -#: ../../mod/network.php:206 -msgid "Invalid connection." -msgstr "Ugyldig forbindelse." +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profilen er slettet." -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Legg til en kanal" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "En kanal er din egen samling av relaterte web-sider. En kanal kan brukes til å samle sosiale nettverksprofiler, blogger, samtalegrupper og forum, kjendissider og mye mer. Du kan lage så mange kanaler som din tjenestetilbyder tillater." +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Ny profil opprettet." -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profilen er utilgjengelig for klonen." -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Velg et kort kallenavn" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Profilen er utilgjengelig for eksport." -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske (minner om en e-postadresse) og som du kan dele med andre." +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." +msgstr "Profilnavn er påkrevd." -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Eller importerer en eksisterende kanal fra et annet sted." +#: ../../mod/profiles.php:404 +msgid "Marital Status" +msgstr "Sivilstand" -#: ../../mod/new_channel.php:118 -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 "Vennligst velg en kanaltype (for eksempel sosialt nettverk eller forum for felleskap) og krav til personvern slik at vi kan velge de beste tillatelsene for deg." +#: ../../mod/profiles.php:408 +msgid "Romantic Partner" +msgstr "Romantisk partner" -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Kanaltype" +#: ../../mod/profiles.php:412 +msgid "Likes" +msgstr "Liker" -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Les mer om roller" +#: ../../mod/profiles.php:416 +msgid "Dislikes" +msgstr "Liker ikke" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installert." +#: ../../mod/profiles.php:420 +msgid "Work/Employment" +msgstr "Arbeid/sysselsetting" -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Feil oppsett for app-en." +#: ../../mod/profiles.php:423 +msgid "Religion" +msgstr "Religion" -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Innbyggingskode" +#: ../../mod/profiles.php:427 +msgid "Political Views" +msgstr "Politiske synspunkter" -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Endre app" +#: ../../mod/profiles.php:435 +msgid "Sexual Preference" +msgstr "Seksuelle preferanser" -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Lag app" +#: ../../mod/profiles.php:439 +msgid "Homepage" +msgstr "Hjemmeside" -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Navn på app" +#: ../../mod/profiles.php:443 +msgid "Interests" +msgstr "Interesser" -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Plassering (URL) til app" +#: ../../mod/profiles.php:537 +msgid "Profile updated." +msgstr "Profilen er oppdatert." -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "Bildeikon URL" +#: ../../mod/profiles.php:626 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Skjul kontakt-/vennelisten din fra de som ser på denne profilen?" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x80 pixler - valgfritt" +#: ../../mod/profiles.php:666 +msgid "Edit Profile Details" +msgstr "Endre profildetaljer" -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versjons-ID" +#: ../../mod/profiles.php:668 +msgid "View this profile" +msgstr "Vis denne profilen" -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Pris på app" +#: ../../mod/profiles.php:670 +msgid "Change Profile Photo" +msgstr "Endre profilbilde" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Plassering (URL) for å kjøpe app" +#: ../../mod/profiles.php:671 +msgid "Create a new profile using these settings" +msgstr "Lag en ny profil ved å bruke disse innstillingene" -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "sendte deg en privat melding" +#: ../../mod/profiles.php:672 +msgid "Clone this profile" +msgstr "Klon denne profilen" -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "la til din kanal" +#: ../../mod/profiles.php:673 +msgid "Delete this profile" +msgstr "Slett denne profilen" -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "la ut en hendelse" +#: ../../mod/profiles.php:675 +msgid "Import profile from file" +msgstr "Importer profil fra fil" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bokmerke lagt til" +#: ../../mod/profiles.php:676 +msgid "Export profile to file" +msgstr "Eksporter profil til fil" -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mine bokmerker" +#: ../../mod/profiles.php:677 +msgid "Profile Name:" +msgstr "Profilnavn:" -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Mine forbindelsers bokmerker" +#: ../../mod/profiles.php:678 +msgid "Your Full Name:" +msgstr "Ditt fulle navn:" -#: ../../mod/channel.php:92 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." +#: ../../mod/profiles.php:679 +msgid "Title/Description:" +msgstr "Tittel/Beskrivelse:" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." +#: ../../mod/profiles.php:680 +msgid "Your Gender:" +msgstr "Ditt kjønn:" -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Spørring" +#: ../../mod/profiles.php:681 +msgid "Birthday :" +msgstr "Fødselsdag:" -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Vis resultater" +#: ../../mod/profiles.php:682 +msgid "Street Address:" +msgstr "Gateadresse:" -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Ingen restriksjoner er funnet i tjenesteklasse." +#: ../../mod/profiles.php:683 +msgid "Locality/City:" +msgstr "Sted/By:" -#: ../../mod/sharedwithme.php:99 -msgid "Files: shared with me" -msgstr "Filer: delt med meg" +#: ../../mod/profiles.php:684 +msgid "Postal/Zip Code:" +msgstr "Postnummer/ZIP-kode:" -#: ../../mod/sharedwithme.php:103 -msgid "Remove all files" -msgstr "Fjern alle filer" +#: ../../mod/profiles.php:685 +msgid "Country:" +msgstr "Land:" -#: ../../mod/sharedwithme.php:104 -msgid "Remove this file" -msgstr "Fjern denne filen" +#: ../../mod/profiles.php:686 +msgid "Region/State:" +msgstr "Region/fylke:" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Standard skjema" +#: ../../mod/profiles.php:687 +msgid " Marital Status:" +msgstr " Sivilstand:" -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" +#: ../../mod/profiles.php:688 +msgid "Who: (if applicable)" +msgstr "Hvem: (hvis det er aktuelt) " -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" +#: ../../mod/profiles.php:689 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Theme settings" -msgstr "Temainnstillinger" +#: ../../mod/profiles.php:690 +msgid "Since [date]:" +msgstr "Siden [dato]:" -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Angi skjema" +#: ../../mod/profiles.php:692 +msgid "Homepage URL:" +msgstr "Hjemmeside URL:" -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set font-size for posts and comments" -msgstr "Angi skriftstørrelse for innlegg og kommentarer" +#: ../../mod/profiles.php:695 +msgid "Religious Views:" +msgstr "Religiøse synspunkter:" -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Angi skrifttype" +#: ../../mod/profiles.php:696 +msgid "Keywords:" +msgstr "Nøkkelord:" -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Angi ikonutvalg" +#: ../../mod/profiles.php:699 +msgid "Example: fishing photography software" +msgstr "Eksempel: fisking fotografering programvare" -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Angi stor skyggestørrelse, standard 15px 15px 15px" +#: ../../mod/profiles.php:700 +msgid "Used in directory listings" +msgstr "Brukt i katalogoppføringer" -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Angi liten skyggestørrelse, standard 5px 5px 5px" +#: ../../mod/profiles.php:701 +msgid "Tell us about yourself..." +msgstr "Fortell oss om deg selv..." -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Angi skyggefarge, standard #000" +#: ../../mod/profiles.php:702 +msgid "Hobbies/Interests" +msgstr "Hobbier/Interesser" -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Angi radiusstørrelse, standard 5px" +#: ../../mod/profiles.php:703 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformasjon og sosiale nettverk" -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Angi linjeavstand for innlegg og kommentarer" +#: ../../mod/profiles.php:704 +msgid "My other channels" +msgstr "Mine andre kanaler" -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Angi bakgrunnsbilde" +#: ../../mod/profiles.php:705 +msgid "Musical interests" +msgstr "Musikkinteresser" + +#: ../../mod/profiles.php:706 +msgid "Books, literature" +msgstr "Bøker, litteratur" -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Angi bakgrunnsvedlegg" +#: ../../mod/profiles.php:707 +msgid "Television" +msgstr "TV/fjernsyn" -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Angi bakgrunnsfarge" +#: ../../mod/profiles.php:708 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/kultur/underholdning" -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Angi seksjonens bakgrunnsbilde" +#: ../../mod/profiles.php:709 +msgid "Love/romance" +msgstr "Kjærlighet/romantikk" -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Angi seksjonens bakgrunnsfarge" +#: ../../mod/profiles.php:710 +msgid "Work/employment" +msgstr "Arbeid/sysselsetting" -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Angi fargen til elementer - bruk hex" +#: ../../mod/profiles.php:711 +msgid "School/education" +msgstr "Skole/utdanning" -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Angi fargen til lenker - bruk hex" +#: ../../mod/profiles.php:717 +msgid "This is your default profile." +msgstr "Dette er din standardprofil." -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Angi maksimal bredde for elementer. Standard 400px" +#: ../../mod/profiles.php:728 +msgid "Age: " +msgstr "Alder:" -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Angi minimumsbredde for elementer. Standard 240px" +#: ../../mod/profiles.php:771 +msgid "Edit/Manage Profiles" +msgstr "Endre/håndter profiler" -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Angi den generelle bredden for innpakking av innhold. Standard 48%" +#: ../../mod/profiles.php:772 +msgid "Add profile things" +msgstr "Legg til profilting" -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Angi skriftfargen - bruk hex" +#: ../../mod/profiles.php:773 +msgid "Include desirable objects in your profile" +msgstr "Inkluder ønskverdige objekter i din profil" -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Angi størrelsen på bakgrunnselementet" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ugyldig profil-identifikator." -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Elementers dekkevne" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Endre profilsynlighet" -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Vis kun forhåndsvisning av innlegg" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klikk på en kontakt for å legge til eller fjerne." -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Vis sidestolpe på kanalsiden" +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Synlig for" -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Fargen på navigasjonslinjen" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Velg en bokmerkemappe" -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Elementflyt" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Lagre bokmerke" -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Til venstre for seksjonselementet" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL-en til bokmerket" -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Til høyre for seksjonselementet" +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Eller skriv nytt navn på bokmerkemappe" -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Seksjonsbredde" +#: ../../mod/import_items.php:101 +msgid "Import completed" +msgstr "Import ferdig" -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Til venstre for sidestolpen" +#: ../../mod/import_items.php:119 +msgid "Import Items" +msgstr "Importer elementer" -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Til høyre for sidestolpen" +#: ../../mod/import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil." #: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Hubzilla default)" -msgstr "Lys (Hubzilla standard)" +msgid "Focus (Hubzilla default)" +msgstr "Focus (Hubzilla standardtema)" + +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Theme settings" +msgstr "Temainnstillinger" -#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:103 msgid "Select scheme" msgstr "Velg skjema" -#: ../../view/theme/redbasic/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "Smal navigasjonslinje" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Navigation bar background color" msgstr "Navigasjonslinjens bakgrunnsfarge" -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Navigation bar gradient top color" msgstr "Navigasjonslinjens graderte toppfarge" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Navigation bar gradient bottom color" msgstr "Navigasjonslinjens graderte bunnfarge" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Navigation active button gradient top color" msgstr "Aktiv navigasjonsknapp sin graderte toppfarge" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Navigation active button gradient bottom color" msgstr "Aktiv navigasjonsknapp sin graderte bunnfarge" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Navigation bar border color " msgstr "Navigasjonslinjens kantfarge" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Navigation bar icon color " msgstr "Navigasjonslinjens ikonfarge" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar active icon color " msgstr "Navigasjonslinjens aktive ikoners farge" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:113 msgid "link color" msgstr "lenkefarge" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Set font-color for banner" msgstr "Angi skriftfargen for banneret" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Set the background color" msgstr "Angi bakgrunnsfargen" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Set the background image" msgstr "Angi bakgrunnsbilde" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Set the background color of items" msgstr "Angi bakgrunnsfargen til elementer" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Set the background color of comments" msgstr "Angi bakgrunnsfargen til kommentarer" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Set the border color of comments" msgstr "Angi kantfargen til kommentarer" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:120 msgid "Set the indent for comments" msgstr "Angi innrykket til kommentarer" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set the basic color for item icons" msgstr "Angi grunnfargen for elementikoner" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the hover color for item icons" msgstr "Angi fargen til elementikoner ved berøring" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set font-size for the entire application" msgstr "Angi skriftstørrelsen for hele programmet" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Example: 14px" msgstr "Eksempel: 14px" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Angi skriftstørrelse for innlegg og kommentarer" + +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-color for posts and comments" msgstr "Angi skriftfargen for innlegg og kommentarer" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set radius of corners" msgstr "Angi hjørneradius" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set shadow depth of photos" msgstr "Angi skyggedybden til bilder" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set maximum width of content region in pixel" msgstr "Angi største bredde for innholdsregionen i pixler" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Leave empty for default width" msgstr "La feltet stå tomt for å bruke standard bredde" -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Center page content" -msgstr "Midtstill sideinnhold" +#: ../../view/theme/redbasic/php/config.php:129 +msgid "Left align page content" +msgstr "Venstrejuster sideinnhold" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Angi minste dekkevne for navigasjonslinjen - for å skjule den" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set size of conversation author photo" msgstr "Angi størrelsen for samtalens forfatterbilde" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set size of followup author photos" msgstr "Angi størrelsen på forfatterbilder ved oppfølging" -#: ../../boot.php:1357 +#: ../../boot.php:1302 #, php-format msgid "Update %s failed. See error logs." msgstr "Oppdatering %s mislyktes. Se feilloggen." -#: ../../boot.php:1360 +#: ../../boot.php:1305 #, php-format msgid "Update Error at %s" msgstr "Oppdateringsfeil ved %s" -#: ../../boot.php:1527 +#: ../../boot.php:1472 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Lag en konto for å få tilgang til tjenester og programmer i Hubzilla" -#: ../../boot.php:1555 +#: ../../boot.php:1500 msgid "Password" msgstr "Passord" -#: ../../boot.php:1556 +#: ../../boot.php:1501 msgid "Remember me" msgstr "Husk meg" -#: ../../boot.php:1559 +#: ../../boot.php:1504 msgid "Forgot your password?" msgstr "Glemt passordet ditt?" -#: ../../boot.php:2182 +#: ../../boot.php:2130 msgid "toggle mobile" msgstr "Skru på mobil" -#: ../../boot.php:2314 +#: ../../boot.php:2265 msgid "Website SSL certificate is not valid. Please correct." msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette." -#: ../../boot.php:2317 +#: ../../boot.php:2268 #, php-format -msgid "[red] Website SSL error for %s" -msgstr "[red] SSL-feil ved nettsted hos %s" +msgid "[hubzilla] Website SSL error for %s" +msgstr "[hubzilla] SSL-feil ved nettsted hos %s" -#: ../../boot.php:2355 +#: ../../boot.php:2305 msgid "Cron/Scheduled tasks not running." msgstr "Cron/planlagte oppgaver kjører ikke." -#: ../../boot.php:2359 +#: ../../boot.php:2309 #, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "[red] Cron-oppgaver kjører ikke på %s" +msgid "[hubzilla] Cron tasks not running on %s" +msgstr "[hubzilla] Cron-oppgaver kjører ikke på %s" -- cgit v1.2.3 From 1574043a9ea1b1e8d82a5c2e4264a2d522260127 Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Thu, 1 Oct 2015 17:51:31 +0200 Subject: Updated Norwegian strings for Hubzilla --- view/nb-no/hstrings.php | 3454 ++++++++++++++++++++++++----------------------- 1 file changed, 1756 insertions(+), 1698 deletions(-) diff --git a/view/nb-no/hstrings.php b/view/nb-no/hstrings.php index 02d843938..ab6767cb7 100644 --- a/view/nb-no/hstrings.php +++ b/view/nb-no/hstrings.php @@ -5,151 +5,260 @@ function string_plural_select_nb_no($n){ return ($n != 1);; }} ; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'"; -$a->strings["Profile Photos"] = "Profilbilder"; -$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."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; -$a->strings["created a new post"] = "laget et nytt innlegg"; -$a->strings["commented on %s's post"] = "kommenterte på %s sitt innlegg"; -$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 slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn."; -$a->strings["Default privacy group for new contacts"] = "Standard personverngruppe for nye kontakter"; -$a->strings["All Channels"] = "Alle kanaler"; -$a->strings["edit"] = "endre"; -$a->strings["Collections"] = "Samlinger"; -$a->strings["Edit collection"] = "Endre samling"; -$a->strings["Create a new collection"] = "Lag en ny samling"; -$a->strings["Channels not in any collection"] = "Kanaler som ikke er i noen samling"; -$a->strings["add"] = "legg til"; -$a->strings["Image/photo"] = "Bilde/fotografi"; -$a->strings["Encrypted content"] = "Kryptert innhold"; -$a->strings["Install design element: "] = "Installer designelement:"; -$a->strings["QR code"] = "QR-kode"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; -$a->strings["post"] = "innlegg"; -$a->strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; -$a->strings["$1 spoiler"] = "$1 avsløring"; -$a->strings["$1 wrote:"] = "$1 skrev:"; -$a->strings["Unable to obtain identity information from database"] = "Klarer ikke å få tak i identitetsinformasjon fra databasen"; -$a->strings["Empty name"] = "Mangler navn"; -$a->strings["Name too long"] = "Navnet er for langt"; -$a->strings["No account identifier"] = "Ingen kontoidentifikator"; -$a->strings["Nickname is required."] = "Kallenavn er påkrevd."; -$a->strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet."; -$a->strings["Unable to retrieve created identity"] = "Klarer ikke å hente den lagede identiteten"; -$a->strings["Default Profile"] = "Standardprofil"; -$a->strings["Friends"] = "Venner"; -$a->strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig."; -$a->strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig."; -$a->strings["Connect"] = "Koble"; -$a->strings["Change profile photo"] = "Endre profilbilde"; -$a->strings["Profiles"] = "Profiler"; -$a->strings["Manage/edit profiles"] = "Håndtere/endre profiler"; -$a->strings["Create New Profile"] = "Lag ny profil"; -$a->strings["Edit Profile"] = "Endre profil"; -$a->strings["Profile Image"] = "Profilbilde"; -$a->strings["visible to everybody"] = "synlig for alle"; -$a->strings["Edit visibility"] = "Endre synlighet"; -$a->strings["Location:"] = "Plassering:"; -$a->strings["Gender:"] = "Kjønn:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Hjemmeside:"; -$a->strings["Online Now"] = "Online nå"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[idag]"; -$a->strings["Birthday Reminders"] = "Fødselsdagspåminnnelser"; -$a->strings["Birthdays this week:"] = "Fødselsdager denne uken:"; -$a->strings["[No description]"] = "[Ingen beskrivelse]"; -$a->strings["Event Reminders"] = "Hendelsespåminnelser"; -$a->strings["Events this week:"] = "Hendelser denne uken:"; -$a->strings["Profile"] = "Profil"; -$a->strings["Full Name:"] = "Fullt navn:"; -$a->strings["Like this channel"] = "Lik denne kanalen"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "Liker", - 1 => "Liker", -); -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Fødselsdag:"; -$a->strings["Age:"] = "Alder:"; -$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Seksuell preferanse:"; -$a->strings["Hometown:"] = "Hjemby:"; -$a->strings["Tags:"] = "Merkelapper:"; -$a->strings["Political Views:"] = "Politiske synspunkter:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["About:"] = "Om:"; -$a->strings["Hobbies/Interests:"] = "Hobbyer/interesser:"; -$a->strings["Likes:"] = "Liker:"; -$a->strings["Dislikes:"] = "Misliker:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:"; -$a->strings["My other channels:"] = "Mine andre kanaler:"; -$a->strings["Musical interests:"] = "Musikkinteresse:"; -$a->strings["Books, literature:"] = "Bøker, litteratur:"; -$a->strings["Television:"] = "TV:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:"; -$a->strings["Love/Romance:"] = "Kjærlighet/romantikk:"; -$a->strings["Work/employment:"] = "Arbeid/sysselsetting:"; -$a->strings["School/education:"] = "Skole/utdannelse:"; -$a->strings["Like this thing"] = "Lik denne tingen"; -$a->strings["New Page"] = "Ny side"; +$a->strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen."; +$a->strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes."; +$a->strings["Import completed."] = "Import ferdig."; +$a->strings["parent"] = "opp et nivå"; +$a->strings["Collection"] = "Samling"; +$a->strings["Principal"] = "Viktigste"; +$a->strings["Addressbook"] = "Adressebok"; +$a->strings["Calendar"] = "Kalender"; +$a->strings["Schedule Inbox"] = "Tidsplan innboks"; +$a->strings["Schedule Outbox"] = "Tidsplan utboks"; +$a->strings["Unknown"] = "Ukjent"; +$a->strings["%1\$s used"] = "%1\$s brukt"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s brukt av %2\$s (%3\$s%)"; +$a->strings["Files"] = "Filer"; +$a->strings["Total"] = "Totalt"; +$a->strings["Shared"] = "Delt"; +$a->strings["Create"] = "Lag"; +$a->strings["Upload"] = "Last opp"; +$a->strings["Name"] = "Navn"; +$a->strings["Type"] = "Type"; +$a->strings["Size"] = "Størrelse"; +$a->strings["Last Modified"] = "Sist endret"; $a->strings["Edit"] = "Endre"; -$a->strings["View"] = "Vis"; -$a->strings["Preview"] = "Forhåndsvisning"; -$a->strings["Actions"] = "Handlinger"; -$a->strings["Page Link"] = "Sidelenke"; -$a->strings["Title"] = "Tittel"; -$a->strings["Created"] = "Laget"; -$a->strings["Edited"] = "Endret"; -$a->strings["Categories"] = "Kategorier"; -$a->strings["Apps"] = "Apper"; -$a->strings["System"] = "System"; -$a->strings["Personal"] = "Personlig"; -$a->strings["Create Personal App"] = "Lag personlig app"; -$a->strings["Edit Personal App"] = "Endre personlig app"; -$a->strings["Ignore/Hide"] = "Ignorer/Skjul"; -$a->strings["Suggestions"] = "Forslag"; -$a->strings["See more..."] = "Se mer..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; -$a->strings["Add New Connection"] = "Legg til ny forbindelse"; -$a->strings["Enter the channel address"] = "Skriv kanal-adressen"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ola.nordmann@eksempel.no, http://eksempel.no/karinordmann"; -$a->strings["Notes"] = "Merknader"; -$a->strings["Save"] = "Lagre"; -$a->strings["Remove term"] = "Fjern begrep"; +$a->strings["Delete"] = "Slett"; +$a->strings["Create new folder"] = "Lag ny mappe"; +$a->strings["Upload file"] = "Last opp fil"; +$a->strings["Can view my normal stream and posts"] = "Kan se min normale strøm og innlegg"; +$a->strings["Can view my default channel profile"] = "Kan se min standard kanalprofil"; +$a->strings["Can view my connections"] = "Kan se mine forbindelser"; +$a->strings["Can view my file storage and photos"] = "Kan se mine filer og bilder"; +$a->strings["Can view my webpages"] = "Kan se mine websider"; +$a->strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kan lage innlegg på min kanalside (\"vegg\")"; +$a->strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg"; +$a->strings["Can send me private mail messages"] = "Kan sende meg private meldinger"; +$a->strings["Can like/dislike stuff"] = "Kan like/ikke like forskjellige greier"; +$a->strings["Profiles and things other than posts/comments"] = "Profiler og andre ting enn innlegg/kommentarer"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan videresende til alle mine kanalkontakter via @navn i innlegg"; +$a->strings["Advanced - useful for creating group forum channels"] = "Avansert - nyttig for å lage forumkanaler for grupper"; +$a->strings["Can chat with me (when available)"] = "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)"; +$a->strings["Can write to my file storage and photos"] = "Kan skrive til mitt lager for filer og bilder"; +$a->strings["Can edit my webpages"] = "Kan endre mine websider"; +$a->strings["Can source my public posts in derived channels"] = "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Litt avansert - svært nyttig i åpne fellesskap"; +$a->strings["Can administer my channel resources"] = "Kan administrere mine kanalressurser"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Ekstremt avansert. La dette være med mindre du vet hva du gjør"; +$a->strings["Social Networking"] = "Sosialt nettverk"; +$a->strings["Mostly Public"] = "Ganske offentlig"; +$a->strings["Restricted"] = "Begrenset"; +$a->strings["Private"] = "Privat"; +$a->strings["Community Forum"] = "Forum for fellesskap"; +$a->strings["Feed Republish"] = "Republisering av strømmet innhold"; +$a->strings["Special Purpose"] = "Spesiell bruk"; +$a->strings["Celebrity/Soapbox"] = "Kjendis/Talerstol"; +$a->strings["Group Repository"] = "Gruppelager"; +$a->strings["Other"] = "Annen"; +$a->strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus"; +$a->strings["Missing room name"] = "Mangler romnavn"; +$a->strings["Duplicate room name"] = "Duplikat romnavn"; +$a->strings["Invalid room specifier."] = "Ugyldig rom-spesifisering"; +$a->strings["Room not found."] = "Rommet ble ikke funnet."; +$a->strings["Permission denied."] = "Tillatelse avslått."; +$a->strings["Room is full"] = "Rommet er fullt"; +$a->strings["Miscellaneous"] = "Forskjellig"; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD"; +$a->strings["Required"] = "Påkrevd"; +$a->strings["never"] = "aldri"; +$a->strings["less than a second ago"] = "for mindre enn ett sekund siden"; +$a->strings["year"] = "år"; +$a->strings["years"] = "år"; +$a->strings["month"] = "måned"; +$a->strings["months"] = "måneder"; +$a->strings["week"] = "uke"; +$a->strings["weeks"] = "uker"; +$a->strings["day"] = "dag"; +$a->strings["days"] = "dager"; +$a->strings["hour"] = "time"; +$a->strings["hours"] = "timer"; +$a->strings["minute"] = "minutt"; +$a->strings["minutes"] = "minutter"; +$a->strings["second"] = "sekund"; +$a->strings["seconds"] = "sekunder"; +$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden"; +$a->strings["%1\$s's birthday"] = "%1\$s sin fødselsdag"; +$a->strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !"; +$a->strings["General Features"] = "Generelle funksjoner"; +$a->strings["Content Expiration"] = "Innholdet utløper"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden"; +$a->strings["Multiple Profiles"] = "Flere profiler"; +$a->strings["Ability to create multiple profiles"] = "Mulig å lage flere profiler"; +$a->strings["Advanced Profiles"] = "Avanserte profiler"; +$a->strings["Additional profile sections and selections"] = "Ytterlige seksjoner og utvalg til profilen"; +$a->strings["Profile Import/Export"] = "Profil-import/-eksport"; +$a->strings["Save and load profile details across sites/channels"] = "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler"; +$a->strings["Web Pages"] = "Web-sider"; +$a->strings["Provide managed web pages on your channel"] = "Tilby kontrollerte web-sider på din kanal"; +$a->strings["Private Notes"] = "Private merknader"; +$a->strings["Enables a tool to store notes and reminders"] = "Skrur på et verktøy for lagre merknader og påminnelser"; +$a->strings["Navigation Channel Select"] = "Navigasjon kanalvalg"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen"; +$a->strings["Photo Location"] = "Bildeplassering"; +$a->strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart."; +$a->strings["Expert Mode"] = "Ekspertmodus"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg"; +$a->strings["Premium Channel"] = "Premiumkanal"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal"; +$a->strings["Post Composition Features"] = "Funksjoner for å lage innlegg"; +$a->strings["Use Markdown"] = "Bruk Markdown"; +$a->strings["Allow use of \"Markdown\" to format posts"] = "Tillat bruk av \"Markdown\" til formatering av innlegg"; +$a->strings["Large Photos"] = "Store bilder"; +$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Inkluder store (640px) miniatyrbilder i innlegg. Hvis denne ikke er skrudd på, bruk små (320px) miniatyrbilder."; +$a->strings["Channel Sources"] = "Kanalkilder"; +$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisk import av kanalinnhold fra andre kanaler eller strømmer"; +$a->strings["Even More Encryption"] = "Enda mer kryptering"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel"; +$a->strings["Enable voting tools"] = "Skru på verktøy for å stemme"; +$a->strings["Provide a class of post which others can vote on"] = "Tilby en type innlegg som andre kan stemme på"; +$a->strings["Network and Stream Filtering"] = "Nettverk- og strømfiltrering"; +$a->strings["Search by Date"] = "Søk etter dato"; +$a->strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområde"; +$a->strings["Collections Filter"] = "Filter for samlinger"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Skru på miniprogram for å vise Nettverksinnlegg bare fra valgte samlinger"; $a->strings["Saved Searches"] = "Lagrede søk"; +$a->strings["Save search terms for re-use"] = "Lagre søkeuttrykk for senere bruk"; +$a->strings["Network Personal Tab"] = "Nettverk personlig fane"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i"; +$a->strings["Network New Tab"] = "Nettverk Ny fane"; +$a->strings["Enable tab to display all new Network activity"] = "Skru på fane for å vise all ny nettverksaktivitet"; +$a->strings["Affinity Tool"] = "Nærhetsverktøy"; +$a->strings["Filter stream activity by depth of relationships"] = "Filtrer strømaktiviteten etter releasjonsdybde"; +$a->strings["Connection Filtering"] = "Filtrer forbindelser"; +$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold"; +$a->strings["Suggest Channels"] = "Foreslå kanaler"; +$a->strings["Show channel suggestions"] = "Vis kanalforslag"; +$a->strings["Post/Comment Tools"] = "Innlegg-/Kommentar-verktøy"; +$a->strings["Tagging"] = "Merking"; +$a->strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende meldinger"; +$a->strings["Post Categories"] = "Innleggskategorier"; +$a->strings["Add categories to your posts"] = "Legg kategorier til dine innlegg"; $a->strings["Saved Folders"] = "Lagrede mapper"; -$a->strings["Everything"] = "Alt"; -$a->strings["Archives"] = "Arkiv"; -$a->strings["Refresh"] = "Forny"; -$a->strings["Me"] = "Meg"; -$a->strings["Best Friends"] = "Bestevenner"; -$a->strings["Co-workers"] = "Medarbeidere"; -$a->strings["Former Friends"] = "Tidligere venner"; -$a->strings["Acquaintances"] = "Bekjente"; -$a->strings["Everybody"] = "Alle"; -$a->strings["Account settings"] = "Kontoinnstillinger"; -$a->strings["Channel settings"] = "Kanalinnstillinger"; -$a->strings["Additional features"] = "Tilleggsfunksjoner"; -$a->strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger"; -$a->strings["Display settings"] = "Visningsinnstillinger"; -$a->strings["Connected apps"] = "Tilkoblede app-er"; -$a->strings["Export channel"] = "Eksporter kanal"; -$a->strings["Connection Default Permissions"] = "Forbindelsens standard tillatelser"; -$a->strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; -$a->strings["Channel Sources"] = "Kanalkilder"; -$a->strings["Settings"] = "Innstillinger"; -$a->strings["Messages"] = "Meldinger"; -$a->strings["Check Mail"] = "Sjekk meldinger"; -$a->strings["New Message"] = "Ny melding"; -$a->strings["Chat Rooms"] = "Chatrom"; -$a->strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; -$a->strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; -$a->strings["photo/image"] = "foto/bilde"; -$a->strings["Rate Me"] = "Vurder meg"; -$a->strings["View Ratings"] = "Vis vurderinger"; -$a->strings["Public Hubs"] = "Offentlige huber"; +$a->strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper"; +$a->strings["Dislike Posts"] = "Mislik innlegg"; +$a->strings["Ability to dislike posts/comments"] = "Mulighet til å mislike innlegg/kommentarer"; +$a->strings["Star Posts"] = "Stjerneinnlegg"; +$a->strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerne"; +$a->strings["Tag Cloud"] = "Merkelappsky"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky på din kanalside"; +$a->strings["Default"] = "Standard"; +$a->strings["Delete this item?"] = "Slett dette elementet?"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["[+] show all"] = "[+] Vis alle"; +$a->strings["[-] show less"] = "[-] Vis mindre"; +$a->strings["[+] expand"] = "[+] Utvid"; +$a->strings["[-] collapse"] = "[-] Lukk"; +$a->strings["Password too short"] = "Passordet er for kort"; +$a->strings["Passwords do not match"] = "Passordene er ikke like"; +$a->strings["everybody"] = "alle"; +$a->strings["Secret Passphrase"] = "Hemmelig passordsetning"; +$a->strings["Passphrase hint"] = "Hint om passordsetning"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn."; +$a->strings["close all"] = "Lukk alle"; +$a->strings["Nothing new here"] = "Ikke noe nytt her"; +$a->strings["Rate This Channel (this is public)"] = "Vurder denne kanalen (dette er offentlig)"; +$a->strings["Rating"] = "Vurdering"; +$a->strings["Describe (optional)"] = "Beskriv (valgfritt)"; +$a->strings["Submit"] = "Send"; +$a->strings["Please enter a link URL"] = "Vennligst skriv inn en lenke URL:"; +$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +$a->strings["ago"] = "siden"; +$a->strings["from now"] = "fra nå"; +$a->strings["less than a minute"] = "mindre enn ett minutt"; +$a->strings["about a minute"] = "omtrent et minutt"; +$a->strings["%d minutes"] = "%d minutter"; +$a->strings["about an hour"] = "omtrent en time"; +$a->strings["about %d hours"] = "omtrent %d timer"; +$a->strings["a day"] = "en dag"; +$a->strings["%d days"] = "%d dager"; +$a->strings["about a month"] = "omtrent en måned"; +$a->strings["%d months"] = "%d måneder"; +$a->strings["about a year"] = "omtrent et år"; +$a->strings["%d years"] = "%d år"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["January"] = "januar"; +$a->strings["February"] = "februar"; +$a->strings["March"] = "mars"; +$a->strings["April"] = "april"; +$a->strings["__ctx:long__ May"] = "mai"; +$a->strings["June"] = "juni"; +$a->strings["July"] = "juli"; +$a->strings["August"] = "august"; +$a->strings["September"] = "september"; +$a->strings["October"] = "oktober"; +$a->strings["November"] = "november"; +$a->strings["December"] = "desember"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Apr"; +$a->strings["__ctx:short__ May"] = "mai"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Aug"; +$a->strings["Sep"] = "Sep"; +$a->strings["Oct"] = "Okt"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Des"; +$a->strings["Sunday"] = "søndag"; +$a->strings["Monday"] = "mandag"; +$a->strings["Tuesday"] = "tirsdag"; +$a->strings["Wednesday"] = "onsdag"; +$a->strings["Thursday"] = "torsdag"; +$a->strings["Friday"] = "fredag"; +$a->strings["Saturday"] = "lørdag"; +$a->strings["Sun"] = "Søn"; +$a->strings["Mon"] = "Man"; +$a->strings["Tue"] = "Tirs"; +$a->strings["Wed"] = "Ons"; +$a->strings["Thu"] = "Tors"; +$a->strings["Fri"] = "Fre"; +$a->strings["Sat"] = "Lør"; +$a->strings["__ctx:calendar__ today"] = "idag"; +$a->strings["__ctx:calendar__ month"] = "måned"; +$a->strings["__ctx:calendar__ week"] = "uke"; +$a->strings["__ctx:calendar__ day"] = "dag"; +$a->strings["__ctx:calendar__ All day"] = "Hele dagen"; +$a->strings["Frequently"] = "Ofte"; +$a->strings["Hourly"] = "Hver time"; +$a->strings["Twice daily"] = "To ganger daglig"; +$a->strings["Daily"] = "Daglig"; +$a->strings["Weekly"] = "Ukentlig"; +$a->strings["Monthly"] = "Månedlig"; +$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[" and "] = "og"; +$a->strings["public profile"] = "offentlig profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; +$a->strings["Connect"] = "Koble"; +$a->strings["New window"] = "Nytt vindu"; +$a->strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane"; +$a->strings["User '%s' deleted"] = "Brukeren '%s' er slettet"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'"; $a->strings["photo"] = "foto"; $a->strings["event"] = "hendelse"; $a->strings["channel"] = "kanal"; @@ -170,14 +279,13 @@ $a->strings["__ctx:title__ Attending"] = "Deltar"; $a->strings["__ctx:title__ Not attending"] = "Deltar ikke"; $a->strings["__ctx:title__ Might attend"] = "Deltar kanskje"; $a->strings["Select"] = "Velg"; -$a->strings["Delete"] = "Slett"; $a->strings["Private Message"] = "Privat melding"; $a->strings["Message signature validated"] = "Innleggets signatur er bekreftet"; $a->strings["Message signature incorrect"] = "Innleggets signatur er feil"; $a->strings["View %s's profile @ %s"] = "Vis %s sin profile @ %s"; $a->strings["Categories:"] = "Kategorier:"; $a->strings["Filed under:"] = "Sortert under:"; -$a->strings[" from %s"] = "fra %s"; +$a->strings["from %s"] = "fra %s"; $a->strings["last edited: %s"] = "sist endret: %s"; $a->strings["Expires: %s"] = "Utløper: %s"; $a->strings["View in context"] = "Vis i sammenheng"; @@ -190,11 +298,10 @@ $a->strings["Follow Thread"] = "Følg tråd"; $a->strings["View Status"] = "Vis status"; $a->strings["View Profile"] = "Vis profil"; $a->strings["View Photos"] = "Vis bilder"; -$a->strings["Matrix Activity"] = "Matrix-aktivitet"; -$a->strings["Edit Contact"] = "Endre kontakt"; +$a->strings["Activity/Posts"] = "Aktivitet/Innlegg"; +$a->strings["Edit Connection"] = "Endre forbindelse"; $a->strings["Send PM"] = "Send privat melding"; $a->strings["Poke"] = "Prikk"; -$a->strings["Unknown"] = "Ukjent"; $a->strings["%s likes this."] = "%s liker dette."; $a->strings["%s doesn't like this."] = "%s liker ikke dette."; $a->strings["%2\$d people like this."] = array( @@ -220,8 +327,9 @@ $a->strings["Tag term:"] = "Merkelapp:"; $a->strings["Save to Folder:"] = "Lagre til mappe:"; $a->strings["Where are you right now?"] = "Hvor er du akkurat nå?"; $a->strings["Expires YYYY-MM-DD HH:MM"] = "Utløper YYYY-MM-DD HH:MM"; +$a->strings["Preview"] = "Forhåndsvisning"; $a->strings["Share"] = "Del"; -$a->strings["Page link title"] = "Sidens lenketittel"; +$a->strings["Page link name"] = "Sidens lenkenavn"; $a->strings["Post as"] = "Lag innlegg som"; $a->strings["Bold"] = "Uthevet"; $a->strings["Italic"] = "Kursiv"; @@ -259,6 +367,7 @@ $a->strings["Commented Order"] = "Kommentert"; $a->strings["Sort by Comment Date"] = "Sorter etter kommentert dato"; $a->strings["Posted Order"] = "Lagt inn"; $a->strings["Sort by Post Date"] = "Sorter etter innleggsdato"; +$a->strings["Personal"] = "Personlig"; $a->strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; $a->strings["New"] = "Nye"; $a->strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; @@ -272,7 +381,6 @@ $a->strings["About"] = "Om"; $a->strings["Profile Details"] = "Profildetaljer"; $a->strings["Photos"] = "Bilder"; $a->strings["Photo Albums"] = "Fotoalbum"; -$a->strings["Files"] = "Filer"; $a->strings["Files and Storage"] = "Filer og lagring"; $a->strings["Chatrooms"] = "Chatrom"; $a->strings["Bookmarks"] = "Bokmerker"; @@ -280,6 +388,10 @@ $a->strings["Saved Bookmarks"] = "Lagrede bokmerker"; $a->strings["Webpages"] = "Websider"; $a->strings["Manage Webpages"] = "Håndtere websider"; $a->strings["View all"] = "Vis alle"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "Liker", + 1 => "Liker", +); $a->strings["__ctx:noun__ Dislike"] = array( 0 => "Liker ikke", 1 => "Liker ikke", @@ -308,7 +420,125 @@ $a->strings["__ctx:noun__ Abstain"] = array( 0 => "Avstår", 1 => "Avstår", ); -$a->strings["Permission denied."] = "Tillatelse avslått."; +$a->strings["Public Timeline"] = "Offentlig tidslinje"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"; +$a->strings["Image file is empty."] = "Bildefilen er tom."; +$a->strings["Unable to process image"] = "Kan ikke behandle bildet"; +$a->strings["Photo storage failed."] = "Bildelagring mislyktes."; +$a->strings["Upload New Photos"] = "Last opp nye bilder"; +$a->strings["\$Projectname Notification"] = "\$Projectname varsling"; +$a->strings["\$projectname"] = "\$projectname"; +$a->strings["Thank You,"] = "Tusen takk,"; +$a->strings["%s Administrator"] = "%s administrator"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notify] Ny melding mottatt hos %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s sendte deg en ny privat melding på %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s."; +$a->strings["a private message"] = "en privat melding"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besøk %s for å se og/eller svare på dine private meldinger."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]a %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]%4\$s's %5\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]din %4\$s[/zrl]"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] Kommentar til samtale #%1\$d av %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterte på et element eller en samtale du følger"; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare i samtalen"; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notify] %s skrev et innlegg på din profilvegg"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s skrev et innlegg på din profilvegg på %3\$s"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s skrev et innlegg på [zrl=%3\$s]din vegg[/zrl]"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notify] %s merket deg"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s merket deg på %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]merket deg[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notify] %1\$s prikket deg"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s dyttet deg på %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]dyttet deg[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notify] %s merket ditt innlegg"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s merket ditt innlegg på %3\$s"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s merket [zrl=%3\$s]ditt innlegg[/zrl]"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Notify] Introduksjon mottatt"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en ny forespørsel om forbindelse fra '%2\$s' hos %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du mottok [zrl=%2\$s]en ny forespørsel om forbindelse[/zrl] fra %3\$s."; +$a->strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notify] Venneforslag mottatt"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en venneforespørsel fra '%2\$s' hos %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 mottatt [zrl=%2\$s]et venneforslaget[/zrl] angående %3\$s fra %4\$s. "; +$a->strings["Name:"] = "Navn:"; +$a->strings["Photo:"] = "Bilde:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå dette forslaget."; +$a->strings["[Red:Notify]"] = "[Red:Notify]"; +$a->strings["view full size"] = "vis full størrelse"; +$a->strings["Administrator"] = "Administrator"; +$a->strings["No Subject"] = "Uten emne"; +$a->strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; +$a->strings["prev"] = "forrige"; +$a->strings["first"] = "første"; +$a->strings["last"] = "siste"; +$a->strings["next"] = "neste"; +$a->strings["older"] = "eldre"; +$a->strings["newer"] = "nyere"; +$a->strings["No connections"] = "Ingen forbindelser"; +$a->strings["%d Connection"] = array( + 0 => "%d forbindelse", + 1 => "%d forbindelser", +); +$a->strings["View Connections"] = "Vis forbindelser"; +$a->strings["Search"] = "Søk"; +$a->strings["Save"] = "Lagre"; +$a->strings["poke"] = "prikk"; +$a->strings["ping"] = "varsle"; +$a->strings["pinged"] = "varslet"; +$a->strings["prod"] = "oppildne"; +$a->strings["prodded"] = "oppildnet"; +$a->strings["slap"] = "daske"; +$a->strings["slapped"] = "dasket"; +$a->strings["finger"] = "fingre"; +$a->strings["fingered"] = "fingret"; +$a->strings["rebuff"] = "tilbakevise"; +$a->strings["rebuffed"] = "tilbakeviste"; +$a->strings["happy"] = "glad"; +$a->strings["sad"] = "trist"; +$a->strings["mellow"] = "dempet"; +$a->strings["tired"] = "trøtt"; +$a->strings["perky"] = "oppkvikket"; +$a->strings["angry"] = "sint"; +$a->strings["stupified"] = "sløvet"; +$a->strings["puzzled"] = "forundret"; +$a->strings["interested"] = "interessert"; +$a->strings["bitter"] = "bitter"; +$a->strings["cheerful"] = "munter"; +$a->strings["alive"] = "levende"; +$a->strings["annoyed"] = "irritert"; +$a->strings["anxious"] = "nervøs"; +$a->strings["cranky"] = "gretten"; +$a->strings["disturbed"] = "foruroliget"; +$a->strings["frustrated"] = "frustrert"; +$a->strings["depressed"] = "lei seg"; +$a->strings["motivated"] = "motivert"; +$a->strings["relaxed"] = "avslappet"; +$a->strings["surprised"] = "overrasket"; +$a->strings["May"] = "mai"; +$a->strings["unknown.???"] = "ukjent.???"; +$a->strings["bytes"] = "bytes"; +$a->strings["remove category"] = "fjern kategori"; +$a->strings["remove from file"] = "fjern fra fil"; +$a->strings["Click to open/close"] = "Klikk for å åpne/lukke"; +$a->strings["Link to Source"] = "Lenke til kilde"; +$a->strings["default"] = "standard"; +$a->strings["Page layout"] = "Sidens layout"; +$a->strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktøyet"; +$a->strings["Page content type"] = "Sidens innholdstype"; +$a->strings["Select an alternate language"] = "Velg et annet språk"; +$a->strings["activity"] = "aktivitet"; +$a->strings["Design Tools"] = "Designverktøy"; +$a->strings["Blocks"] = "Byggeklosser"; +$a->strings["Menus"] = "Menyer"; +$a->strings["Layouts"] = "Layout"; +$a->strings["Pages"] = "Sider"; +$a->strings["Visible to your default audience"] = "Synlig for ditt standard publikum"; +$a->strings["Show"] = "Vis"; +$a->strings["Don't show"] = "Ikke vis"; +$a->strings["Permissions"] = "Tillatelser"; +$a->strings["Close"] = "Lukk"; $a->strings["Item was not found."] = "Elementet ble ikke funnet."; $a->strings["No source file."] = "Ingen kildefil."; $a->strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut"; @@ -323,1345 +553,437 @@ $a->strings["duplicate filename or path"] = "duplikat av filnavn eller sti"; $a->strings["Path not found."] = "Stien ble ikke funnet."; $a->strings["mkdir failed."] = "mkdir mislyktes."; $a->strings["database storage failed."] = "databaselagring mislyktes."; -$a->strings["Not a valid email address"] = "Ikke en gyldig e-postadresse"; -$a->strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet"; -$a->strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert på dette nettstedet."; -$a->strings["An invitation is required."] = "En invitasjon er påkrevd."; -$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; -$a->strings["Please enter the required information."] = "Vennligst skriv inn nødvendig informasjon."; -$a->strings["Failed to store account information."] = "Mislyktes med å lagre kontoinformasjon."; -$a->strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s"; -$a->strings["Registration request at %s"] = "Registreringsforespørsel hos %s"; -$a->strings["Administrator"] = "Administrator"; -$a->strings["your registration password"] = "ditt registreringspassord"; -$a->strings["Registration details for %s"] = "Registreringsdetaljer for %s"; -$a->strings["Account approved."] = "Konto godkjent."; -$a->strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s"; -$a->strings["Account verified. Please login."] = "Konto bekreftet. Vennligst logg inn."; -$a->strings["Click here to upgrade."] = "Klikk her for å oppgradere."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen går utenfor grensene satt i din abonnementsplan."; -$a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan."; -$a->strings["Delete this item?"] = "Slett dette elementet?"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["[+] show all"] = "[+] Vis alle"; -$a->strings["[-] show less"] = "[-] Vis mindre"; -$a->strings["[+] expand"] = "[+] Utvid"; -$a->strings["[-] collapse"] = "[-] Lukk"; -$a->strings["Password too short"] = "Passordet er for kort"; -$a->strings["Passwords do not match"] = "Passordene er ikke like"; -$a->strings["everybody"] = "alle"; -$a->strings["Secret Passphrase"] = "Hemmelig passordsetning"; -$a->strings["Passphrase hint"] = "Hint om passordsetning"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn."; -$a->strings["close all"] = "Lukk alle"; -$a->strings["Nothing new here"] = "Ikke noe nytt her"; -$a->strings["Rate This Channel (this is public)"] = "Vurder denne kanalen (dette er offentlig)"; -$a->strings["Rating"] = "Vurdering"; -$a->strings["Describe (optional)"] = "Beskriv (valgfritt)"; -$a->strings["Submit"] = "Send"; -$a->strings["Please enter a link URL"] = "Vennligst skriv inn en lenke URL:"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -$a->strings["ago"] = "siden"; -$a->strings["from now"] = "fra nå"; -$a->strings["less than a minute"] = "mindre enn ett minutt"; -$a->strings["about a minute"] = "omtrent et minutt"; -$a->strings["%d minutes"] = "%d minutter"; -$a->strings["about an hour"] = "omtrent en time"; -$a->strings["about %d hours"] = "omtrent %d timer"; -$a->strings["a day"] = "en dag"; -$a->strings["%d days"] = "%d dager"; -$a->strings["about a month"] = "omtrent en måned"; -$a->strings["%d months"] = "%d måneder"; -$a->strings["about a year"] = "omtrent et år"; -$a->strings["%d years"] = "%d år"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; -$a->strings["parent"] = "opp et nivå"; -$a->strings["Collection"] = "Samling"; -$a->strings["Principal"] = "Viktigste"; -$a->strings["Addressbook"] = "Adressebok"; -$a->strings["Calendar"] = "Kalender"; -$a->strings["Schedule Inbox"] = "Tidsplan innboks"; -$a->strings["Schedule Outbox"] = "Tidsplan utboks"; -$a->strings["%1\$s used"] = "%1\$s brukt"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s brukt av %2\$s (%3\$s%)"; -$a->strings["Total"] = "Totalt"; -$a->strings["Shared"] = "Delt"; -$a->strings["Create"] = "Lag"; -$a->strings["Upload"] = "Last opp"; -$a->strings["Name"] = "Navn"; -$a->strings["Type"] = "Type"; -$a->strings["Size"] = "Størrelse"; -$a->strings["Last Modified"] = "Sist endret"; -$a->strings["Create new folder"] = "Lag ny mappe"; -$a->strings["Upload file"] = "Last opp fil"; -$a->strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; -$a->strings["Default"] = "Standard"; -$a->strings["General Features"] = "Generelle funksjoner"; -$a->strings["Content Expiration"] = "Innholdet utløper"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden"; -$a->strings["Multiple Profiles"] = "Flere profiler"; -$a->strings["Ability to create multiple profiles"] = "Mulig å lage flere profiler"; -$a->strings["Advanced Profiles"] = "Avanserte profiler"; -$a->strings["Additional profile sections and selections"] = "Ytterlige seksjoner og utvalg til profilen"; -$a->strings["Profile Import/Export"] = "Profil-import/-eksport"; -$a->strings["Save and load profile details across sites/channels"] = "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler"; -$a->strings["Web Pages"] = "Web-sider"; -$a->strings["Provide managed web pages on your channel"] = "Tilby kontrollerte web-sider på din kanal"; -$a->strings["Private Notes"] = "Private merknader"; -$a->strings["Enables a tool to store notes and reminders"] = "Skrur på et verktøy for lagre merknader og påminnelser"; -$a->strings["Navigation Channel Select"] = "Navigasjon kanalvalg"; -$a->strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen"; -$a->strings["Photo Location"] = "Bildeplassering"; -$a->strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart."; -$a->strings["Extended Identity Sharing"] = "Utvidet identitetsdeling"; -$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Del din identiet med alle nettsteder på Internett. Når denne er avskrudd, deles identiteten bare med nettsteder i matrix."; -$a->strings["Expert Mode"] = "Ekspertmodus"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg"; -$a->strings["Premium Channel"] = "Premiumkanal"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal"; -$a->strings["Post Composition Features"] = "Funksjoner for å lage innlegg"; -$a->strings["Use Markdown"] = "Bruk Markdown"; -$a->strings["Allow use of \"Markdown\" to format posts"] = "Tillat bruk av \"Markdown\" til formatering av innlegg"; -$a->strings["Large Photos"] = "Store bilder"; -$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Inkluder store (640px) miniatyrbilder i innlegg. Hvis denne ikke er skrudd på, bruk små (320px) miniatyrbilder."; -$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisk import av kanalinnhold fra andre kanaler eller strømmer"; -$a->strings["Even More Encryption"] = "Enda mer kryptering"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel"; -$a->strings["Enable voting tools"] = "Skru på verktøy for å stemme"; -$a->strings["Provide a class of post which others can vote on"] = "Tilby en type innlegg som andre kan stemme på"; -$a->strings["Flag Adult Photos"] = "Flagge bilder for voksne"; -$a->strings["Provide photo edit option to hide adult photos from default album view"] = "Gi foto en valgmulighet for å skjule bilder for voksne fra visning i standardalbum"; -$a->strings["Network and Stream Filtering"] = "Nettverk- og strømfiltrering"; -$a->strings["Search by Date"] = "Søk etter dato"; -$a->strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområde"; -$a->strings["Collections Filter"] = "Filter for samlinger"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Skru på miniprogram for å vise Nettverksinnlegg bare fra valgte samlinger"; -$a->strings["Save search terms for re-use"] = "Lagre søkeuttrykk for senere bruk"; -$a->strings["Network Personal Tab"] = "Nettverk personlig fane"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i"; -$a->strings["Network New Tab"] = "Nettverk Ny fane"; -$a->strings["Enable tab to display all new Network activity"] = "Skru på fane for å vise all ny nettverksaktivitet"; -$a->strings["Affinity Tool"] = "Nærhetsverktøy"; -$a->strings["Filter stream activity by depth of relationships"] = "Filtrer strømaktiviteten etter releasjonsdybde"; -$a->strings["Suggest Channels"] = "Foreslå kanaler"; -$a->strings["Show channel suggestions"] = "Vis kanalforslag"; -$a->strings["Post/Comment Tools"] = "Innlegg-/Kommentar-verktøy"; -$a->strings["Tagging"] = "Merking"; -$a->strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende meldinger"; -$a->strings["Post Categories"] = "Innleggskategorier"; -$a->strings["Add categories to your posts"] = "Legg kategorier til dine innlegg"; -$a->strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper"; -$a->strings["Dislike Posts"] = "Mislik innlegg"; -$a->strings["Ability to dislike posts/comments"] = "Mulighet til å mislike innlegg/kommentarer"; -$a->strings["Star Posts"] = "Stjerneinnlegg"; -$a->strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerne"; -$a->strings["Tag Cloud"] = "Merkelappsky"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky på din kanalside"; -$a->strings["Permission denied"] = "Tillatelse avvist"; -$a->strings["(Unknown)"] = "(Ukjent)"; -$a->strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; -$a->strings["Visible to you only."] = "Synlig bare for deg."; -$a->strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; -$a->strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; -$a->strings["Visible to anybody on %s."] = "Synlig for alle på %s."; -$a->strings["Visible to all connections."] = "Synlig for alle forbindelser."; -$a->strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; -$a->strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; -$a->strings["Item not found."] = "Elementet ble ikke funnet."; -$a->strings["Collection not found."] = "Samlingen ble ikke funnet."; -$a->strings["Collection is empty."] = "Samlingen er tom."; -$a->strings["Collection: %s"] = "Samling: %s"; -$a->strings["Connection: %s"] = "Forbindelse: %s"; -$a->strings["Connection not found."] = "Forbindelsen ble ikke funnet."; -$a->strings["Frequently"] = "Ofte"; -$a->strings["Hourly"] = "Hver time"; -$a->strings["Twice daily"] = "To ganger daglig"; -$a->strings["Daily"] = "Daglig"; -$a->strings["Weekly"] = "Ukentlig"; -$a->strings["Monthly"] = "Månedlig"; -$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["No recipient provided."] = "Ingen mottaker angitt."; -$a->strings["[no subject]"] = "[ikke noe emne]"; -$a->strings["Unable to determine sender."] = "Kan ikke avgjøre avsender."; -$a->strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes."; -$a->strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; -$a->strings["Channel location missing."] = "Kanalplassering mangler."; -$a->strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett."; -$a->strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger."; -$a->strings["Protocol disabled."] = "Protokollen er avskrudd."; -$a->strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; -$a->strings["local account not found."] = "lokal konto ble ikke funnet."; -$a->strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; -$a->strings["Save to Folder"] = "Lagre i mappe"; -$a->strings["I will attend"] = "Jeg vil delta"; -$a->strings["I will not attend"] = "Jeg deltar ikke"; -$a->strings["I might attend"] = "Jeg vil kanskje delta"; -$a->strings["I agree"] = "Jeg er enig"; -$a->strings["I disagree"] = "Jeg er uenig"; -$a->strings["I abstain"] = "Jeg avstår"; -$a->strings["Add Star"] = "Legg til stjerne"; -$a->strings["Remove Star"] = "Fjern stjerne"; -$a->strings["Toggle Star Status"] = "Skru av og på stjernestatus"; -$a->strings["starred"] = "stjernemerket"; -$a->strings["Add Tag"] = "Legg til merkelapp"; -$a->strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; -$a->strings["like"] = "liker"; -$a->strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; -$a->strings["dislike"] = "misliker"; -$a->strings["Share This"] = "Del dette"; -$a->strings["share"] = "del"; -$a->strings["%d comment"] = array( - 0 => "%d kommentar", - 1 => "%d kommentarer", -); -$a->strings["View %s's profile - %s"] = "Vis %s sin profil - %s"; -$a->strings["to"] = "til"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "vegg-til-vegg"; -$a->strings["via Wall-To-Wall:"] = "via vegg-til-vegg:"; -$a->strings["Save Bookmarks"] = "Lagre bokmerker"; -$a->strings["Add to Calendar"] = "Legg til i kalender"; -$a->strings["Mark all seen"] = "Merk alle som sett"; -$a->strings["__ctx:noun__ Likes"] = "Liker"; -$a->strings["__ctx:noun__ Dislikes"] = "Liker ikke"; -$a->strings["Close"] = "Lukk"; -$a->strings["This is you"] = "Dette er deg"; -$a->strings["Image"] = "Bilde"; -$a->strings["Insert Link"] = "Sett inn lenke"; -$a->strings["Video"] = "Video"; -$a->strings["Miscellaneous"] = "Forskjellig"; -$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD"; -$a->strings["Required"] = "Påkrevd"; -$a->strings["never"] = "aldri"; -$a->strings["less than a second ago"] = "for mindre enn ett sekund siden"; -$a->strings["year"] = "år"; -$a->strings["years"] = "år"; -$a->strings["month"] = "måned"; -$a->strings["months"] = "måneder"; -$a->strings["week"] = "uke"; -$a->strings["weeks"] = "uker"; -$a->strings["day"] = "dag"; -$a->strings["days"] = "dager"; -$a->strings["hour"] = "time"; -$a->strings["hours"] = "timer"; -$a->strings["minute"] = "minutt"; -$a->strings["minutes"] = "minutter"; -$a->strings["second"] = "sekund"; -$a->strings["seconds"] = "sekunder"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s siden"; -$a->strings["%1\$s's birthday"] = "%1\$s sin fødselsdag"; -$a->strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !"; -$a->strings["New window"] = "Nytt vindu"; -$a->strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane"; -$a->strings["User '%s' deleted"] = "Brukeren '%s' er slettet"; -$a->strings["Attachments:"] = "Vedlegg:"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Hubzilla event notification:"] = "Hubzilla hendelsesvarsling:"; -$a->strings["Starts:"] = "Starter:"; -$a->strings["Finishes:"] = "Slutter:"; -$a->strings["Logout"] = "Logg ut"; -$a->strings["End this session"] = "Avslutt denne økten"; -$a->strings["Home"] = "Hjem"; -$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler"; -$a->strings["Your profile page"] = "Din profilside"; -$a->strings["Edit Profiles"] = "Endre profiler"; -$a->strings["Manage/Edit profiles"] = "Håndter/endre profiler"; -$a->strings["Edit your profile"] = "Endre din profil"; -$a->strings["Your photos"] = "Dine bilder"; -$a->strings["Your files"] = "Dine filer"; -$a->strings["Chat"] = "Chat"; -$a->strings["Your chatrooms"] = "Dine chatterom"; -$a->strings["Your bookmarks"] = "Dine bokmerker"; -$a->strings["Your webpages"] = "Dine websider"; -$a->strings["Login"] = "Logg inn"; -$a->strings["Sign in"] = "Logg på"; -$a->strings["%s - click to logout"] = "%s - klikk for å logge ut"; -$a->strings["Remote authentication"] = "Fjernautentisering"; -$a->strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub"; -$a->strings["Home Page"] = "Hjemmeside"; -$a->strings["Register"] = "Registrer"; -$a->strings["Create an account"] = "Lag en konto"; -$a->strings["Help"] = "Hjelp"; -$a->strings["Help and documentation"] = "Hjelp og dokumentasjon"; -$a->strings["Applications, utilities, links, games"] = "Programmer, verktøy, lenker, spill"; -$a->strings["Search"] = "Søk"; -$a->strings["Search site content"] = "Søk stedets innhold"; -$a->strings["Directory"] = "Katalog"; -$a->strings["Channel Directory"] = "Kanalkatalog"; -$a->strings["Matrix"] = "Matrix"; -$a->strings["Your matrix"] = "Din matrix"; -$a->strings["Mark all matrix notifications seen"] = "Merk alle matrix-varsler som sett"; -$a->strings["Channel Home"] = "Kanalhjem"; -$a->strings["Channel home"] = "Kanalhjem"; -$a->strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett"; -$a->strings["Connections"] = "Forbindelser"; -$a->strings["Notices"] = "Varsel"; -$a->strings["Notifications"] = "Varsler"; -$a->strings["See all notifications"] = "Se alle varsler"; -$a->strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; -$a->strings["Mail"] = "Melding"; -$a->strings["Private mail"] = "Privat post"; -$a->strings["See all private messages"] = "Se alle private meldinger"; -$a->strings["Mark all private messages seen"] = "Merk alle private meldinger som sett"; -$a->strings["Inbox"] = "Innboks"; -$a->strings["Outbox"] = "Utboks"; -$a->strings["Events"] = "Hendelser"; -$a->strings["Event Calendar"] = "Kalender"; -$a->strings["See all events"] = "Se alle hendelser"; -$a->strings["Mark all events seen"] = "Merk alle hendelser som sett"; -$a->strings["Channel Manager"] = "Kanalstyring"; -$a->strings["Manage Your Channels"] = "Håndter dine kanaler"; -$a->strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger"; -$a->strings["Admin"] = "Administrator"; -$a->strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon"; -$a->strings["@name, #tag, content"] = "@navn, @merkelapp, innhold"; -$a->strings["Please wait..."] = "Vennligst vent..."; -$a->strings["Tags"] = "Merkelapper"; -$a->strings["Keywords"] = "Nøkkelord"; -$a->strings["have"] = "har"; -$a->strings["has"] = "har"; -$a->strings["want"] = "ønsker"; -$a->strings["wants"] = "ønsker"; -$a->strings["likes"] = "liker"; -$a->strings["dislikes"] = "misliker"; -$a->strings[" and "] = "og"; -$a->strings["public profile"] = "offentlig profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; -$a->strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; -$a->strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; -$a->strings["Public Timeline"] = "Offentlig tidslinje"; -$a->strings["view full size"] = "vis full størrelse"; -$a->strings["Directory Options"] = "Kataloginnstillinger"; -$a->strings["Alphabetic"] = "Alfabetisk"; -$a->strings["Reverse Alphabetic"] = "Omvendt alfabetisk"; -$a->strings["Newest to Oldest"] = "Nyest til eldst"; -$a->strings["Oldest to Newest"] = "Eldst til nyest"; -$a->strings["Sort"] = "Sorter"; -$a->strings["Safe Mode"] = "Trygt modus"; -$a->strings["Public Forums Only"] = "Bare offentlige forum"; -$a->strings["This Website Only"] = "Kun dette nettstedet"; -$a->strings["Embedded content"] = "Innebygget innhold"; -$a->strings["Embedding disabled"] = "Innbygging avskrudd"; -$a->strings["Invalid data packet"] = "Ugyldig datapakke"; -$a->strings["Unable to verify channel signature"] = "Ikke i stand til å sjekke kanalsignaturen"; -$a->strings["Unable to verify site signature for %s"] = "Ikke i stand til å bekrefte signaturen til %s"; -$a->strings["Logged out."] = "Logget ut."; -$a->strings["Failed authentication"] = "Mislykket autentisering"; -$a->strings["Login failed."] = "Innlogging mislyktes."; -$a->strings["Hubzilla Notification"] = "Hubzilla-varsling"; -$a->strings["hubzilla"] = "hubzilla"; -$a->strings["Thank You,"] = "Tusen takk,"; -$a->strings["%s Administrator"] = "%s administrator"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notify] Ny melding mottatt hos %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s sendte deg en ny privat melding på %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s."; -$a->strings["a private message"] = "en privat melding"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besøk %s for å se og/eller svare på dine private meldinger."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]a %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]%4\$s's %5\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]din %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] Kommentar til samtale #%1\$d av %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterte på et element eller en samtale du følger"; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare i samtalen"; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notify] %s skrev et innlegg på din profilvegg"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s skrev et innlegg på din profilvegg på %3\$s"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s skrev et innlegg på [zrl=%3\$s]din vegg[/zrl]"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notify] %s merket deg"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s merket deg på %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]merket deg[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notify] %1\$s prikket deg"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s dyttet deg på %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]dyttet deg[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notify] %s merket ditt innlegg"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s merket ditt innlegg på %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s merket [zrl=%3\$s]ditt innlegg[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Notify] Introduksjon mottatt"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en ny forespørsel om forbindelse fra '%2\$s' hos %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du mottok [zrl=%2\$s]en ny forespørsel om forbindelse[/zrl] fra %3\$s."; -$a->strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notify] Venneforslag mottatt"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en venneforespørsel fra '%2\$s' hos %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 mottatt [zrl=%2\$s]et venneforslaget[/zrl] angående %3\$s fra %4\$s. "; -$a->strings["Name:"] = "Navn:"; -$a->strings["Photo:"] = "Bilde:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå dette forslaget."; -$a->strings["[Red:Notify]"] = "[Red:Notify]"; -$a->strings["%d invitation available"] = array( - 0 => "%d invitasjon tilgjengelig", - 1 => "%d invitasjoner tilgjengelig", -); -$a->strings["Advanced"] = "Avansert"; -$a->strings["Find Channels"] = "Finn kanaler"; -$a->strings["Enter name or interest"] = "Skriv navn eller interesse"; -$a->strings["Connect/Follow"] = "Forbindelse/Følg"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking"; -$a->strings["Find"] = "Finn"; -$a->strings["Channel Suggestions"] = "Kanalforslag"; -$a->strings["Random Profile"] = "Tilfeldig profil"; -$a->strings["Invite Friends"] = "Inviter venner"; -$a->strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island"; -$a->strings["%d connection in common"] = array( - 0 => "%d forbindelse felles", - 1 => "%d forbindelser felles", -); -$a->strings["show more"] = "vis mer"; -$a->strings["Visible to your default audience"] = "Synlig for ditt standard publikum"; -$a->strings["Show"] = "Vis"; -$a->strings["Don't show"] = "Ikke vis"; -$a->strings["Permissions"] = "Tillatelser"; -$a->strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"; -$a->strings["Image file is empty."] = "Bildefilen er tom."; -$a->strings["Unable to process image"] = "Kan ikke behandle bildet"; -$a->strings["Photo storage failed."] = "Bildelagring mislyktes."; -$a->strings["Upload New Photos"] = "Last opp nye bilder"; -$a->strings["Male"] = "Mannlig"; -$a->strings["Female"] = "Kvinnelig"; -$a->strings["Currently Male"] = "For tiden mann"; -$a->strings["Currently Female"] = "For tiden kvinne"; -$a->strings["Mostly Male"] = "For det meste mann"; -$a->strings["Mostly Female"] = "For det meste kvinne"; -$a->strings["Transgender"] = "Transkjønnet"; -$a->strings["Intersex"] = "interkjønnet"; -$a->strings["Transsexual"] = "Transseksuell"; -$a->strings["Hermaphrodite"] = "Hermafroditt"; -$a->strings["Neuter"] = "Intetkjønn"; -$a->strings["Non-specific"] = "Ubestemt"; -$a->strings["Other"] = "Annen"; -$a->strings["Undecided"] = "Ubestemt"; -$a->strings["Males"] = "Menn"; -$a->strings["Females"] = "Kvinner"; -$a->strings["Gay"] = "Homo"; -$a->strings["Lesbian"] = "Lesbisk"; -$a->strings["No Preference"] = "Ingen preferanse"; -$a->strings["Bisexual"] = "Biseksuell"; -$a->strings["Autosexual"] = "Autoseksuell"; -$a->strings["Abstinent"] = "Avholdende"; -$a->strings["Virgin"] = "Jomfru"; -$a->strings["Deviant"] = "Avviker"; -$a->strings["Fetish"] = "Fetisj"; -$a->strings["Oodles"] = "Masse"; -$a->strings["Nonsexual"] = "Ikke-seksuell"; -$a->strings["Single"] = "Enslig"; -$a->strings["Lonely"] = "Ensom"; -$a->strings["Available"] = "Tilgjengelig"; -$a->strings["Unavailable"] = "Ikke tilgjengelig"; -$a->strings["Has crush"] = "Er forelsket"; -$a->strings["Infatuated"] = "Betatt"; -$a->strings["Dating"] = "Sammen med"; -$a->strings["Unfaithful"] = "Utro"; -$a->strings["Sex Addict"] = "Sexavhengig"; -$a->strings["Friends/Benefits"] = "Venner med frynsegoder"; -$a->strings["Casual"] = "Tilfeldig"; -$a->strings["Engaged"] = "Forlovet"; -$a->strings["Married"] = "Gift"; -$a->strings["Imaginarily married"] = "Gift i fantasien"; -$a->strings["Partners"] = "Partnere"; -$a->strings["Cohabiting"] = "Samboer"; -$a->strings["Common law"] = "Samboer"; -$a->strings["Happy"] = "Lykkelig"; -$a->strings["Not looking"] = "Ikke på utkikk"; -$a->strings["Swinger"] = "Partnerbytte"; -$a->strings["Betrayed"] = "Bedratt"; -$a->strings["Separated"] = "Separert"; -$a->strings["Unstable"] = "Ustabilt"; -$a->strings["Divorced"] = "Skilt"; -$a->strings["Imaginarily divorced"] = "Skilt i fantasien"; -$a->strings["Widowed"] = "Enke"; -$a->strings["Uncertain"] = "Usikkert"; -$a->strings["It's complicated"] = "Det er komplisert"; -$a->strings["Don't care"] = "Bryr meg ikke"; -$a->strings["Ask me"] = "Spør meg"; -$a->strings["Site Admin"] = "Nettstedsadministrator"; -$a->strings["Address Book"] = "Adressebok"; -$a->strings["Mood"] = "Stemning"; -$a->strings["Probe"] = "Undersøk"; -$a->strings["Suggest"] = "Forreslå"; -$a->strings["Random Channel"] = "Tilfeldig kanal"; -$a->strings["Invite"] = "Inviter"; -$a->strings["Features"] = "Funksjoner"; -$a->strings["Language"] = "Språk"; -$a->strings["Post"] = "Innlegg"; -$a->strings["Profile Photo"] = "Profilbilde"; -$a->strings["Update"] = "Oppdater"; -$a->strings["Install"] = "Installer"; -$a->strings["Purchase"] = "Kjøp"; -$a->strings["prev"] = "forrige"; -$a->strings["first"] = "første"; -$a->strings["last"] = "siste"; -$a->strings["next"] = "neste"; -$a->strings["older"] = "eldre"; -$a->strings["newer"] = "nyere"; -$a->strings["No connections"] = "Ingen forbindelser"; -$a->strings["%d Connection"] = array( - 0 => "%d forbindelse", - 1 => "%d forbindelser", -); -$a->strings["View Connections"] = "Vis forbindelser"; -$a->strings["poke"] = "prikk"; -$a->strings["ping"] = "varsle"; -$a->strings["pinged"] = "varslet"; -$a->strings["prod"] = "oppildne"; -$a->strings["prodded"] = "oppildnet"; -$a->strings["slap"] = "daske"; -$a->strings["slapped"] = "dasket"; -$a->strings["finger"] = "fingre"; -$a->strings["fingered"] = "fingret"; -$a->strings["rebuff"] = "tilbakevise"; -$a->strings["rebuffed"] = "tilbakeviste"; -$a->strings["happy"] = "glad"; -$a->strings["sad"] = "trist"; -$a->strings["mellow"] = "dempet"; -$a->strings["tired"] = "trøtt"; -$a->strings["perky"] = "oppkvikket"; -$a->strings["angry"] = "sint"; -$a->strings["stupified"] = "sløvet"; -$a->strings["puzzled"] = "forundret"; -$a->strings["interested"] = "interessert"; -$a->strings["bitter"] = "bitter"; -$a->strings["cheerful"] = "munter"; -$a->strings["alive"] = "levende"; -$a->strings["annoyed"] = "irritert"; -$a->strings["anxious"] = "nervøs"; -$a->strings["cranky"] = "gretten"; -$a->strings["disturbed"] = "foruroliget"; -$a->strings["frustrated"] = "frustrert"; -$a->strings["depressed"] = "lei seg"; -$a->strings["motivated"] = "motivert"; -$a->strings["relaxed"] = "avslappet"; -$a->strings["surprised"] = "overrasket"; -$a->strings["Monday"] = "mandag"; -$a->strings["Tuesday"] = "tirsdag"; -$a->strings["Wednesday"] = "onsdag"; -$a->strings["Thursday"] = "torsdag"; -$a->strings["Friday"] = "fredag"; -$a->strings["Saturday"] = "lørdag"; -$a->strings["Sunday"] = "søndag"; -$a->strings["January"] = "januar"; -$a->strings["February"] = "februar"; -$a->strings["March"] = "mars"; -$a->strings["April"] = "april"; -$a->strings["May"] = "mai"; -$a->strings["June"] = "juni"; -$a->strings["July"] = "juli"; -$a->strings["August"] = "august"; -$a->strings["September"] = "september"; -$a->strings["October"] = "oktober"; -$a->strings["November"] = "november"; -$a->strings["December"] = "desember"; -$a->strings["unknown.???"] = "ukjent.???"; -$a->strings["bytes"] = "bytes"; -$a->strings["remove category"] = "fjern kategori"; -$a->strings["remove from file"] = "fjern fra fil"; -$a->strings["Click to open/close"] = "Klikk for å åpne/lukke"; -$a->strings["Link to Source"] = "Lenke til kilde"; -$a->strings["Select a page layout: "] = "Velg en side-layout:"; -$a->strings["default"] = "standard"; -$a->strings["Page content type: "] = "Sidens innholdstype:"; -$a->strings["Select an alternate language"] = "Velg et annet språk"; -$a->strings["activity"] = "aktivitet"; -$a->strings["Design"] = "Formgivning"; -$a->strings["Blocks"] = "Byggeklosser"; -$a->strings["Menus"] = "Menyer"; -$a->strings["Layouts"] = "Layout"; -$a->strings["Pages"] = "Sider"; -$a->strings["Missing room name"] = "Mangler romnavn"; -$a->strings["Duplicate room name"] = "Duplikat romnavn"; -$a->strings["Invalid room specifier."] = "Ugyldig rom-spesifisering"; -$a->strings["Room not found."] = "Rommet ble ikke funnet."; -$a->strings["Room is full"] = "Rommet er fullt"; -$a->strings["Can view my normal stream and posts"] = "Kan se min normale strøm og innlegg"; -$a->strings["Can view my default channel profile"] = "Kan se min standard kanalprofil"; -$a->strings["Can view my photo albums"] = "Kan se mine fotoalbum"; -$a->strings["Can view my connections"] = "Kan se mine forbindelser"; -$a->strings["Can view my file storage"] = "Kan se mitt fillager"; -$a->strings["Can view my webpages"] = "Kan se mine websider"; -$a->strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kan lage innlegg på min kanalside (\"vegg\")"; -$a->strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg"; -$a->strings["Can send me private mail messages"] = "Kan sende meg private meldinger"; -$a->strings["Can post photos to my photo albums"] = "Kan legge inn bilder i mine fotoalbum"; -$a->strings["Can like/dislike stuff"] = "Kan like/ikke like forskjellige greier"; -$a->strings["Profiles and things other than posts/comments"] = "Profiler og andre ting enn innlegg/kommentarer"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan videresende til alle mine kanalkontakter via @navn i innlegg"; -$a->strings["Advanced - useful for creating group forum channels"] = "Avansert - nyttig for å lage forumkanaler for grupper"; -$a->strings["Can chat with me (when available)"] = "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)"; -$a->strings["Can write to my file storage"] = "Kan skrive til mitt fillager"; -$a->strings["Can edit my webpages"] = "Kan endre mine websider"; -$a->strings["Can source my public posts in derived channels"] = "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Litt avansert - svært nyttig i åpne fellesskap"; -$a->strings["Can administer my channel resources"] = "Kan administrere mine kanalressurser"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Ekstremt avansert. La dette være med mindre du vet hva du gjør"; -$a->strings["Social Networking"] = "Sosialt nettverk"; -$a->strings["Mostly Public"] = "Ganske offentlig"; -$a->strings["Restricted"] = "Begrenset"; -$a->strings["Private"] = "Privat"; -$a->strings["Community Forum"] = "Forum for fellesskap"; -$a->strings["Feed Republish"] = "Republisering av strømmet innhold"; -$a->strings["Special Purpose"] = "Spesiell bruk"; -$a->strings["Celebrity/Soapbox"] = "Kjendis/Talerstol"; -$a->strings["Group Repository"] = "Gruppelager"; -$a->strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus"; -$a->strings["Some blurb about what to do when you're new here"] = "En standardtekst om hva du bør gjøre som ny her"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler."; -$a->strings["Create a new channel"] = "Lag en ny kanal"; -$a->strings["Current Channel"] = "Gjeldende kanal"; -$a->strings["Switch to one of your channels by selecting it."] = "Bytt til en av dine kanaler ved å velge den."; -$a->strings["Default Channel"] = "Standardkanal"; -$a->strings["Make Default"] = "Gjør til standard"; -$a->strings["%d new messages"] = "%d nye meldinger"; -$a->strings["%d new introductions"] = "%d nye introduksjoner"; -$a->strings["Delegated Channels"] = "Delegerte kanaler"; -$a->strings["Name is required"] = "Navn er påkrevd"; -$a->strings["Key and Secret are required"] = "Nøkkel og hemmelighet er påkrevd"; -$a->strings["Diaspora Policy Settings updated."] = "Innstillinger for Diaspora retningslinjer er oppdatert."; -$a->strings["Passwords do not match. Password unchanged."] = "Passordene stemmer ikke overens. Passord uforandret."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke tillatt. Passord uforandret."; -$a->strings["Password changed."] = "Passord endret."; -$a->strings["Password update failed. Please try again."] = "Passord oppdatering mislyktes. Vennligst prøv igjen."; -$a->strings["Not valid email."] = "Ikke gyldig e-post."; -$a->strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."; -$a->strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."; -$a->strings["Settings updated."] = "Innstillinger oppdatert."; -$a->strings["No"] = "Nei"; -$a->strings["Yes"] = "Ja"; -$a->strings["Add application"] = "Legg til program"; -$a->strings["Name of application"] = "Navn på program"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisk laget - kan endres om du vil. Største lengde 20"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Omdirigering"; -$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette"; -$a->strings["Icon url"] = "Ikon-URL"; -$a->strings["Optional"] = "Valgfritt"; -$a->strings["You can't edit this application."] = "Du kan ikke endre dette programmet."; -$a->strings["Connected Apps"] = "Tilkoblede app-er"; -$a->strings["Client key starts with"] = "Klientnøkkel starter med"; -$a->strings["No name"] = "Ikke noe navn"; -$a->strings["Remove authorization"] = "Fjern tillatelse"; -$a->strings["No feature settings configured"] = "Ingen funksjonsinnstillinger er konfigurert"; -$a->strings["Feature/Addon Settings"] = "Funksjons-/Tilleggsinnstillinger"; -$a->strings["Settings for the built-in Diaspora emulator"] = "Innstillinger for den innebygde Diaspora-etterlikningen"; -$a->strings["Allow any Diaspora member to comment on your public posts"] = "Tillat ethvert Diaspora-medlem å kommentere på dine offentlige innlegg."; -$a->strings["Diaspora Policy Settings"] = "Innstillinger for Diaspora retningslinjer"; -$a->strings["Prevent your hashtags from being redirected to other sites"] = "Stopp dine merkelapper/emneknagger/hashtagger fra å bli omdirigert til andre nettsteder"; -$a->strings["Account Settings"] = "Kontoinnstillinger"; -$a->strings["Enter New Password:"] = "Skriv nytt passord:"; -$a->strings["Confirm New Password:"] = "Bekreft nytt passord:"; -$a->strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres"; -$a->strings["Email Address:"] = "E-postadresse:"; -$a->strings["Remove Account"] = "Slett konto"; -$a->strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler"; -$a->strings["Off"] = "Av"; -$a->strings["On"] = "På"; -$a->strings["Additional Features"] = "Ekstra funksjoner"; -$a->strings["Connector Settings"] = "Koblingsinnstillinger"; -$a->strings["No special theme for mobile devices"] = "Ikke noe spesielt tema for mobile enheter"; -$a->strings["%s - (Experimental)"] = "%s - (Eksperimentelt)"; -$a->strings["mobile"] = "mobil"; -$a->strings["Display Settings"] = "Visningsinnstillinger"; -$a->strings["Display Theme:"] = "Visningstema:"; -$a->strings["Mobile Theme:"] = "Mobiltema:"; -$a->strings["Enable user zoom on mobile devices"] = "Skru på brukerstyrt zoom på mobile enheter"; -$a->strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekunder"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum"; -$a->strings["Maximum number of conversations to load at any time:"] = "Maksimalt antall samtaler å laste samtidig:"; -$a->strings["Maximum of 100 items"] = "Maksimum 100 elementer"; -$a->strings["Show emoticons (smilies) as images"] = "Vis emoticons (smilefjes) som bilder"; -$a->strings["Link post titles to source"] = "Lenk innleggets tittel til kilden"; -$a->strings["System Page Layout Editor - (advanced)"] = "Systemsidens layoutbehandler - (avansert)"; -$a->strings["Use blog/list mode on channel page"] = "Bruk blogg-/listemodus på kanalsiden"; -$a->strings["(comments displayed separately)"] = "(kommentarer vist separat)"; -$a->strings["Use blog/list mode on matrix page"] = "Bruk blogg-/listemodus på matrix-siden"; -$a->strings["Channel page max height of content (in pixels)"] = "Kanalsidens makshøyde for innhold (i pixler)"; -$a->strings["click to expand content exceeding this height"] = "klikk for å utvide innhold som overstiger denne høyden"; -$a->strings["Matrix page max height of content (in pixels)"] = "Matrix-sidens makshøyde for innholde (i pixler)"; -$a->strings["Nobody except yourself"] = "Ingen unntatt deg selv"; -$a->strings["Only those you specifically allow"] = "Bare de du spesifikt tillater"; -$a->strings["Approved connections"] = "Godkjente forbindelser"; -$a->strings["Any connections"] = "Enhver forbindelse"; -$a->strings["Anybody on this website"] = "Enhver ved dette nettstedet"; -$a->strings["Anybody in this network"] = "Enhver i dette nettverket"; -$a->strings["Anybody authenticated"] = "Enhver som er autentisert"; -$a->strings["Anybody on the internet"] = "Enhver på Internett"; -$a->strings["Publish your default profile in the network directory"] = "Publiser din standardprofil i nettverkskatalogen"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?"; -$a->strings["or"] = "eller"; -$a->strings["Your channel address is"] = "Din kanaladresse er"; -$a->strings["Channel Settings"] = "Kanalinnstillinger"; -$a->strings["Basic Settings"] = "Grunninnstillinger"; -$a->strings["Your Timezone:"] = "Din tidssone:"; -$a->strings["Default Post Location:"] = "Standard plassering ved innlegg:"; -$a->strings["Geographical location to display on your posts"] = "Geografisk plassering som vises på dine innlegg"; -$a->strings["Use Browser Location:"] = "Bruk nettleseren sin plassering:"; -$a->strings["Adult Content"] = "Voksent innhold"; -$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)"; -$a->strings["Security and Privacy Settings"] = "Sikkerhets- og personverninnstillinger"; -$a->strings["Your permissions are already configured. Click to view/adjust"] = "Dine tillatelser er allerede satt. Klikk for å se/justere."; -$a->strings["Hide my online presence"] = "Skjul min tilstedeværelse online"; -$a->strings["Prevents displaying in your profile that you are online"] = "Forhindrer visning på din profil av at du er online "; -$a->strings["Simple Privacy Settings:"] = "Enkle personverninnstillinger:"; -$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)"; -$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)"; -$a->strings["Private - default private, never open or public"] = "Privat - standard er privat, aldri åpen eller offentlig"; -$a->strings["Blocked - default blocked to/from everybody"] = "Blokkert - standard blokkert til/fra alle"; -$a->strings["Allow others to tag your posts"] = "Tillat andre å merke dine innlegg"; -$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant"; -$a->strings["Advanced Privacy Settings"] = "Avanserte personverninnstillinger"; -$a->strings["Expire other channel content after this many days"] = "Annet kanal innhold utløper etter så mange dager"; -$a->strings["0 or blank prevents expiration"] = "0 eller blankt forhindrer utløp"; -$a->strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:"; -$a->strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet"; -$a->strings["Default Post Permissions"] = "Standard innleggstillatelser"; -$a->strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; -$a->strings["Channel permissions category:"] = "Kategori med kanaltillatelser:"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maksimalt antall private meldinger per dag fra ukjente personer:"; -$a->strings["Useful to reduce spamming"] = "Nyttig for å redusere søppelpost"; -$a->strings["Notification Settings"] = "Varslingsinnstillinger"; -$a->strings["By default post a status message when:"] = "Legg inn en statusmelding når du:"; -$a->strings["accepting a friend request"] = "aksepterer en venneforespørsel"; -$a->strings["joining a forum/community"] = "blir med i et forum/miljø"; -$a->strings["making an interesting profile change"] = "gjør en interessant profilendring"; -$a->strings["Send a notification email when:"] = "Send en varsel-e-post når:"; -$a->strings["You receive a connection request"] = "Du har mottatt en forespørsel om forbindelse"; -$a->strings["Your connections are confirmed"] = "Dine forbindelser er bekreftet"; -$a->strings["Someone writes on your profile wall"] = "Noen skriver på din profilvegg"; -$a->strings["Someone writes a followup comment"] = "Noen skriver en oppfølgende kommentar"; -$a->strings["You receive a private message"] = "Du mottar en privat melding"; -$a->strings["You receive a friend suggestion"] = "Du mottok et venneforslag"; -$a->strings["You are tagged in a post"] = "Du merkes i et innlegg"; -$a->strings["You are poked/prodded/etc. in a post"] = "Du ble prikket/oppildnet/og så vider i et innlegg"; -$a->strings["Show visual notifications including:"] = "Vis visuelle varslinger om:"; -$a->strings["Unseen matrix activity"] = "Usett matrixaktivitet"; -$a->strings["Unseen channel activity"] = "Usett kanalaktivitet"; -$a->strings["Unseen private messages"] = "Usette private meldinger"; -$a->strings["Recommended"] = "Anbefalt"; -$a->strings["Upcoming events"] = "Kommende hendelser"; -$a->strings["Events today"] = "Hendelser idag"; -$a->strings["Upcoming birthdays"] = "Kommende fødselsdager"; -$a->strings["Not available in all themes"] = "Ikke tilgjengelig i alle temaer"; -$a->strings["System (personal) notifications"] = "System (personlige) varslinger"; -$a->strings["System info messages"] = "System infomeldinger"; -$a->strings["System critical alerts"] = "System kritiske varsel"; -$a->strings["New connections"] = "Nye forbindelser"; -$a->strings["System Registrations"] = "Systemregistreringer"; -$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler"; -$a->strings["Notify me of events this many days in advance"] = "Varsle meg om hendelser dette antall dager på forhånd"; -$a->strings["Must be greater than 0"] = "Må være større enn 0"; -$a->strings["Advanced Account/Page Type Settings"] = "Avanserte innstillinger for konto/sidetype"; -$a->strings["Change the behaviour of this account for special situations"] = "Endre oppførselen til denne kontoen i spesielle situasjoner"; -$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!"; -$a->strings["Miscellaneous Settings"] = "Diverse innstillinger"; -$a->strings["Personal menu to display in your channel pages"] = "Personlig meny som kan vises på dine kanalsider"; -$a->strings["Remove Channel"] = "Fjern kanal"; -$a->strings["Remove this channel."] = "Fjern denne kanalen."; -$a->strings["Xchan Lookup"] = "Xchan oppslag"; -$a->strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie):"; -$a->strings["Not found."] = "Ikke funnet."; -$a->strings["Authorize application connection"] = "Tillat programforbindelse"; -$a->strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; -$a->strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; -$a->strings["Block Name"] = "Byggeklossens navn"; -$a->strings["Channel added."] = "Kanal lagt til."; -$a->strings["Tag removed"] = "Merkelapp fjernet"; -$a->strings["Remove Item Tag"] = "Fjern merkelapp fra element"; -$a->strings["Select a tag to remove: "] = "Velg merkelapp å fjerne:"; -$a->strings["Remove"] = "Fjern"; -$a->strings["Continue"] = "Fortsett"; -$a->strings["Premium Channel Setup"] = "Premiumkanal-oppsett"; -$a->strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"; -$a->strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal"; -$a->strings["Profile Match"] = "Profiltreff"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil."; -$a->strings["is interested in:"] = "er interessert i:"; -$a->strings["No matches"] = "Ingen treff"; -$a->strings["Item not available."] = "Elementet er ikke tilgjengelig."; -$a->strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; -$a->strings["Hubzilla - "The Network""] = "Hubzilla - "Nettverket""; -$a->strings["Welcome to %s"] = "Velkommen til %s"; -$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæring av bildet mislyktes."; -$a->strings["Image resize failed."] = "Endring av bildestørrelse mislyktes."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; -$a->strings["Image exceeds size limit of %d"] = "Bildet overstiger størrelsesbegrensningen på %d"; -$a->strings["Unable to process image."] = "Kan ikke behandle bildet."; -$a->strings["Photo not available."] = "Bildet er ikke tilgjengelig."; -$a->strings["Upload File:"] = "Last opp fil:"; -$a->strings["Select a profile:"] = "Velg en profil:"; -$a->strings["Upload Profile Photo"] = "Last opp profilbilde:"; -$a->strings["skip this step"] = "hopp over dette steget"; -$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum"; -$a->strings["Crop Image"] = "Beskjær bildet"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjæringen for optimal visning."; -$a->strings["Done Editing"] = "Avslutt redigering"; -$a->strings["Image uploaded successfully."] = "Opplasting av bildet var vellykket."; -$a->strings["Image upload failed."] = "Opplasting av bildet mislyktes."; -$a->strings["Image size reduction [%s] failed."] = "Forminsking av bildet [%s] mislyktes."; -$a->strings["Invalid item."] = "Ugyldig element."; -$a->strings["Channel not found."] = "Kanalen ble ikke funnet."; -$a->strings["Page not found."] = "Siden ikke funnet."; -$a->strings["Like/Dislike"] = "Liker/Liker ikke"; -$a->strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer."; -$a->strings["Please login with your Hubzilla ID or register as a new Redmatrix.member to continue."] = "Vennligst logg inn med din Hubzilla ID eller registrer deg som et nytt Redmatrix.medlem for å fortsette"; -$a->strings["Invalid request."] = "Ugyldig forespørsel."; -$a->strings["thing"] = "ting"; -$a->strings["Channel unavailable."] = "Kanalen er utilgjengelig."; -$a->strings["Previous action reversed."] = "Forrige handling er omgjort."; -$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s"; -$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s"; -$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s"; -$a->strings["Action completed."] = "Handling ferdig."; -$a->strings["Thank you."] = "Tusen takk."; -$a->strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter."; -$a->strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning."; -$a->strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd."; -$a->strings["Event not found."] = "Hendelsen ble ikke funnet."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Endre hendelse"; -$a->strings["Delete event"] = "Slett hendelse"; -$a->strings["Create New Event"] = "Lag ny hendelse"; -$a->strings["Previous"] = "Forrige"; -$a->strings["Next"] = "Neste"; -$a->strings["Export"] = "Eksport"; -$a->strings["Event removed"] = "Hendelse slettet"; -$a->strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; -$a->strings["Event details"] = "Hendelsesdetaljer"; -$a->strings["Starting date and Title are required."] = "Startdato og Tittel er påkrevd."; -$a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; -$a->strings["Event Starts:"] = "Hendelsen starter:"; -$a->strings["Finish date/time is not known or not relevant"] = "Sluttdato/-tidspunkt er ikke kjent eller ikke relevant"; -$a->strings["Event Finishes:"] = "Hendelsen slutter:"; -$a->strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone"; -$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager."; -$a->strings["Description:"] = "Beskrivelse:"; -$a->strings["Title:"] = "Tittel:"; -$a->strings["Share this event"] = "Del denne hendelsen"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; -$a->strings["Public Sites"] = "Offentlige nettsteder"; -$a->strings["The listed sites allow public registration into the Hubzilla. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i Hubzilla. Alle nettsteder i matrix er forbundet så medlemskap på enhver av dem formidler medlemskap i hele matrix. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Tilbyderlenkene kan gi tilleggsopplysninger."; -$a->strings["Rate this hub"] = "Vurder denne hubben"; -$a->strings["Site URL"] = "Nettstedets URL"; -$a->strings["Access Type"] = "Tilgangstype"; -$a->strings["Registration Policy"] = "Retningslinjer for registrering"; -$a->strings["Location"] = "Plassering"; -$a->strings["View hub ratings"] = "Vis vurderinger av hubben"; -$a->strings["Rate"] = "Vurder"; -$a->strings["View ratings"] = "Vis vurderinger"; -$a->strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktinformasjonen."; -$a->strings["Could not locate selected profile."] = "Fant ikke valgt profil."; -$a->strings["Connection updated."] = "Forbindelsen er oppdatert."; -$a->strings["Failed to update connection record."] = "Mislyktes med å oppdatere forbindelsesinformasjonen."; -$a->strings["is now connected to"] = "er nå forbundet til"; -$a->strings["Could not access address book record."] = "Fikk ikke tilgang til informasjonen i adresseboken."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."; -$a->strings["Channel has been unblocked"] = "Kanalen er ikke blokkert lenger"; -$a->strings["Channel has been blocked"] = "Kanalen har blitt blokkert"; -$a->strings["Unable to set address book parameters."] = "Ikke i stand til å angi parametre for adresseboken."; -$a->strings["Channel has been unignored"] = "Kanalen er ikke lenger ignorert"; -$a->strings["Channel has been ignored"] = "Kanalen blir ignorert"; -$a->strings["Channel has been unarchived"] = "Kanalen er ikke lenger arkivert"; -$a->strings["Channel has been archived"] = "Kanalen er arkivert"; -$a->strings["Channel has been unhidden"] = "Kanalen er ikke lenger skjult"; -$a->strings["Channel has been hidden"] = "Kanalen er blitt skjult"; -$a->strings["Channel has been approved"] = "Kanalen har blitt godkjent"; -$a->strings["Channel has been unapproved"] = "Kanalen er ikke lenger godkjent"; -$a->strings["Connection has been removed."] = "Forbindelsen har blitt fjernet."; -$a->strings["View %s's profile"] = "Vis %s sin profil"; -$a->strings["Refresh Permissions"] = "Oppfrisk tillatelser"; -$a->strings["Fetch updated permissions"] = "Hent oppdaterte tillatelser"; -$a->strings["Recent Activity"] = "Nylig aktivitet"; -$a->strings["View recent posts and comments"] = "Vis nylige innlegg og kommentarer"; -$a->strings["Unblock"] = "Ikke blokker lenger"; -$a->strings["Block"] = "Blokker"; -$a->strings["Block (or Unblock) all communications with this connection"] = "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen"; -$a->strings["Unignore"] = "Ikke ignorer lenger"; -$a->strings["Ignore"] = "Ignorer"; -$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen"; -$a->strings["Unarchive"] = "Ikke arkiver lenger"; -$a->strings["Archive"] = "Arkiver"; -$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold"; -$a->strings["Unhide"] = "Ikke skjul lenger"; -$a->strings["Hide"] = "Skjul"; -$a->strings["Hide or Unhide this connection from your other connections"] = "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser"; -$a->strings["Delete this connection"] = "Slett denne forbindelsen"; -$a->strings["Approve this connection"] = "Godta denne forbindelsen"; -$a->strings["Accept connection to allow communication"] = "Godta denne forbindelsen for å tillate kommunikasjon"; -$a->strings["Connections: settings for %s"] = "Forbindelser: innstillinger for %s"; -$a->strings["Apply these permissions automatically"] = "Bruk disse tillatelsene automatisk"; -$a->strings["Apply the permissions indicated on this page to all new connections."] = "Bruk tillatelsene angitt på denne siden på alle nye forbindelser."; -$a->strings["Slide to adjust your degree of friendship"] = "Flytt for å justere din grad av vennskap"; -$a->strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)"; -$a->strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"; -$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Standard tillatelser for din kanaltype har (nettopp) blitt valgt. De har ikke blitt sendt inn og lagret ennå. Vennligst se over tillatelsene på denne siden og gjør eventuelle ønskede endringer nå. Denne nye forbindelsen kan muligens ikke klare å kommunisere med deg inntil du sender inn denne siden, som vil installere og ta i bruk de valgte tillatelsene."; -$a->strings["inherited"] = "arvet"; -$a->strings["Connection has no individual permissions!"] = "Forbindelsen har ingen individuelle tillatelser!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Dette kan være riktig basert på dine personverninnstillinger, men kanskje du bør se over \"Avanserte tillatelser\"."; -$a->strings["Profile Visibility"] = "Profilens synlighet"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. "; -$a->strings["Contact Information / Notes"] = "Kontaktinformasjon / Merknader"; -$a->strings["Edit contact notes"] = "Endre kontaktmerknader"; -$a->strings["Their Settings"] = "Deres innstillinger"; -$a->strings["My Settings"] = "Mine innstillinger"; -$a->strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "Standard tillatelser for denne kanaltypen har (nettopp) blitt valgt. De har ikke blitt lagret og det er for øyeblikket ingen lagrede standard tillatelser. Vennligst se over/endre de valgte innstillingene og klikk [Send inn] for å lagre."; -$a->strings["Clear/Disable Automatic Permissions"] = "Tøm/Skru av Automatiske tillatelser"; -$a->strings["Forum Members"] = "Forummedlemmer"; -$a->strings["Soapbox"] = "Talerstol"; -$a->strings["Full Sharing (typical social network permissions)"] = "Full deling (typiske tillatelser i sosiale nettverk)"; -$a->strings["Cautious Sharing "] = "Forsiktig deling"; -$a->strings["Follow Only"] = "Bare følg"; -$a->strings["Individual Permissions"] = "Individuelle tillatelser"; -$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Å endre arvede innstillinger på denne siden vil ikke ha noen effekt."; -$a->strings["Advanced Permissions"] = "Avanserte tillatelser"; -$a->strings["Simple Permissions (select one and submit)"] = "Enkle tillatelser (velg en og lagre)"; -$a->strings["Visit %s's profile - %s"] = "Besøk %s sin profil - %s"; -$a->strings["Block/Unblock contact"] = "Blokker/Ikke blokker kontakt"; -$a->strings["Ignore contact"] = "Ignorer kontakt"; -$a->strings["Repair URL settings"] = "Reparer URL-innstillinger"; -$a->strings["View conversations"] = "Vis samtaler"; -$a->strings["Delete contact"] = "Slett kontakt"; -$a->strings["Last update:"] = "Siste oppdatering:"; -$a->strings["Update public posts"] = "Oppdater offentlige innlegg"; -$a->strings["Update now"] = "Oppdater nå"; -$a->strings["Currently blocked"] = "For øyeblikket blokkert"; -$a->strings["Currently ignored"] = "For øyeblikket ignorert"; -$a->strings["Currently archived"] = "For øyeblikket arkivert"; -$a->strings["Currently pending"] = "For øyeblikket ventende"; -$a->strings["Hubzilla channel"] = "Hubzilla-kanal"; -$a->strings["Collection created."] = "Samling opprettet."; -$a->strings["Could not create collection."] = "Kunne ikke lage samling."; -$a->strings["Collection updated."] = "Samlingen er oppdatert."; -$a->strings["Create a collection of channels."] = "Lag en samling med kanaler."; -$a->strings["Collection Name: "] = "Navn på samling:"; -$a->strings["Members are visible to other channels"] = "Medlemmer er synlig for andre kanaler"; -$a->strings["Collection removed."] = "Samling fjernet."; -$a->strings["Unable to remove collection."] = "Ikke i stand til å fjerne samlingen."; -$a->strings["Collection Editor"] = "Samlingsbehandler"; -$a->strings["Members"] = "Medlemmer"; -$a->strings["All Connected Channels"] = "Alle tilkoblede kanaler"; -$a->strings["Click on a channel to add or remove."] = "Klikk på en kanal for å legge til eller fjerne."; -$a->strings["Version %s"] = "Versjon %s"; -$a->strings["Installed plugins/addons/apps:"] = "Installerte tilleggsfunksjoner/tillegg/apper:"; -$a->strings["No installed plugins/addons/apps"] = "Ingen installerte tilleggsfunksjoner/tillegg/apper"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Hubzilla - a global cooperative network of decentralized privacy enhanced websites."] = "Dette er en hub i Hubzilla - et globalt kooperativt nettverk av desentraliserte personvernforsterkede nettsteder."; -$a->strings["Tag: "] = "Merkelapp:"; -$a->strings["Last background fetch: "] = "Siste innhenting i bakgrunnen:"; -$a->strings["Running at web location"] = "Kjører på webplasseringen"; -$a->strings["Please visit Redmatrix.me to learn more about the Hubzilla."] = "Vennligst besøk Redmatrix.me for å lære mer om Hubzilla."; -$a->strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk"; -$a->strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"hubzilla\" hos librelist - punktum com"; -$a->strings["Site Administrators"] = "Nettstedsadministratorer"; -$a->strings["Help:"] = "Hjelp:"; -$a->strings["Not Found"] = "Ikke funnet"; -$a->strings["Hubzilla Server - Setup"] = "Hubzilla tjener - oppsett"; -$a->strings["Could not connect to database."] = "Fikk ikke kontakt med databasen."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS."; -$a->strings["Could not create table."] = "Kunne ikke lage tabellen."; -$a->strings["Your site database has been installed."] = "Databasen til ditt nettsted har blitt installert."; -$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les filen \"install/INSTALL.txt\"."; -$a->strings["System check"] = "Systemsjekk"; -$a->strings["Check again"] = "Sjekk igjen"; -$a->strings["Database connection"] = "Databaseforbindelse"; -$a->strings["In order to install Hubzilla we need to know how to connect to your database."] = "For å installere Hubzilla må du oppgi hvordan din database kan kontaktes."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter."; -$a->strings["Database Server Name"] = "Navn på databasetjener"; -$a->strings["Default is localhost"] = "Standard er localhost"; -$a->strings["Database Port"] = "Databaseport"; -$a->strings["Communication port number - use 0 for default"] = "Kommunikasjonsportnummer - bruk 0 for standard"; -$a->strings["Database Login Name"] = "Database innloggingsnavn"; -$a->strings["Database Login Password"] = "Database innloggingspassord"; -$a->strings["Database Name"] = "Databasenavn"; -$a->strings["Database Type"] = "Databasetype"; -$a->strings["Site administrator email address"] = "E-postadressen til administrator ved nettstedet"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet."; -$a->strings["Website URL"] = "Nettstedets URL"; -$a->strings["Please use SSL (https) URL if available."] = "Vennligst bruk SSL (https) URL hvis tilgjengelig."; -$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; -$a->strings["Site settings"] = "Nettstedets innstillinger"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (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."] = "Hvis du ikke har en kommandolinjeversjon av PHP installert på tjeneren, så vil du ikke kunne kjøre bakgrunnshenting via cron."; -$a->strings["PHP executable path"] = "PHP-kjørefilens sti"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv full sti til kjørefilen for PHP. Du kan la denne stå blank for å fortsette installasjonen."; -$a->strings["Command line PHP"] = "Kommandolinje PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" påskrudd."; -$a->strings["This is required for message delivery to work."] = "Dette er påkrevd for at meldingslevering skal virke."; -$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"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ved kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Lag krypteringsnøkler"; -$a->strings["libCurl PHP module"] = "libCurl PHP-modul"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP-modul"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP-modul"; -$a->strings["mysqli or postgres PHP module"] = "MySQLi eller Postgres PHP modul"; -$a->strings["mb_string PHP module"] = "mb_string PHP-modul"; -$a->strings["mcrypt PHP module"] = "mcrypt PHP-modul"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite-modul"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert."; -$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"] = "Feil: proc_open er påkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modul er påkrevd, men er ikke installert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modul med JPEG-støtte er påkrevd, men er ikke installert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modul er påkrevd, men er ikke installert."; -$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Feil: mysqli eller postgres PHP modul er påkrevd, men ingen av dem er installert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modul er påkrevd, men er ikke installert."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Feil: mcrypt PHP-modul er påkrevd, men er ikke installert."; -$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."] = "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til."; -$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."] = "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv 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."] = "På slutten av denne prosedyren vil vi gi deg en tekst til å lagre i en fil kalt .htconfig.php i toppkatalogen til din Red."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativt, så kan du hoppe over denne prosedyren og gjennomføre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php kan skrives til"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red bruker malmotoren Smarty3 for å gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for å framskynde gjengivelsen."; -$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."] = "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under Red sin hovedmappe."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne 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."] = "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder."; -$a->strings["%s is writable"] = "%s kan skrives til"; -$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 bruker lagringsmappen for å lagre opplastede filer. Webtjeneren trenger å ha skrivetilgang til lagringsmappen under Red sin toppnivåmappe."; -$a->strings["store is writable"] = "lageret kan skrives til"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet."; -$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!"] = "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub."; -$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."] = "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere."; -$a->strings["SSL certificate validation"] = "SSL sertifikat-kontroll"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:"; -$a->strings["Url rewrite is working"] = "URL rewrite virker"; -$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."] = "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener."; -$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller."; -$a->strings["

What next

"] = "

Hva gjenstår

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren."; -$a->strings["No channel."] = "Ingen kanal."; -$a->strings["Common connections"] = "Felles forbindelser"; -$a->strings["No connections in common."] = "Ingen forbindelser felles."; -$a->strings["First Name"] = "Fornavn"; -$a->strings["Last Name"] = "Etternavn"; -$a->strings["Nickname"] = "Kallenavn"; -$a->strings["Full Name"] = "Fullt navn"; -$a->strings["Profile Photo 16px"] = "Profilbilde 16px"; -$a->strings["Profile Photo 32px"] = "Profilbilde 32px"; -$a->strings["Profile Photo 48px"] = "Profilbilde 48px"; -$a->strings["Profile Photo 64px"] = "Profilbilde 64px"; -$a->strings["Profile Photo 80px"] = "Profilbilde 80px"; -$a->strings["Profile Photo 128px"] = "Profilbilde 128px"; -$a->strings["Timezone"] = "Tidssone"; -$a->strings["Homepage URL"] = "Hjemmeside URL"; -$a->strings["Birth Year"] = "Fødselsår"; -$a->strings["Birth Month"] = "Fødselsmåne"; -$a->strings["Birth Day"] = "Fødselsdag"; -$a->strings["Birthdate"] = "Fødselsdato"; -$a->strings["Gender"] = "Kjønn"; -$a->strings["Blocked"] = "Blokkert"; -$a->strings["Ignored"] = "Ignorert"; -$a->strings["Hidden"] = "Skjult"; -$a->strings["Archived"] = "Arkivert"; -$a->strings["All"] = "Alle"; -$a->strings["Suggest new connections"] = "Foreslå nye forbindelser"; -$a->strings["New Connections"] = "Nye forbindelser"; -$a->strings["Show pending (new) connections"] = "Vis ventende (nye) forbindelser"; -$a->strings["All Connections"] = "Alle forbindelser"; -$a->strings["Show all connections"] = "Vis alle forbindelser"; -$a->strings["Unblocked"] = "Ikke blokkert lenger"; -$a->strings["Only show unblocked connections"] = "Vis bare forbindelser som ikke er blokkert"; -$a->strings["Only show blocked connections"] = "Vis bare forbindelser som er blokkert"; -$a->strings["Only show ignored connections"] = "Vis bare ignorerte forbindelser"; -$a->strings["Only show archived connections"] = "Vis bare arkiverte forbindelser"; -$a->strings["Only show hidden connections"] = "Vis bare skjulte forbindelser"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit connection"] = "Endre forbindelse"; -$a->strings["Search your connections"] = "Søk blant dine forbindelser"; -$a->strings["Finding: "] = "Fant:"; -$a->strings["webpage"] = "nettside"; -$a->strings["block"] = "byggekloss"; -$a->strings["layout"] = "layout"; -$a->strings["%s element installed"] = "%s element installert"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til %2\$s med %4\$s"; -$a->strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = "Hubzilla - gjester: brukernavn: {din e-postadresse}, passord: +++"; -$a->strings["Unable to locate original post."] = "Ikke i stand til å finne opprinnelig innlegg."; -$a->strings["Empty post discarded."] = "Tomt innlegg forkastet."; -$a->strings["Executable content type not permitted to this channel."] = "Kjørbar innholdstype er ikke tillat for denne kanalen."; -$a->strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider."; -$a->strings["Public access denied."] = "Offentlig tilgang avvist."; -$a->strings["Thing updated"] = "Tingen er oppdatert"; -$a->strings["Object store: failed"] = "Objektlagring: mislyktes"; -$a->strings["Thing added"] = "Ting lagt til"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Vis ting"; -$a->strings["item not found."] = "element ble ikke funnet."; -$a->strings["Edit Thing"] = "Endre ting"; -$a->strings["Select a profile"] = "Velg en profil"; -$a->strings["Post an activity"] = "Legg inn en aktivitet"; -$a->strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen"; -$a->strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe"; -$a->strings["URL of thing (optional)"] = "URL til ting (valgfritt)"; -$a->strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)"; -$a->strings["Add Thing to your Profile"] = "Legg til ting i din profil"; -$a->strings["Away"] = "Borte"; -$a->strings["Online"] = "Online"; -$a->strings["Select a bookmark folder"] = "Velg en bokmerkemappe"; -$a->strings["Save Bookmark"] = "Lagre bokmerke"; -$a->strings["URL of bookmark"] = "URL-en til bokmerket"; -$a->strings["Description"] = "Beskrivelse"; -$a->strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn på bokmerkemappe"; -$a->strings["No more system notifications."] = "Ingen flere systemvarsler."; -$a->strings["System Notifications"] = "Systemvarsler"; -$a->strings["network"] = "nettverk"; -$a->strings["RSS"] = "RSS"; -$a->strings["Layout updated."] = "Layout er oppdatert."; -$a->strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; -$a->strings["Layout not found."] = "Layouten ble ikke funnet."; -$a->strings["Module Name:"] = "Modulnavn:"; -$a->strings["Layout Help"] = "Layout-hjelp"; -$a->strings["- select -"] = "- velg -"; -$a->strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler."; -$a->strings["Nothing to import."] = "Ingenting å importere."; -$a->strings["Unable to download data from old server"] = "Ikke i stand til å laste ned data fra gammel tjener"; -$a->strings["Imported file is empty."] = "Importert fil er tom."; +$a->strings["Empty path"] = "Tom sti"; $a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes."; -$a->strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes."; $a->strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes."; $a->strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes."; -$a->strings["Import completed."] = "Import ferdig."; -$a->strings["You must be logged in to use this feature."] = "Du må være innlogget for å bruke denne funksjonen."; -$a->strings["Import Channel"] = "Importer 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."] = "Bruk dette skjemaet til å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente kanalidentiteten fra den gamle tjeneren/hubben via nettverket eller bruke en eksportert fil. Bare identiteten og forbindelser/relasjoner vil bli importert. Importering av innhold er ennå ikke tilgjengelig."; -$a->strings["File to Upload"] = "Fil som skal lastes opp"; -$a->strings["Or provide the old server/hub details"] = "Eller oppgi detaljene fra den gamle tjeneren/hub-en"; -$a->strings["Your old identity address (xyz@example.com)"] = "Din gamle identitetsadresse (xyz@example.com)"; -$a->strings["Your old login email address"] = "Din gamle innloggings e-postadresse"; -$a->strings["Your old login password"] = "Ditt gamle innloggingspassord"; -$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."] = "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media."; -$a->strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering"; -$a->strings["Import existing posts if possible"] = "Importerer eksisterende innlegg hvis mulig."; -$a->strings["Item not found"] = "Elementet ble ikke funnet."; -$a->strings["Edit Layout"] = "Endre layout"; -$a->strings["Delete layout?"] = "Slett layout?"; -$a->strings["Insert YouTube video"] = "Sett inn YouTube-video"; -$a->strings["Insert Vorbis [.ogg] video"] = "Sett inn Vorbis [.ogg] video"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Legg i"; -$a->strings["Delete Layout"] = "Slett layout"; -$a->strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden."; -$a->strings["Room not found"] = "Rommet ble ikke funnet"; -$a->strings["Leave Room"] = "Forlat rom"; -$a->strings["Delete This Room"] = "Slett dette rommet"; -$a->strings["I am away right now"] = "Jeg er borte akkurat nå"; -$a->strings["I am online"] = "Jeg er online"; -$a->strings["Bookmark this room"] = "Bokmerk dette rommet"; -$a->strings["New Chatroom"] = "Nytt chatrom"; -$a->strings["Chatroom Name"] = "Navn på chatrom"; -$a->strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom"; -$a->strings["Edit Webpage"] = "Endre webside"; -$a->strings["Delete webpage?"] = "Slett webside?"; -$a->strings["Delete Webpage"] = "Slett webside"; -$a->strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener"; -$a->strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"; -$a->strings["No valid account found."] = "Ingen gyldig konto funnet."; -$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; -$a->strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; -$a->strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; -$a->strings["Password Reset"] = "Tilbakestill passord"; -$a->strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; -$a->strings["Your new password is"] = "Ditt nye passord er"; -$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; -$a->strings["click here to login"] = "klikke her for å logge inn"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging."; -$a->strings["Your password has changed at %s"] = "Ditt passord er endret hos %s"; -$a->strings["Forgot your Password?"] = "Glemt passord ditt?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."; -$a->strings["Email Address"] = "E-postadresse"; -$a->strings["Reset"] = "Tilbakestill"; -$a->strings["Website:"] = "Nettsted:"; -$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"; -$a->strings["Item is not editable"] = "Elementet kan ikke endres"; -$a->strings["Edit post"] = "Endre innlegg"; -$a->strings["Delete item?"] = "Slett element?"; -$a->strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet."; -$a->strings["%s : Not a valid email address."] = "%s : ikke en gyldig e-postadresse."; -$a->strings["Please join us on Red"] = "Bli med oss på Red"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted."; -$a->strings["%s : Message delivery failed."] = "%s : meldingslevering feilet."; -$a->strings["%d message sent."] = array( - 0 => "%d melding sendt.", - 1 => "%d meldinger sendt.", +$a->strings["created a new post"] = "laget et nytt innlegg"; +$a->strings["commented on %s's post"] = "kommenterte på %s sitt innlegg"; +$a->strings["New Page"] = "Ny side"; +$a->strings["View"] = "Vis"; +$a->strings["Actions"] = "Handlinger"; +$a->strings["Page Link"] = "Sidelenke"; +$a->strings["Title"] = "Tittel"; +$a->strings["Created"] = "Laget"; +$a->strings["Edited"] = "Endret"; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["Male"] = "Mannlig"; +$a->strings["Female"] = "Kvinnelig"; +$a->strings["Currently Male"] = "For tiden mann"; +$a->strings["Currently Female"] = "For tiden kvinne"; +$a->strings["Mostly Male"] = "For det meste mann"; +$a->strings["Mostly Female"] = "For det meste kvinne"; +$a->strings["Transgender"] = "Transkjønnet"; +$a->strings["Intersex"] = "interkjønnet"; +$a->strings["Transsexual"] = "Transseksuell"; +$a->strings["Hermaphrodite"] = "Hermafroditt"; +$a->strings["Neuter"] = "Intetkjønn"; +$a->strings["Non-specific"] = "Ubestemt"; +$a->strings["Undecided"] = "Ubestemt"; +$a->strings["Males"] = "Menn"; +$a->strings["Females"] = "Kvinner"; +$a->strings["Gay"] = "Homo"; +$a->strings["Lesbian"] = "Lesbisk"; +$a->strings["No Preference"] = "Ingen preferanse"; +$a->strings["Bisexual"] = "Biseksuell"; +$a->strings["Autosexual"] = "Autoseksuell"; +$a->strings["Abstinent"] = "Avholdende"; +$a->strings["Virgin"] = "Jomfru"; +$a->strings["Deviant"] = "Avviker"; +$a->strings["Fetish"] = "Fetisj"; +$a->strings["Oodles"] = "Masse"; +$a->strings["Nonsexual"] = "Ikke-seksuell"; +$a->strings["Single"] = "Enslig"; +$a->strings["Lonely"] = "Ensom"; +$a->strings["Available"] = "Tilgjengelig"; +$a->strings["Unavailable"] = "Ikke tilgjengelig"; +$a->strings["Has crush"] = "Er forelsket"; +$a->strings["Infatuated"] = "Betatt"; +$a->strings["Dating"] = "Sammen med"; +$a->strings["Unfaithful"] = "Utro"; +$a->strings["Sex Addict"] = "Sexavhengig"; +$a->strings["Friends"] = "Venner"; +$a->strings["Friends/Benefits"] = "Venner med frynsegoder"; +$a->strings["Casual"] = "Tilfeldig"; +$a->strings["Engaged"] = "Forlovet"; +$a->strings["Married"] = "Gift"; +$a->strings["Imaginarily married"] = "Gift i fantasien"; +$a->strings["Partners"] = "Partnere"; +$a->strings["Cohabiting"] = "Samboer"; +$a->strings["Common law"] = "Samboer"; +$a->strings["Happy"] = "Lykkelig"; +$a->strings["Not looking"] = "Ikke på utkikk"; +$a->strings["Swinger"] = "Partnerbytte"; +$a->strings["Betrayed"] = "Bedratt"; +$a->strings["Separated"] = "Separert"; +$a->strings["Unstable"] = "Ustabilt"; +$a->strings["Divorced"] = "Skilt"; +$a->strings["Imaginarily divorced"] = "Skilt i fantasien"; +$a->strings["Widowed"] = "Enke"; +$a->strings["Uncertain"] = "Usikkert"; +$a->strings["It's complicated"] = "Det er komplisert"; +$a->strings["Don't care"] = "Bryr meg ikke"; +$a->strings["Ask me"] = "Spør meg"; +$a->strings["Embedded content"] = "Innebygget innhold"; +$a->strings["Embedding disabled"] = "Innbygging avskrudd"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Starter:"; +$a->strings["Finishes:"] = "Slutter:"; +$a->strings["Location:"] = "Plassering:"; +$a->strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; +$a->strings["Not specified"] = "Ikke spesifisert"; +$a->strings["Needs Action"] = "Trenger handling"; +$a->strings["Completed"] = "Ferdig"; +$a->strings["In Process"] = "Igang"; +$a->strings["Cancelled"] = "Avbrutt"; +$a->strings["Site Admin"] = "Nettstedsadministrator"; +$a->strings["Address Book"] = "Adressebok"; +$a->strings["Login"] = "Logg inn"; +$a->strings["Channel Manager"] = "Kanalstyring"; +$a->strings["Matrix"] = "Matrix"; +$a->strings["Settings"] = "Innstillinger"; +$a->strings["Channel Home"] = "Kanalhjem"; +$a->strings["Profile"] = "Profil"; +$a->strings["Events"] = "Hendelser"; +$a->strings["Directory"] = "Katalog"; +$a->strings["Help"] = "Hjelp"; +$a->strings["Mail"] = "Melding"; +$a->strings["Mood"] = "Stemning"; +$a->strings["Chat"] = "Chat"; +$a->strings["Probe"] = "Undersøk"; +$a->strings["Suggest"] = "Forreslå"; +$a->strings["Random Channel"] = "Tilfeldig kanal"; +$a->strings["Invite"] = "Inviter"; +$a->strings["Features"] = "Funksjoner"; +$a->strings["Language"] = "Språk"; +$a->strings["Post"] = "Innlegg"; +$a->strings["Profile Photo"] = "Profilbilde"; +$a->strings["Update"] = "Oppdater"; +$a->strings["Install"] = "Installer"; +$a->strings["Purchase"] = "Kjøp"; +$a->strings["Logged out."] = "Logget ut."; +$a->strings["Failed authentication"] = "Mislykket autentisering"; +$a->strings["Login failed."] = "Innlogging mislyktes."; +$a->strings["Attachments:"] = "Vedlegg:"; +$a->strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:"; +$a->strings["Image/photo"] = "Bilde/fotografi"; +$a->strings["Encrypted content"] = "Kryptert innhold"; +$a->strings["Install %s element: "] = "Installer %s element:"; +$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet."; +$a->strings["webpage"] = "nettside"; +$a->strings["layout"] = "layout"; +$a->strings["block"] = "byggekloss"; +$a->strings["menu"] = "meny"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; +$a->strings["post"] = "innlegg"; +$a->strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; +$a->strings["$1 spoiler"] = "$1 avsløring"; +$a->strings["$1 wrote:"] = "$1 skrev:"; +$a->strings["Not a valid email address"] = "Ikke en gyldig e-postadresse"; +$a->strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet"; +$a->strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert på dette nettstedet."; +$a->strings["An invitation is required."] = "En invitasjon er påkrevd."; +$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; +$a->strings["Please enter the required information."] = "Vennligst skriv inn nødvendig informasjon."; +$a->strings["Failed to store account information."] = "Mislyktes med å lagre kontoinformasjon."; +$a->strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s"; +$a->strings["Registration request at %s"] = "Registreringsforespørsel hos %s"; +$a->strings["your registration password"] = "ditt registreringspassord"; +$a->strings["Registration details for %s"] = "Registreringsdetaljer for %s"; +$a->strings["Account approved."] = "Konto godkjent."; +$a->strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s"; +$a->strings["Account verified. Please login."] = "Konto bekreftet. Vennligst logg inn."; +$a->strings["Click here to upgrade."] = "Klikk her for å oppgradere."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen går utenfor grensene satt i din abonnementsplan."; +$a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan."; +$a->strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; +$a->strings["Channel location missing."] = "Kanalplassering mangler."; +$a->strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett."; +$a->strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger."; +$a->strings["Protocol disabled."] = "Protokollen er avskrudd."; +$a->strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; +$a->strings["local account not found."] = "lokal konto ble ikke funnet."; +$a->strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; +$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."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; +$a->strings["%d invitation available"] = array( + 0 => "%d invitasjon tilgjengelig", + 1 => "%d invitasjoner tilgjengelig", +); +$a->strings["Advanced"] = "Avansert"; +$a->strings["Find Channels"] = "Finn kanaler"; +$a->strings["Enter name or interest"] = "Skriv navn eller interesse"; +$a->strings["Connect/Follow"] = "Forbindelse/Følg"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking"; +$a->strings["Find"] = "Finn"; +$a->strings["Channel Suggestions"] = "Kanalforslag"; +$a->strings["Random Profile"] = "Tilfeldig profil"; +$a->strings["Invite Friends"] = "Inviter venner"; +$a->strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island"; +$a->strings["Everything"] = "Alt"; +$a->strings["Categories"] = "Kategorier"; +$a->strings["%d connection in common"] = array( + 0 => "%d forbindelse felles", + 1 => "%d forbindelser felles", +); +$a->strings["show more"] = "vis mer"; +$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 slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn."; +$a->strings["Add new connections to this collection (privacy group)"] = "Legg nye forbindelser til denne samlingen (personverngruppe)"; +$a->strings["All Channels"] = "Alle kanaler"; +$a->strings["edit"] = "endre"; +$a->strings["Collections"] = "Samlinger"; +$a->strings["Edit collection"] = "Endre samling"; +$a->strings["Add new collection"] = "Legg til ny samling"; +$a->strings["Channels not in any collection"] = "Kanaler som ikke er i noen samling"; +$a->strings["add"] = "legg til"; +$a->strings["Tags"] = "Merkelapper"; +$a->strings["Keywords"] = "Nøkkelord"; +$a->strings["have"] = "har"; +$a->strings["has"] = "har"; +$a->strings["want"] = "ønsker"; +$a->strings["wants"] = "ønsker"; +$a->strings["like"] = "liker"; +$a->strings["likes"] = "liker"; +$a->strings["dislike"] = "misliker"; +$a->strings["dislikes"] = "misliker"; +$a->strings["Directory Options"] = "Kataloginnstillinger"; +$a->strings["Safe Mode"] = "Trygt modus"; +$a->strings["No"] = "Nei"; +$a->strings["Yes"] = "Ja"; +$a->strings["Public Forums Only"] = "Bare offentlige forum"; +$a->strings["This Website Only"] = "Kun dette nettstedet"; +$a->strings["Unable to obtain identity information from database"] = "Klarer ikke å få tak i identitetsinformasjon fra databasen"; +$a->strings["Empty name"] = "Mangler navn"; +$a->strings["Name too long"] = "Navnet er for langt"; +$a->strings["No account identifier"] = "Ingen kontoidentifikator"; +$a->strings["Nickname is required."] = "Kallenavn er påkrevd."; +$a->strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet."; +$a->strings["Unable to retrieve created identity"] = "Klarer ikke å hente den lagede identiteten"; +$a->strings["Default Profile"] = "Standardprofil"; +$a->strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig."; +$a->strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig."; +$a->strings["Change profile photo"] = "Endre profilbilde"; +$a->strings["Profiles"] = "Profiler"; +$a->strings["Manage/edit profiles"] = "Håndtere/endre profiler"; +$a->strings["Create New Profile"] = "Lag ny profil"; +$a->strings["Edit Profile"] = "Endre profil"; +$a->strings["Profile Image"] = "Profilbilde"; +$a->strings["visible to everybody"] = "synlig for alle"; +$a->strings["Edit visibility"] = "Endre synlighet"; +$a->strings["Gender:"] = "Kjønn:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Hjemmeside:"; +$a->strings["Online Now"] = "Online nå"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[idag]"; +$a->strings["Birthday Reminders"] = "Fødselsdagspåminnnelser"; +$a->strings["Birthdays this week:"] = "Fødselsdager denne uken:"; +$a->strings["[No description]"] = "[Ingen beskrivelse]"; +$a->strings["Event Reminders"] = "Hendelsespåminnelser"; +$a->strings["Events this week:"] = "Hendelser denne uken:"; +$a->strings["Full Name:"] = "Fullt navn:"; +$a->strings["Like this channel"] = "Lik denne kanalen"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Fødselsdag:"; +$a->strings["Age:"] = "Alder:"; +$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Seksuell preferanse:"; +$a->strings["Hometown:"] = "Hjemby:"; +$a->strings["Tags:"] = "Merkelapper:"; +$a->strings["Political Views:"] = "Politiske synspunkter:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["About:"] = "Om:"; +$a->strings["Hobbies/Interests:"] = "Hobbyer/interesser:"; +$a->strings["Likes:"] = "Liker:"; +$a->strings["Dislikes:"] = "Misliker:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:"; +$a->strings["My other channels:"] = "Mine andre kanaler:"; +$a->strings["Musical interests:"] = "Musikkinteresse:"; +$a->strings["Books, literature:"] = "Bøker, litteratur:"; +$a->strings["Television:"] = "TV:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:"; +$a->strings["Love/Romance:"] = "Kjærlighet/romantikk:"; +$a->strings["Work/employment:"] = "Arbeid/sysselsetting:"; +$a->strings["School/education:"] = "Skole/utdannelse:"; +$a->strings["Like this thing"] = "Lik denne tingen"; +$a->strings["No recipient provided."] = "Ingen mottaker angitt."; +$a->strings["[no subject]"] = "[ikke noe emne]"; +$a->strings["Unable to determine sender."] = "Kan ikke avgjøre avsender."; +$a->strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes."; +$a->strings["Save to Folder"] = "Lagre i mappe"; +$a->strings["I will attend"] = "Jeg vil delta"; +$a->strings["I will not attend"] = "Jeg deltar ikke"; +$a->strings["I might attend"] = "Jeg vil kanskje delta"; +$a->strings["I agree"] = "Jeg er enig"; +$a->strings["I disagree"] = "Jeg er uenig"; +$a->strings["I abstain"] = "Jeg avstår"; +$a->strings["Add Star"] = "Legg til stjerne"; +$a->strings["Remove Star"] = "Fjern stjerne"; +$a->strings["Toggle Star Status"] = "Skru av og på stjernestatus"; +$a->strings["starred"] = "stjernemerket"; +$a->strings["Add Tag"] = "Legg til merkelapp"; +$a->strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; +$a->strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; +$a->strings["Share This"] = "Del dette"; +$a->strings["share"] = "del"; +$a->strings["%d comment"] = array( + 0 => "%d kommentar", + 1 => "%d kommentarer", ); -$a->strings["You have no more invitations available"] = "Du har ikke flere invitasjoner tilgjengelig"; -$a->strings["Send invitations"] = "Send invitasjoner"; -$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; -$a->strings["Your message:"] = "Din melding:"; -$a->strings["Please join my community on Hubzilla."] = "Du er velkommen til å bli med i mitt fellesskap på Hubzilla."; -$a->strings["You will need to supply this invitation code: "] = "Du må oppgi denne invitasjonskoden:"; -$a->strings["1. Register at any Hubzilla location (they are all inter-connected)"] = "1. Registrer ved enhver Hubzilla-lokasjon (de er alle forbundet med hverandre)"; -$a->strings["2. Enter my Hubzilla network address into the site searchbar."] = "2. Skriv inn min Hubzilla-adresse i nettstedets søkefelt."; -$a->strings["or visit "] = "eller besøk"; -$a->strings["3. Click [Connect]"] = "3. Klikk [Forbindelse]"; -$a->strings["Location not found."] = "Plassering er ikke funnet."; -$a->strings["Primary location cannot be removed."] = "Primær plassering kan ikke fjernes."; -$a->strings["No locations found."] = "Ingen plasseringer ble funnet."; -$a->strings["Manage Channel Locations"] = "Håndter kanalplasseringer"; -$a->strings["Location (address)"] = "Plassering (adresse)"; -$a->strings["Primary Location"] = "Hovedplassering"; -$a->strings["Drop location"] = "Slett plassering"; -$a->strings["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt."; -$a->strings["Source created."] = "Kilden er laget."; -$a->strings["Source updated."] = "Kilden er oppdatert."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Håndtere eksterne innholdskilder til din kanal."; -$a->strings["New Source"] = "Ny kilde"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger."; -$a->strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)"; -$a->strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold"; -$a->strings["Channel Name"] = "Kanalnavn"; -$a->strings["Source not found."] = "Kilden ble ikke funnet."; -$a->strings["Edit Source"] = "Endre kilde"; -$a->strings["Delete Source"] = "Slett kilde"; -$a->strings["Source removed"] = "Kilden er fjernet"; -$a->strings["Unable to remove source."] = "Ikke i stand til å fjerne kilde."; -$a->strings["Menu updated."] = "Menyen er oppdatert."; -$a->strings["Unable to update menu."] = "Ikke i stand til å oppdatere meny."; -$a->strings["Menu created."] = "Meny laget."; -$a->strings["Unable to create menu."] = "Ikke i stand til å lage meny."; -$a->strings["Manage Menus"] = "Håndtere menyer"; -$a->strings["Drop"] = "Slett"; -$a->strings["Bookmarks allowed"] = "Bokmerker tillatt"; -$a->strings["Create a new menu"] = "Lag en ny meny"; -$a->strings["Delete this menu"] = "Slett denne menyen"; -$a->strings["Edit menu contents"] = "Endre menyinnholdet"; -$a->strings["Edit this menu"] = "Endre denne menyen"; -$a->strings["New Menu"] = "Ny meny"; -$a->strings["Menu name"] = "Menynavn"; -$a->strings["Must be unique, only seen by you"] = "Må være unik, ses bare av deg"; -$a->strings["Menu title"] = "Menytittel"; -$a->strings["Menu title as seen by others"] = "Menytittelen andre ser"; -$a->strings["Allow bookmarks"] = "Tillat bokmerker"; -$a->strings["Menu may be used to store saved bookmarks"] = "Menyen kan brukes til å lagre lagrede bokmerker"; -$a->strings["Menu not found."] = "Menyen ble ikke funnet."; -$a->strings["Menu deleted."] = "Meny slettet."; -$a->strings["Menu could not be deleted."] = "Menyen kunne ikke bli slettet."; -$a->strings["Edit Menu"] = "Endre meny"; -$a->strings["Add or remove entries to this menu"] = "Legg til eller fjern punkter i denne menyen"; -$a->strings["Modify"] = "Endre"; -$a->strings["Permission Denied."] = "Tillatelse avvist."; -$a->strings["File not found."] = "Filen ble ikke funnet."; -$a->strings["Edit file permissions"] = "Endre filtillatelser"; -$a->strings["Set/edit permissions"] = "Angi/endre tillatelser"; -$a->strings["Include all files and sub folders"] = "Inkluder alle filer og undermapper"; -$a->strings["Return to file list"] = "Gå tilbake til filoversikten"; -$a->strings["Copy/paste this code to attach file to a post"] = "Kopier og lim inn denne koden for å legge til filen i et innlegg"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Kopier og lim inn denne URL-en for å lenke til filen fra en webside"; -$a->strings["Attach this file to a new post"] = "Legg ved denne filen i et nytt innlegg"; -$a->strings["Show URL to this file"] = "Vis URLen til denne filen"; -$a->strings["Do not show in shared with me folder of your connections"] = "Ikke vis i Delt med meg-mappen til dine forbindelser"; +$a->strings["View %s's profile - %s"] = "Vis %s sin profil - %s"; +$a->strings["to"] = "til"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "vegg-til-vegg"; +$a->strings["via Wall-To-Wall:"] = "via vegg-til-vegg:"; +$a->strings["Delivery Report"] = "Leveringsrapport"; +$a->strings["Save Bookmarks"] = "Lagre bokmerker"; +$a->strings["Add to Calendar"] = "Legg til i kalender"; +$a->strings["Mark all seen"] = "Merk alle som sett"; +$a->strings["__ctx:noun__ Likes"] = "Liker"; +$a->strings["__ctx:noun__ Dislikes"] = "Liker ikke"; +$a->strings["This is you"] = "Dette er deg"; +$a->strings["Image"] = "Bilde"; +$a->strings["Insert Link"] = "Sett inn lenke"; +$a->strings["Video"] = "Video"; +$a->strings["Permission denied"] = "Tillatelse avvist"; +$a->strings["(Unknown)"] = "(Ukjent)"; +$a->strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; +$a->strings["Visible to you only."] = "Synlig bare for deg."; +$a->strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; +$a->strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; +$a->strings["Visible to anybody on %s."] = "Synlig for alle på %s."; +$a->strings["Visible to all connections."] = "Synlig for alle forbindelser."; +$a->strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; +$a->strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; +$a->strings["Item not found."] = "Elementet ble ikke funnet."; +$a->strings["Collection not found."] = "Samlingen ble ikke funnet."; +$a->strings["Collection is empty."] = "Samlingen er tom."; +$a->strings["Collection: %s"] = "Samling: %s"; +$a->strings["Connection: %s"] = "Forbindelse: %s"; +$a->strings["Connection not found."] = "Forbindelsen ble ikke funnet."; +$a->strings["Apps"] = "Apper"; +$a->strings["System"] = "System"; +$a->strings["Create Personal App"] = "Lag personlig app"; +$a->strings["Edit Personal App"] = "Endre personlig app"; +$a->strings["Ignore/Hide"] = "Ignorer/Skjul"; +$a->strings["Suggestions"] = "Forslag"; +$a->strings["See more..."] = "Se mer..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; +$a->strings["Add New Connection"] = "Legg til ny forbindelse"; +$a->strings["Enter the channel address"] = "Skriv kanal-adressen"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ola.nordmann@eksempel.no, http://eksempel.no/karinordmann"; +$a->strings["Notes"] = "Merknader"; +$a->strings["Remove term"] = "Fjern begrep"; +$a->strings["Archives"] = "Arkiv"; +$a->strings["Me"] = "Meg"; +$a->strings["Family"] = "Familie"; +$a->strings["Acquaintances"] = "Bekjente"; +$a->strings["All"] = "Alle"; +$a->strings["Refresh"] = "Forny"; +$a->strings["Account settings"] = "Kontoinnstillinger"; +$a->strings["Channel settings"] = "Kanalinnstillinger"; +$a->strings["Additional features"] = "Tilleggsfunksjoner"; +$a->strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger"; +$a->strings["Display settings"] = "Visningsinnstillinger"; +$a->strings["Connected apps"] = "Tilkoblede app-er"; +$a->strings["Export channel"] = "Eksporter kanal"; +$a->strings["Connection Default Permissions"] = "Forbindelsens standard tillatelser"; +$a->strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; +$a->strings["Private Mail Menu"] = "Meny for privat post"; +$a->strings["Check Mail"] = "Sjekk meldinger"; +$a->strings["Combined View"] = "Kombinert visning"; +$a->strings["Inbox"] = "Innboks"; +$a->strings["Outbox"] = "Utboks"; +$a->strings["New Message"] = "Ny melding"; +$a->strings["Conversations"] = "Samtaler"; +$a->strings["Received Messages"] = "Mottatte meldinger"; +$a->strings["Sent Messages"] = "Sendte meldinger"; +$a->strings["No messages."] = "Ingen meldinger."; +$a->strings["Delete conversation"] = "Slett samtale"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["Chat Rooms"] = "Chatrom"; +$a->strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; +$a->strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; +$a->strings["photo/image"] = "foto/bilde"; +$a->strings["Rate Me"] = "Vurder meg"; +$a->strings["View Ratings"] = "Vis vurderinger"; +$a->strings["Public Hubs"] = "Offentlige huber"; +$a->strings["Forums"] = "Forum"; +$a->strings["Tasks"] = "Oppgaver"; +$a->strings["Documentation"] = "Dokumentasjon"; +$a->strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon"; +$a->strings["For Members"] = "For medlemmer"; +$a->strings["For Administrators"] = "For administratorer"; +$a->strings["For Developers"] = "For utviklere"; +$a->strings["Site"] = "Nettsted"; +$a->strings["Accounts"] = "Kontoer"; +$a->strings["Channels"] = "Kanaler"; +$a->strings["Plugins"] = "Tilleggsfunksjoner"; +$a->strings["Themes"] = "Temaer"; +$a->strings["Inspect queue"] = "Inspiser kø"; +$a->strings["Profile Config"] = "Profilinnstillinger"; +$a->strings["DB updates"] = "Databaseoppdateringer"; +$a->strings["Logs"] = "Logger"; +$a->strings["Admin"] = "Administrator"; +$a->strings["Plugin Features"] = "Tilleggsfunksjoner"; +$a->strings["User registrations waiting for confirmation"] = "Brukerregistreringer som venter på bekreftelse"; +$a->strings["Invalid data packet"] = "Ugyldig datapakke"; +$a->strings["Unable to verify channel signature"] = "Ikke i stand til å sjekke kanalsignaturen"; +$a->strings["Unable to verify site signature for %s"] = "Ikke i stand til å bekrefte signaturen til %s"; +$a->strings["invalid target signature"] = "Målets signatur er ugyldig"; +$a->strings["Logout"] = "Logg ut"; +$a->strings["End this session"] = "Avslutt denne økten"; +$a->strings["Home"] = "Hjem"; +$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler"; +$a->strings["Your profile page"] = "Din profilside"; +$a->strings["Edit Profiles"] = "Endre profiler"; +$a->strings["Manage/Edit profiles"] = "Håndter/endre profiler"; +$a->strings["Edit your profile"] = "Endre din profil"; +$a->strings["Your photos"] = "Dine bilder"; +$a->strings["Your files"] = "Dine filer"; +$a->strings["Your chatrooms"] = "Dine chatterom"; +$a->strings["Your bookmarks"] = "Dine bokmerker"; +$a->strings["Your webpages"] = "Dine websider"; +$a->strings["Sign in"] = "Logg på"; +$a->strings["%s - click to logout"] = "%s - klikk for å logge ut"; +$a->strings["Remote authentication"] = "Fjernautentisering"; +$a->strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub"; +$a->strings["Home Page"] = "Hjemmeside"; +$a->strings["Register"] = "Registrer"; +$a->strings["Create an account"] = "Lag en konto"; +$a->strings["Help and documentation"] = "Hjelp og dokumentasjon"; +$a->strings["Applications, utilities, links, games"] = "Programmer, verktøy, lenker, spill"; +$a->strings["Search site @name, #tag, ?docs, content"] = "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"; +$a->strings["Channel Directory"] = "Kanalkatalog"; +$a->strings["Grid"] = "Nett"; +$a->strings["Your grid"] = "Ditt nett"; +$a->strings["Mark all grid notifications seen"] = "Marker alle nettvarsler som sett"; +$a->strings["Channel home"] = "Kanalhjem"; +$a->strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett"; +$a->strings["Connections"] = "Forbindelser"; +$a->strings["Notices"] = "Varsel"; +$a->strings["Notifications"] = "Varsler"; +$a->strings["See all notifications"] = "Se alle varsler"; +$a->strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; +$a->strings["Private mail"] = "Privat post"; +$a->strings["See all private messages"] = "Se alle private meldinger"; +$a->strings["Mark all private messages seen"] = "Merk alle private meldinger som sett"; +$a->strings["Event Calendar"] = "Kalender"; +$a->strings["See all events"] = "Se alle hendelser"; +$a->strings["Mark all events seen"] = "Merk alle hendelser som sett"; +$a->strings["Manage Your Channels"] = "Håndter dine kanaler"; +$a->strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger"; +$a->strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon"; +$a->strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold"; +$a->strings["Please wait..."] = "Vennligst vent..."; +$a->strings["Some blurb about what to do when you're new here"] = "En standardtekst om hva du bør gjøre som ny her"; $a->strings["Contact not found."] = "Kontakten ble ikke funnet."; $a->strings["Friend suggestion sent."] = "Venneforespørsel sendt."; $a->strings["Suggest Friends"] = "Foreslå venner"; $a->strings["Suggest a friend for %s"] = "Foreslå en venn for %s"; -$a->strings["Hub not found."] = "Hubben ble ikke funnet."; -$a->strings["Poke/Prod"] = "Prikke/oppildne"; -$a->strings["poke, prod or do other things to somebody"] = "prikke, oppildne eller gjør andre ting med noen"; -$a->strings["Recipient"] = "Mottaker"; -$a->strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; -$a->strings["Make this post private"] = "Gjør dette innlegget privat"; -$a->strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; -$a->strings["Profile Visibility Editor"] = "Endre profilsynlighet"; -$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; -$a->strings["Visible To"] = "Synlig for"; -$a->strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig."; -$a->strings["Visible to:"] = "Synlig for:"; -$a->strings["Profile not found."] = "Profilen ble ikke funnet."; -$a->strings["Profile deleted."] = "Profilen er slettet."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Ny profil opprettet."; -$a->strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; -$a->strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; -$a->strings["Profile Name is required."] = "Profilnavn er påkrevd."; -$a->strings["Marital Status"] = "Sivilstand"; -$a->strings["Romantic Partner"] = "Romantisk partner"; -$a->strings["Likes"] = "Liker"; -$a->strings["Dislikes"] = "Liker ikke"; -$a->strings["Work/Employment"] = "Arbeid/sysselsetting"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Politiske synspunkter"; -$a->strings["Sexual Preference"] = "Seksuelle preferanser"; -$a->strings["Homepage"] = "Hjemmeside"; -$a->strings["Interests"] = "Interesser"; -$a->strings["Address"] = "Adresse"; -$a->strings["Profile updated."] = "Profilen er oppdatert."; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skjul kontakt-/vennelisten din fra de som ser på denne profilen?"; -$a->strings["Edit Profile Details"] = "Endre profildetaljer"; -$a->strings["View this profile"] = "Vis denne profilen"; -$a->strings["Change Profile Photo"] = "Endre profilbilde"; -$a->strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; -$a->strings["Clone this profile"] = "Klon denne profilen"; -$a->strings["Delete this profile"] = "Slett denne profilen"; -$a->strings["Import profile from file"] = "Importer profil fra fil"; -$a->strings["Export profile to file"] = "Eksporter profil til fil"; -$a->strings["Profile Name:"] = "Profilnavn:"; -$a->strings["Your Full Name:"] = "Ditt fulle navn:"; -$a->strings["Title/Description:"] = "Tittel/Beskrivelse:"; -$a->strings["Your Gender:"] = "Ditt kjønn:"; -$a->strings["Birthday :"] = "Fødselsdag:"; -$a->strings["Street Address:"] = "Gateadresse:"; -$a->strings["Locality/City:"] = "Sted/By:"; -$a->strings["Postal/Zip Code:"] = "Postnummer/ZIP-kode:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Region/fylke:"; -$a->strings[" Marital Status:"] = " Sivilstand:"; -$a->strings["Who: (if applicable)"] = "Hvem: (hvis det er aktuelt) "; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; -$a->strings["Since [date]:"] = "Siden [dato]:"; -$a->strings["Homepage URL:"] = "Hjemmeside URL:"; -$a->strings["Religious Views:"] = "Religiøse synspunkter:"; -$a->strings["Keywords:"] = "Nøkkelord:"; -$a->strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; -$a->strings["Used in directory listings"] = "Brukt i katalogoppføringer"; -$a->strings["Tell us about yourself..."] = "Fortell oss om deg selv..."; -$a->strings["Hobbies/Interests"] = "Hobbier/Interesser"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformasjon og sosiale nettverk"; -$a->strings["My other channels"] = "Mine andre kanaler"; -$a->strings["Musical interests"] = "Musikkinteresser"; -$a->strings["Books, literature"] = "Bøker, litteratur"; -$a->strings["Television"] = "TV/fjernsyn"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underholdning"; -$a->strings["Love/romance"] = "Kjærlighet/romantikk"; -$a->strings["Work/employment"] = "Arbeid/sysselsetting"; -$a->strings["School/education"] = "Skole/utdanning"; -$a->strings["This is your default profile."] = "Dette er din standardprofil."; -$a->strings["Age: "] = "Alder:"; -$a->strings["Edit/Manage Profiles"] = "Endre/håndter profiler"; -$a->strings["Add profile things"] = "Legg til profilting"; -$a->strings["Include desirable objects in your profile"] = "Inkluder ønskverdige objekter i din profil"; -$a->strings["No ratings"] = "Ingen vurderinger"; -$a->strings["Ratings"] = "Vurderinger"; -$a->strings["Rating: "] = "Vurdering:"; -$a->strings["Website: "] = "Nettsted:"; -$a->strings["Description: "] = "Beskrivelse:"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; -$a->strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket."; +$a->strings["Public access denied."] = "Offentlig tilgang avvist."; $a->strings["%d rating"] = array( 0 => "%d vurdering", 1 => "%d vurderinger", @@ -1669,33 +991,273 @@ $a->strings["%d rating"] = array( $a->strings["Gender: "] = "Kjønn:"; $a->strings["Status: "] = "Status:"; $a->strings["Homepage: "] = "Hjemmeside:"; -$a->strings["Hometown: "] = "Hjemby:"; -$a->strings["About: "] = "Om:"; +$a->strings["Description:"] = "Beskrivelse:"; $a->strings["Public Forum:"] = "Offentlig forum:"; $a->strings["Keywords: "] = "Nøkkelord:"; +$a->strings["Don't suggest"] = "Ikke foreslå"; +$a->strings["Common connections:"] = "Felles forbindelser:"; +$a->strings["Global Directory"] = "Global katalog"; +$a->strings["Local Directory"] = "Lokal katalog"; $a->strings["Finding:"] = "Finner:"; $a->strings["next page"] = "Neste side"; $a->strings["previous page"] = "Forrige side"; +$a->strings["Sort options"] = "Sorteringsvalg"; +$a->strings["Alphabetic"] = "Alfabetisk"; +$a->strings["Reverse Alphabetic"] = "Omvendt alfabetisk"; +$a->strings["Newest to Oldest"] = "Nyest til eldst"; +$a->strings["Oldest to Newest"] = "Eldst til nyest"; $a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult)."; +$a->strings["Bookmark added"] = "Bokmerke lagt til"; +$a->strings["My Bookmarks"] = "Mine bokmerker"; +$a->strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; +$a->strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket."; +$a->strings["Invalid item."] = "Ugyldig element."; +$a->strings["Channel not found."] = "Kanalen ble ikke funnet."; +$a->strings["Page not found."] = "Siden ikke funnet."; +$a->strings["First Name"] = "Fornavn"; +$a->strings["Last Name"] = "Etternavn"; +$a->strings["Nickname"] = "Kallenavn"; +$a->strings["Full Name"] = "Fullt navn"; +$a->strings["Profile Photo 16px"] = "Profilbilde 16px"; +$a->strings["Profile Photo 32px"] = "Profilbilde 32px"; +$a->strings["Profile Photo 48px"] = "Profilbilde 48px"; +$a->strings["Profile Photo 64px"] = "Profilbilde 64px"; +$a->strings["Profile Photo 80px"] = "Profilbilde 80px"; +$a->strings["Profile Photo 128px"] = "Profilbilde 128px"; +$a->strings["Timezone"] = "Tidssone"; +$a->strings["Homepage URL"] = "Hjemmeside URL"; +$a->strings["Birth Year"] = "Fødselsår"; +$a->strings["Birth Month"] = "Fødselsmåne"; +$a->strings["Birth Day"] = "Fødselsdag"; +$a->strings["Birthdate"] = "Fødselsdato"; +$a->strings["Gender"] = "Kjønn"; +$a->strings["Like/Dislike"] = "Liker/Liker ikke"; +$a->strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer."; +$a->strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Vennligst logg inn med din \$Projectname ID eller registrer deg som et nytt \$Projectname-medlem for å fortsette"; +$a->strings["Invalid request."] = "Ugyldig forespørsel."; +$a->strings["thing"] = "ting"; +$a->strings["Channel unavailable."] = "Kanalen er utilgjengelig."; +$a->strings["Previous action reversed."] = "Forrige handling er omgjort."; +$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s"; +$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s"; +$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s"; +$a->strings["Action completed."] = "Handling ferdig."; +$a->strings["Thank you."] = "Tusen takk."; $a->strings["Export Channel"] = "Eksporter 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."] = "Eksporter grunnleggende informasjon om kanalen din til en liten fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; +$a->strings["Export your basic channel information to a 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 server hub, but does not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; $a->strings["Export Content"] = "Eksporter innhold"; -$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."] = "Eksporter din kanalinformasjon og alt innholdet til en sikkerhetskopi som JSON-fil. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og alt innholdet ditt, men er generelt ikke egnet for å importere en kanal til en ny hub, fordi denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; -$a->strings["No connections."] = "Ingen forbindelser."; -$a->strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]"; -$a->strings["invalid target signature"] = "Målets signatur er ugyldig"; +$a->strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; +$a->strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år"; +$a->strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."; +$a->strings["To select all posts for a given year, such as this year, visit %2\$s"] = "For å velge alle innlegg for et gitt år, slik som iår, besøk %2\$s"; +$a->strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2\$s"; +$a->strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2\$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)."; +$a->strings["Away"] = "Borte"; +$a->strings["Online"] = "Online"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til %2\$s med %4\$s"; +$a->strings["No channel."] = "Ingen kanal."; +$a->strings["Common connections"] = "Felles forbindelser"; +$a->strings["No connections in common."] = "Ingen forbindelser felles."; +$a->strings["sent you a private message"] = "sendte deg en privat melding"; +$a->strings["added your channel"] = "la til din kanal"; +$a->strings["posted an event"] = "la ut en hendelse"; +$a->strings["Documentation Search"] = "Søk i dokumentasjon"; +$a->strings["Help:"] = "Hjelp:"; +$a->strings["Not Found"] = "Ikke funnet"; +$a->strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon"; +$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet."; +$a->strings["Remove This Channel"] = "Fjern denne kanalen"; +$a->strings["WARNING: "] = "ADVARSEL:"; +$a->strings["This channel will be completely removed from the network. "] = "Denne kanalen vil bli fullstendig fjernet fra nettverket."; +$a->strings["This action is permanent and can not be undone!"] = "Denne handlingen er permanent og kan ikke angres!"; +$a->strings["Please enter your password for verification:"] = "Vennligst skriv ditt passord for å få bekreftelse:"; +$a->strings["Remove this channel and all its clones from the network"] = "Fjern denne kanalen og alle dens kloner fra nettverket"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket"; +$a->strings["Remove Channel"] = "Fjern kanal"; +$a->strings["- select -"] = "- velg -"; +$a->strings["Menu not found."] = "Menyen ble ikke funnet."; +$a->strings["Unable to create element."] = "Klarer ikke å lage element."; +$a->strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement."; +$a->strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement."; +$a->strings["Not found."] = "Ikke funnet."; +$a->strings["Menu Item Permissions"] = "Menyelement Tillatelser"; +$a->strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; +$a->strings["Link Name"] = "Lenkenavn"; +$a->strings["Link or Submenu Target"] = "Lenke- eller undermeny-mål"; +$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny"; +$a->strings["Use magic-auth if available"] = "Bruk magic-autent hvis mulig"; +$a->strings["Open link in new window"] = "Åpne lenke i nytt vindu"; +$a->strings["Order in list"] = "Ordne i liste"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Høyere tall vil synke mot bunnen av listen"; +$a->strings["Submit and finish"] = "Send inn og avslutt"; +$a->strings["Submit and continue"] = "Send inn og fortsett"; +$a->strings["Menu:"] = "Meny:"; +$a->strings["Link Target"] = "Lenkemål"; +$a->strings["Edit menu"] = "Endre meny"; +$a->strings["Edit element"] = "Endre element"; +$a->strings["Drop element"] = "Slett element"; +$a->strings["New element"] = "Nytt element"; +$a->strings["Edit this menu container"] = "Endre denne menybeholderen"; +$a->strings["Add menu element"] = "Legg til menyelement"; +$a->strings["Delete this menu item"] = "Slett dette menyelementet"; +$a->strings["Edit this menu item"] = "Endre dette menyelementet"; +$a->strings["Menu item not found."] = "Menyelement ble ikke funnet."; +$a->strings["Menu item deleted."] = "Menyelement slettet."; +$a->strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet."; +$a->strings["Edit Menu Element"] = "Endre menyelement"; +$a->strings["Link text"] = "Lenketekst"; +$a->strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktinformasjonen."; +$a->strings["Could not locate selected profile."] = "Fant ikke valgt profil."; +$a->strings["Connection updated."] = "Forbindelsen er oppdatert."; +$a->strings["Failed to update connection record."] = "Mislyktes med å oppdatere forbindelsesinformasjonen."; +$a->strings["is now connected to"] = "er nå forbundet til"; +$a->strings["Could not access address book record."] = "Fikk ikke tilgang til informasjonen i adresseboken."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."; +$a->strings["Unable to set address book parameters."] = "Ikke i stand til å angi parametre for adresseboken."; +$a->strings["Connection has been removed."] = "Forbindelsen har blitt fjernet."; +$a->strings["View %s's profile"] = "Vis %s sin profil"; +$a->strings["Refresh Permissions"] = "Oppfrisk tillatelser"; +$a->strings["Fetch updated permissions"] = "Hent oppdaterte tillatelser"; +$a->strings["Recent Activity"] = "Nylig aktivitet"; +$a->strings["View recent posts and comments"] = "Vis nylige innlegg og kommentarer"; +$a->strings["Unblock"] = "Ikke blokker lenger"; +$a->strings["Block"] = "Blokker"; +$a->strings["Block (or Unblock) all communications with this connection"] = "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen"; +$a->strings["This connection is blocked!"] = "Denne forbindelsen er blokkert!"; +$a->strings["Unignore"] = "Ikke ignorer lenger"; +$a->strings["Ignore"] = "Ignorer"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen"; +$a->strings["This connection is ignored!"] = "Denne forbindelsen er ignorert!"; +$a->strings["Unarchive"] = "Ikke arkiver lenger"; +$a->strings["Archive"] = "Arkiver"; +$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold"; +$a->strings["This connection is archived!"] = "Denne forbindelsen er arkivert!"; +$a->strings["Unhide"] = "Ikke skjul lenger"; +$a->strings["Hide"] = "Skjul"; +$a->strings["Hide or Unhide this connection from your other connections"] = "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser"; +$a->strings["This connection is hidden!"] = "Denne forbindelsen er skjult!"; +$a->strings["Delete this connection"] = "Slett denne forbindelsen"; +$a->strings["Approve this connection"] = "Godta denne forbindelsen"; +$a->strings["Accept connection to allow communication"] = "Godta denne forbindelsen for å tillate kommunikasjon"; +$a->strings["Set Affinity"] = "Angi nærhet"; +$a->strings["Set Profile"] = "Angi profil"; +$a->strings["Set Affinity & Profile"] = "Angi nærhet og profil"; +$a->strings["Apply these permissions automatically"] = "Bruk disse tillatelsene automatisk"; +$a->strings["This connection's address is"] = "Denne forbindelsens adresse er"; +$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser."; +$a->strings["Slide to adjust your degree of friendship"] = "Flytt for å justere din grad av vennskap"; +$a->strings["Slide to adjust your rating"] = "Flytt for å justere din vurdering"; +$a->strings["Optionally explain your rating"] = "Velg om du vil forklare vurderingen"; +$a->strings["Custom Filter"] = "Tilpasset filter"; +$a->strings["Only import posts with this text"] = "Bare importer innlegg med disse ordene"; +$a->strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "ett ord per linje eller #merkelapper eller /mønstre/, la feltet stå tomt for å importere alle innlegg"; +$a->strings["Do not import posts with this text"] = "Ikke importer innlegg med denne teksten"; +$a->strings["This information is public!"] = "Denne informasjonen er offentlig!"; +$a->strings["Connection Pending Approval"] = "Forbindelse venter på godkjenning"; +$a->strings["Connection Request"] = "Forespørsel om forbindelse"; +$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) ønsker forbindelse med deg. Vennligst godkjenn denne forbindelsen for å tillate kommunikasjon."; +$a->strings["Approve"] = "Godkjenn"; +$a->strings["Approve Later"] = "Godkjenn senere"; +$a->strings["inherited"] = "arvet"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. "; +$a->strings["Their Settings"] = "Deres innstillinger"; +$a->strings["My Settings"] = "Mine innstillinger"; +$a->strings["Individual Permissions"] = "Individuelle tillatelser"; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan ikke endre arvede innstillingene her."; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres."; +$a->strings["Last update:"] = "Siste oppdatering:"; +$a->strings["Set your current mood and tell your friends"] = "Angi ditt nåværende humør og fortell dine venner"; +$a->strings["Hub not found."] = "Hubben ble ikke funnet."; +$a->strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."; +$a->strings["Configuration Editor"] = "Konfigurasjonsbehandler"; +$a->strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."; +$a->strings["Public Sites"] = "Offentlige nettsteder"; +$a->strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i hele matrix. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Tilbyderlenkene kan gi tilleggsopplysninger."; +$a->strings["Rate this hub"] = "Vurder denne hubben"; +$a->strings["Site URL"] = "Nettstedets URL"; +$a->strings["Access Type"] = "Tilgangstype"; +$a->strings["Registration Policy"] = "Retningslinjer for registrering"; +$a->strings["Location"] = "Plassering"; +$a->strings["View hub ratings"] = "Vis vurderinger av hubben"; +$a->strings["Rate"] = "Vurder"; +$a->strings["View ratings"] = "Vis vurderinger"; +$a->strings["Permission Denied."] = "Tillatelse avvist."; +$a->strings["File not found."] = "Filen ble ikke funnet."; +$a->strings["Edit file permissions"] = "Endre filtillatelser"; +$a->strings["Set/edit permissions"] = "Angi/endre tillatelser"; +$a->strings["Include all files and sub folders"] = "Inkluder alle filer og undermapper"; +$a->strings["Return to file list"] = "Gå tilbake til filoversikten"; +$a->strings["Copy/paste this code to attach file to a post"] = "Kopier og lim inn denne koden for å legge til filen i et innlegg"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Kopier og lim inn denne URL-en for å lenke til filen fra en webside"; +$a->strings["Share this file"] = "Del denne filen"; +$a->strings["Show URL to this file"] = "Vis URLen til denne filen"; +$a->strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen"; +$a->strings["Layout Name"] = "Layout-navn"; +$a->strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)"; +$a->strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk"; +$a->strings["Layout Description"] = "Layout-beskrivelse"; +$a->strings["Download PDL file"] = "Last ned PDL-fil"; +$a->strings["Poke/Prod"] = "Prikke/oppildne"; +$a->strings["poke, prod or do other things to somebody"] = "prikke, oppildne eller gjør andre ting med noen"; +$a->strings["Recipient"] = "Mottaker"; +$a->strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; +$a->strings["Make this post private"] = "Gjør dette innlegget privat"; +$a->strings["No such group"] = "Gruppen finnes ikke"; +$a->strings["No such channel"] = "Ingen slik kanal"; +$a->strings["forum"] = "forum"; +$a->strings["Search Results For:"] = "Søkeresultat for:"; +$a->strings["Collection is empty"] = "Samlingen er tom"; +$a->strings["Collection: "] = "Samling:"; +$a->strings["Invalid connection."] = "Ugyldig forbindelse."; +$a->strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden."; +$a->strings["Room not found"] = "Rommet ble ikke funnet"; +$a->strings["Leave Room"] = "Forlat rom"; +$a->strings["Delete This Room"] = "Slett dette rommet"; +$a->strings["I am away right now"] = "Jeg er borte akkurat nå"; +$a->strings["I am online"] = "Jeg er online"; +$a->strings["Bookmark this room"] = "Bokmerk dette rommet"; +$a->strings["New Chatroom"] = "Nytt chatrom"; +$a->strings["Chatroom Name"] = "Navn på chatrom"; +$a->strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom"; +$a->strings["Items tagged with: %s"] = "Elementer merket med: %s"; +$a->strings["Search results for: %s"] = "Søkeresultater for: %s"; +$a->strings["Conversation removed."] = "Samtale fjernet."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."; +$a->strings["Item not found"] = "Elementet ble ikke funnet."; +$a->strings["Item is not editable"] = "Elementet kan ikke endres"; +$a->strings["Delete item?"] = "Slett element?"; +$a->strings["Insert YouTube video"] = "Sett inn YouTube-video"; +$a->strings["Insert Vorbis [.ogg] video"] = "Sett inn Vorbis [.ogg] video"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Legg i"; +$a->strings["Edit post"] = "Endre innlegg"; +$a->strings["Invalid message"] = "Ugyldig melding"; +$a->strings["no results"] = "ingen resultater"; +$a->strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s"; +$a->strings["channel sync processed"] = "Kanalsynkronisering er behandlet"; +$a->strings["queued"] = "lagt i kø"; +$a->strings["posted"] = "lagt inn"; +$a->strings["accepted for delivery"] = "akseptert for levering"; +$a->strings["updated"] = "oppdatert"; +$a->strings["update ignored"] = "oppdatering ignorert"; +$a->strings["permission denied"] = "tillatelse avvist"; +$a->strings["Delete block?"] = "Slett byggeklossen?"; +$a->strings["Edit Block"] = "Endre byggekloss"; +$a->strings["\$Projectname"] = "\$Projectname"; +$a->strings["Welcome to %s"] = "Velkommen til %s"; +$a->strings["Unable to locate original post."] = "Ikke i stand til å finne opprinnelig innlegg."; +$a->strings["Empty post discarded."] = "Tomt innlegg forkastet."; +$a->strings["Executable content type not permitted to this channel."] = "Kjørbar innholdstype er ikke tillat for denne kanalen."; +$a->strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret."; +$a->strings["Unable to obtain post information from database."] = "Ikke i stand til å få tak i informasjon om innlegg fra databasen."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider."; +$a->strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; +$a->strings["Post successful."] = "Innlegg vellykket."; $a->strings["Theme settings updated."] = "Temainnstillinger er oppdatert."; -$a->strings["Site"] = "Nettsted"; -$a->strings["Accounts"] = "Kontoer"; -$a->strings["Channels"] = "Kanaler"; -$a->strings["Plugins"] = "Tilleggsfunksjoner"; -$a->strings["Themes"] = "Temaer"; -$a->strings["Inspect queue"] = "Inspiser kø"; -$a->strings["Profile Config"] = "Profilinnstillinger"; -$a->strings["DB updates"] = "Databaseoppdateringer"; -$a->strings["Logs"] = "Logger"; -$a->strings["Plugin Features"] = "Tilleggsfunksjoner"; -$a->strings["User registrations waiting for confirmation"] = "Brukerregistreringer som venter på bekreftelse"; $a->strings["# Accounts"] = "# Kontoer"; $a->strings["# blocked accounts"] = "# blokkerte kontoer"; $a->strings["# expired accounts"] = "# utgåtte kontoer"; @@ -1712,6 +1274,7 @@ $a->strings["Registered channels"] = "Registrerte kanaler"; $a->strings["Active plugins"] = "Aktive tilleggsfunksjoner"; $a->strings["Version"] = "Versjon"; $a->strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert."; +$a->strings["mobile"] = "mobil"; $a->strings["experimental"] = "eksperimentell"; $a->strings["unsupported"] = "ikke støttet"; $a->strings["Yes - with approval"] = "Ja - med godkjenning"; @@ -1731,8 +1294,6 @@ $a->strings["System theme"] = "Systemtema"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger"; $a->strings["Mobile system theme"] = "Mobilt systemtema"; $a->strings["Theme for mobile devices"] = "Tema for mobile enheter"; -$a->strings["Enable Diaspora Protocol"] = "Skru på Diaspora-protokollen"; -$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Samhandling med Diaspora og Friendica - eksperimentell"; $a->strings["Allow Feeds as Connections"] = "Tillat strømmer som forbindelser"; $a->strings["(Heavy system resource usage)"] = "(Tung bruk av systemressurser)"; $a->strings["Maximum image size"] = "Største bildestørrelse"; @@ -1741,6 +1302,10 @@ $a->strings["Does this site allow new member registration?"] = "Tillater dette n $a->strings["Which best describes the types of account offered by this hub?"] = "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?"; $a->strings["Register text"] = "Registreringstekst"; $a->strings["Will be displayed prominently on the registration page."] = "Vil bli vist på en fremtredende måte på registreringssiden."; +$a->strings["Site homepage to show visitors (default: login box)"] = "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)"; +$a->strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "eksempel: 'public' for å vise offentlig strøm av innlegg, 'page/sys/home/ for å vise en system-webside called 'home\" eller 'include:home.html' for å inkludere en fil."; +$a->strings["Preserve site homepage URL"] = "Bevar URL-en til nettstedets hjemmeside"; +$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere"; $a->strings["Accounts abandoned after x days"] = "Kontoer forlatt etter x dager"; $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense."; $a->strings["Allowed friend domains"] = "Tillatte vennedomener"; @@ -1757,18 +1322,22 @@ $a->strings["Force publish"] = "Tving publisering"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog."; $a->strings["Disable discovery tab"] = "Skru av oppdagelsesfanen"; $a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Fjern fanen fra nettverksvisningen med offentlig innhold trukket inn fra kilder valg for dette nettstedet."; -$a->strings["No login on Homepage"] = "Ingen innlogging på hjemmesiden"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Sett hake for å skjule innloggingsskjemaet fra ditt nettsteds hjemmeside for besøkende som ikke er innlogget (for eksempel når du legger inn innhold på hjemmesiden via nettstedskanalen)."; +$a->strings["login on Homepage"] = "Logg inn på hjemmesiden"; +$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert."; $a->strings["Proxy user"] = "Brukernavn mellomtjener"; $a->strings["Proxy URL"] = "Mellomtjener URL"; $a->strings["Network timeout"] = "Nettverk tidsavbrudd"; $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)."; $a->strings["Delivery interval"] = "Leveringsinterval"; $a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere."; +$a->strings["Deliveries per process"] = "Leveranser per prosess"; +$a->strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5."; $a->strings["Poll interval"] = "Spørreintervall"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet."; $a->strings["Maximum Load Average"] = "Største belastningsgjennomsnitt"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50."; +$a->strings["Expiration period in days for imported (matrix/network) content"] = "Antall dager før importert innhold (matrix/nettverk) utgår"; +$a->strings["0 for no expiration of imported content"] = "0 dersom importert innhold ikke skal utgå"; $a->strings["No server found"] = "Ingen tjener funnet"; $a->strings["ID"] = "ID"; $a->strings["for channel"] = "for kanalen"; @@ -1791,45 +1360,54 @@ $a->strings["Destination URL"] = "Mål-URL"; $a->strings["Mark hub permanently offline"] = "Merk hub som permanent offline"; $a->strings["Empty queue for this hub"] = "Tøm køen for denne hubben"; $a->strings["Last known contact"] = "Siste kjente kontakt"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s bruker blokkert/ikke blokkert lenger", - 1 => "%s brukere blokkert/ikke blokkert lenger", +$a->strings["%s account blocked/unblocked"] = array( + 0 => "%s konto blokkert/ikke blokkert lenger", + 1 => "%s kontoer blokkert/ikke blokkert lenger", ); -$a->strings["%s user deleted"] = array( - 0 => "%s bruker slettet", - 1 => "%s brukere slettet", +$a->strings["%s account deleted"] = array( + 0 => "%s konto slettet", + 1 => "%s kontoer slettet", ); $a->strings["Account not found"] = "Kontoen ble ikke funnet"; -$a->strings["User '%s' blocked"] = "Brukeren '%s' er blokkert"; -$a->strings["User '%s' unblocked"] = "Brukeren '%s' er ikke blokkert lenger"; +$a->strings["Account '%s' deleted"] = "Kontoen '%s' slettet"; +$a->strings["Account '%s' blocked"] = "Kontoen '%s' blokkert"; +$a->strings["Account '%s' unblocked"] = "Kontoen '%s' er ikke blokkert lenger"; $a->strings["Users"] = "Brukere"; $a->strings["select all"] = "velg alle"; $a->strings["User registrations waiting for confirm"] = "Brukerregistreringer som venter på bekreftelse"; $a->strings["Request date"] = "Dato for forespørsel"; $a->strings["No registrations."] = "Ingen registreringer."; -$a->strings["Approve"] = "Godkjenn"; $a->strings["Deny"] = "Avslå"; $a->strings["Register date"] = "Registreringsdato"; $a->strings["Last login"] = "Siste innlogging"; $a->strings["Expires"] = "Utløper"; $a->strings["Service Class"] = "Tjenesteklasse"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte brukere vil bli slettet!\\n\\nAlt som disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette valgte brukere og deres innhold?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren og alt innholdet til denne brukeren?"; +$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?"; +$a->strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?"; $a->strings["%s channel censored/uncensored"] = array( 0 => "%s kanal er sensurert/ikke sensurert lenger", 1 => "%s kanaler er sensurert/ikke sensurert lenger", ); +$a->strings["%s channel code allowed/disallowed"] = array( + 0 => "%s kanal med kode tillatt/ikke tillatt", + 1 => "%s kanaler med kode tillatt/ikke tillatt", +); $a->strings["%s channel deleted"] = array( 0 => "%s kanal slettet", 1 => "%s kanaler slettet", ); $a->strings["Channel not found"] = "Kanalen ble ikke funnet"; $a->strings["Channel '%s' deleted"] = "Kanalen '%s' er slettet"; -$a->strings["Channel '%s' uncensored"] = "Kanalen '%s' er ikke sensurert lenger"; $a->strings["Channel '%s' censored"] = "Kanalen '%s' er sensurert"; +$a->strings["Channel '%s' uncensored"] = "Kanalen '%s' er ikke sensurert lenger"; +$a->strings["Channel '%s' code allowed"] = "Kanal '%s' kode tillatt"; +$a->strings["Channel '%s' code disallowed"] = "Kanal '%s' kode ikke tillatt"; $a->strings["Censor"] = "Sensurer"; $a->strings["Uncensor"] = "Ikke sensurer lenger"; +$a->strings["Allow Code"] = "Tillat kode"; +$a->strings["Disallow Code"] = "Ikke tillat kode"; $a->strings["UID"] = "UID"; +$a->strings["Address"] = "Adresse"; $a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?"; $a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?"; $a->strings["Plugin %s disabled."] = "Tilleggsfunksjonen %s er avskrudd."; @@ -1859,11 +1437,204 @@ $a->strings["Help text"] = "Hjelpetekst"; $a->strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)"; $a->strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet"; $a->strings["Edit Profile Field"] = "Endre profilfelt"; -$a->strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; -$a->strings["Post successful."] = "Innlegg vellykket."; -$a->strings["Edit Block"] = "Endre byggekloss"; -$a->strings["Delete block?"] = "Slett byggeklossen?"; -$a->strings["Delete Block"] = "Slett byggekloss"; +$a->strings["App installed."] = "App installert."; +$a->strings["Malformed app."] = "Feil oppsett for app-en."; +$a->strings["Embed code"] = "Innbyggingskode"; +$a->strings["Edit App"] = "Endre app"; +$a->strings["Create App"] = "Lag app"; +$a->strings["Name of app"] = "Navn på app"; +$a->strings["Location (URL) of app"] = "Plassering (URL) til app"; +$a->strings["Description"] = "Beskrivelse"; +$a->strings["Photo icon URL"] = "Bildeikon URL"; +$a->strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt"; +$a->strings["Version ID"] = "Versjons-ID"; +$a->strings["Price of app"] = "Pris på app"; +$a->strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app"; +$a->strings["Unable to update menu."] = "Ikke i stand til å oppdatere meny."; +$a->strings["Unable to create menu."] = "Ikke i stand til å lage meny."; +$a->strings["Menu Name"] = "Menynavn"; +$a->strings["Unique name (not visible on webpage) - required"] = "Unikt navn (ikke synlig på websiden) - påkrevet"; +$a->strings["Menu Title"] = "Menytittel"; +$a->strings["Visible on webpage - leave empty for no title"] = "Synlig på websiden - la stå tomt for ingen tittel"; +$a->strings["Allow Bookmarks"] = "Tillat bokmerker"; +$a->strings["Menu may be used to store saved bookmarks"] = "Menyen kan brukes til å lagre lagrede bokmerker"; +$a->strings["Submit and proceed"] = "Send inn og fortsett"; +$a->strings["Drop"] = "Slett"; +$a->strings["Bookmarks allowed"] = "Bokmerker tillatt"; +$a->strings["Delete this menu"] = "Slett denne menyen"; +$a->strings["Edit menu contents"] = "Endre menyinnholdet"; +$a->strings["Edit this menu"] = "Endre denne menyen"; +$a->strings["Menu could not be deleted."] = "Menyen kunne ikke bli slettet."; +$a->strings["Edit Menu"] = "Endre meny"; +$a->strings["Add or remove entries to this menu"] = "Legg til eller fjern punkter i denne menyen"; +$a->strings["Menu name"] = "Menynavn"; +$a->strings["Must be unique, only seen by you"] = "Må være unik, ses bare av deg"; +$a->strings["Menu title"] = "Menytittel"; +$a->strings["Menu title as seen by others"] = "Menytittelen andre ser"; +$a->strings["Allow bookmarks"] = "Tillat bokmerker"; +$a->strings["No more system notifications."] = "Ingen flere systemvarsler."; +$a->strings["System Notifications"] = "Systemvarsler"; +$a->strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +$a->strings["Add a Channel"] = "Legg til en kanal"; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "En kanal er din egen samling av relaterte web-sider. En kanal kan brukes til å samle sosiale nettverksprofiler, blogger, samtalegrupper og forum, kjendissider og mye mer. Du kan lage så mange kanaler som din tjenestetilbyder tillater."; +$a->strings["Channel Name"] = "Kanalnavn"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; +$a->strings["Choose a short nickname"] = "Velg et kort kallenavn"; +$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 kallenavn brukes til å lage en kanaladresse som er enkel å huske (minner om en e-postadresse) og som du kan dele med andre."; +$a->strings["Or import an existing channel from another location"] = "Eller importerer en eksisterende kanal fra et annet sted."; +$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"] = "Vennligst velg en kanaltype (for eksempel sosialt nettverk eller forum for felleskap) og krav til personvern slik at vi kan velge de beste tillatelsene for deg."; +$a->strings["Channel Type"] = "Kanaltype"; +$a->strings["Read more about roles"] = "Les mer om roller"; +$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; +$a->strings["Discard"] = "Forkast"; +$a->strings["Layout updated."] = "Layout er oppdatert."; +$a->strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; +$a->strings["Layout not found."] = "Layouten ble ikke funnet."; +$a->strings["Module Name:"] = "Modulnavn:"; +$a->strings["Layout Help"] = "Layout-hjelp"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; +$a->strings["No valid account found."] = "Ingen gyldig konto funnet."; +$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; +$a->strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; +$a->strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; +$a->strings["Password Reset"] = "Tilbakestill passord"; +$a->strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; +$a->strings["Your new password is"] = "Ditt nye passord er"; +$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; +$a->strings["click here to login"] = "klikke her for å logge inn"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging."; +$a->strings["Your password has changed at %s"] = "Ditt passord er endret hos %s"; +$a->strings["Forgot your Password?"] = "Glemt passord ditt?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."; +$a->strings["Email Address"] = "E-postadresse"; +$a->strings["Reset"] = "Tilbakestill"; +$a->strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; +$a->strings["Album not found."] = "Albumet ble ikke funnet."; +$a->strings["Delete Album"] = "Slett album"; +$a->strings["Delete Photo"] = "Slett bilde"; +$a->strings["No photos selected"] = "Ingen bilder valgt"; +$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; +$a->strings["Upload Photos"] = "Last opp bilder"; +$a->strings["Enter an album name"] = "Skriv et albumnavn"; +$a->strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +$a->strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; +$a->strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Show Newest First"] = "Vis nyeste først"; +$a->strings["Show Oldest First"] = "Vis eldste først"; +$a->strings["View Photo"] = "Vis foto"; +$a->strings["Edit Album"] = "Endre album"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; +$a->strings["Photo not available"] = "Bilde er utilgjengelig"; +$a->strings["Use as profile photo"] = "Bruk som profilbilde"; +$a->strings["Private Photo"] = "Privat bilde"; +$a->strings["Previous"] = "Forrige"; +$a->strings["View Full Size"] = "Vis i full størrelse"; +$a->strings["Next"] = "Neste"; +$a->strings["Remove"] = "Fjern"; +$a->strings["Edit photo"] = "Endre bilde"; +$a->strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; +$a->strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; +$a->strings["Enter a new album name"] = "Skriv et nytt albumnavn"; +$a->strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +$a->strings["Caption"] = "Overskrift"; +$a->strings["Add a Tag"] = "Legg til merkelapp"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; +$a->strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; +$a->strings["In This Photo:"] = "I dette bildet:"; +$a->strings["Map"] = "Kart"; +$a->strings["View Album"] = "Vis album"; +$a->strings["Recent Photos"] = "Nye bilder"; +$a->strings["\$Projectname channel"] = "\$Projectname-kanal"; +$a->strings["Website:"] = "Nettsted:"; +$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"; +$a->strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)"; +$a->strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"; +$a->strings["Calendar entries imported."] = "Kalenderhendelsene er importert."; +$a->strings["No calendar entries found."] = "Ingen kalenderhendelser funnet."; +$a->strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter."; +$a->strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning."; +$a->strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd."; +$a->strings["Event not found."] = "Hendelsen ble ikke funnet."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Endre hendelse"; +$a->strings["Delete event"] = "Slett hendelse"; +$a->strings["calendar"] = "kalender"; +$a->strings["Create New Event"] = "Lag ny hendelse"; +$a->strings["Export"] = "Eksport"; +$a->strings["Import"] = "Importer"; +$a->strings["Event removed"] = "Hendelse slettet"; +$a->strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; +$a->strings["Event details"] = "Hendelsesdetaljer"; +$a->strings["Starting date and Title are required."] = "Startdato og Tittel er påkrevd."; +$a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; +$a->strings["Event Starts:"] = "Hendelsen starter:"; +$a->strings["Finish date/time is not known or not relevant"] = "Sluttdato/-tidspunkt er ikke kjent eller ikke relevant"; +$a->strings["Event Finishes:"] = "Hendelsen slutter:"; +$a->strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone"; +$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager."; +$a->strings["Title:"] = "Tittel:"; +$a->strings["Share this event"] = "Del denne hendelsen"; +$a->strings["%s element installed"] = "%s element installert"; +$a->strings["%s element installation failed"] = "Installasjon av %s-element mislyktes"; +$a->strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; +$a->strings["Profile Match"] = "Profiltreff"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil."; +$a->strings["is interested in:"] = "er interessert i:"; +$a->strings["No matches"] = "Ingen treff"; +$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæring av bildet mislyktes."; +$a->strings["Image resize failed."] = "Endring av bildestørrelse mislyktes."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; +$a->strings["Image upload failed."] = "Opplasting av bildet mislyktes."; +$a->strings["Unable to process image."] = "Kan ikke behandle bildet."; +$a->strings["female"] = "kvinne"; +$a->strings["%1\$s updated her %2\$s"] = "%1\$s oppdaterte %2\$s sitt"; +$a->strings["male"] = "mann"; +$a->strings["%1\$s updated his %2\$s"] = "%1\$s oppdaterte %2\$s sitt"; +$a->strings["%1\$s updated their %2\$s"] = "%1\$s oppdaterte %2\$s deres"; +$a->strings["profile photo"] = "profilbilde"; +$a->strings["Photo not available."] = "Bildet er ikke tilgjengelig."; +$a->strings["Upload File:"] = "Last opp fil:"; +$a->strings["Select a profile:"] = "Velg en profil:"; +$a->strings["Upload Profile Photo"] = "Last opp profilbilde:"; +$a->strings["or"] = "eller"; +$a->strings["skip this step"] = "hopp over dette steget"; +$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum"; +$a->strings["Crop Image"] = "Beskjær bildet"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjæringen for optimal visning."; +$a->strings["Done Editing"] = "Avslutt redigering"; +$a->strings["Channel added."] = "Kanal lagt til."; +$a->strings["Tag removed"] = "Merkelapp fjernet"; +$a->strings["Remove Item Tag"] = "Fjern merkelapp fra element"; +$a->strings["Select a tag to remove: "] = "Velg merkelapp å fjerne:"; +$a->strings["No ratings"] = "Ingen vurderinger"; +$a->strings["Ratings"] = "Vurderinger"; +$a->strings["Rating: "] = "Vurdering:"; +$a->strings["Website: "] = "Nettsted:"; +$a->strings["Description: "] = "Beskrivelse:"; +$a->strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener"; +$a->strings["Unable to lookup recipient."] = "Ikke i stand til å slå opp mottaker."; +$a->strings["Unable to communicate with requested channel."] = "Ikke i stand til å kommunisere med forespurt kanal."; +$a->strings["Cannot verify requested channel."] = "Kan ikke bekrefte forespurt kanal."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Valgt kanal har restriksjoner for private meldinger. Sending feilet."; +$a->strings["Messages"] = "Meldinger"; +$a->strings["Message deleted."] = "Melding slettet."; +$a->strings["Message recalled."] = "Innlegg tilbakekalt."; +$a->strings["Send Private Message"] = "Send privat melding"; +$a->strings["To:"] = "Til:"; +$a->strings["Subject:"] = "Emne:"; +$a->strings["Your message:"] = "Din melding:"; +$a->strings["Send"] = "Send"; +$a->strings["Delete message"] = "Slett melding"; +$a->strings["Recall message"] = "Tilbakekall innlegg"; +$a->strings["Message has been recalled."] = "Innlegget har blitt tilbakekalt."; +$a->strings["Delete Conversation"] = "Slett samtale"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside."; +$a->strings["Send Reply"] = "Send svar"; +$a->strings["Page Title"] = "Sidetittel"; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen."; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes."; $a->strings["Passwords do not match."] = "Passordene er ikke like."; @@ -1881,192 +1652,478 @@ $a->strings["Please enter your invitation code"] = "Vennligst skriv din invitasj $a->strings["Your email address"] = "Din e-postadresse"; $a->strings["Choose a password"] = "Velg et passord"; $a->strings["Please re-enter your password"] = "Vennligst skriv ditt passord en gang til"; +$a->strings["Block Name"] = "Byggeklossens navn"; +$a->strings["Block Title"] = "Byggeklossens tittel"; $a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet."; $a->strings["Remove This Account"] = "Slett denne kontoen"; -$a->strings["WARNING: "] = "ADVARSEL:"; $a->strings["This account and all its channels will be completely removed from the network. "] = "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket."; -$a->strings["This action is permanent and can not be undone!"] = "Denne handlingen er permanent og kan ikke angres!"; -$a->strings["Please enter your password for verification:"] = "Vennligst skriv ditt passord for å få bekreftelse:"; $a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket"; $a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket"; +$a->strings["Remove Account"] = "Slett konto"; +$a->strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse."; +$a->strings["Item not available."] = "Elementet er ikke tilgjengelig."; +$a->strings["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt."; +$a->strings["Source created."] = "Kilden er laget."; +$a->strings["Source updated."] = "Kilden er oppdatert."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Håndtere eksterne innholdskilder til din kanal."; +$a->strings["New Source"] = "Ny kilde"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger."; +$a->strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)"; +$a->strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold"; +$a->strings["Source not found."] = "Kilden ble ikke funnet."; +$a->strings["Edit Source"] = "Endre kilde"; +$a->strings["Delete Source"] = "Slett kilde"; +$a->strings["Source removed"] = "Kilden er fjernet"; +$a->strings["Unable to remove source."] = "Ikke i stand til å fjerne kilde."; +$a->strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig."; +$a->strings["Visible to:"] = "Synlig for:"; +$a->strings["network"] = "nettverk"; +$a->strings["RSS"] = "RSS"; +$a->strings["Please login."] = "Vennligst logg inn."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; +$a->strings["The error message was:"] = "Feilmeldingen var:"; +$a->strings["Authentication failed."] = "Autentisering mislyktes."; +$a->strings["Remote Authentication"] = "Fjernautentisering"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; +$a->strings["Authenticate"] = "Autentiser"; +$a->strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"; +$a->strings["Version %s"] = "Versjon %s"; +$a->strings["Installed plugins/addons/apps:"] = "Installerte tilleggsfunksjoner/tillegg/apper:"; +$a->strings["No installed plugins/addons/apps"] = "Ingen installerte tilleggsfunksjoner/tillegg/apper"; +$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dette er en \$Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern."; +$a->strings["Tag: "] = "Merkelapp:"; +$a->strings["Last background fetch: "] = "Siste innhenting i bakgrunnen:"; +$a->strings["Current load average: "] = "Gjeldende belastningsgjennomsnitt:"; +$a->strings["Running at web location"] = "Kjører på webplasseringen"; +$a->strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Vennligst besøk redmatrix.me for å lære mer om \$Projectname."; +$a->strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk"; +$a->strings["\$projectname issues"] = "\$projectname problemer"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com"; +$a->strings["Site Administrators"] = "Nettstedsadministratorer"; +$a->strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler."; +$a->strings["Nothing to import."] = "Ingenting å importere."; +$a->strings["Unable to download data from old server"] = "Ikke i stand til å laste ned data fra gammel tjener"; +$a->strings["Imported file is empty."] = "Importert fil er tom."; +$a->strings["Warning: Database versions differ by %1\$d updates."] = "Advarsel: databaseversjoner avviker med %1\$d oppdateringer."; +$a->strings["No channel. Import failed."] = "Ingen kanal. Import mislyktes."; +$a->strings["You must be logged in to use this feature."] = "Du må være innlogget for å bruke denne funksjonen."; +$a->strings["Import Channel"] = "Importer 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."] = "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil."; +$a->strings["File to Upload"] = "Fil som skal lastes opp"; +$a->strings["Or provide the old server/hub details"] = "Eller oppgi detaljene fra den gamle tjeneren/hub-en"; +$a->strings["Your old identity address (xyz@example.com)"] = "Din gamle identitetsadresse (xyz@example.com)"; +$a->strings["Your old login email address"] = "Din gamle innloggings e-postadresse"; +$a->strings["Your old login password"] = "Ditt gamle innloggingspassord"; +$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."] = "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media."; +$a->strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering"; +$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)"; +$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig."; +$a->strings["Thing updated"] = "Tingen er oppdatert"; +$a->strings["Object store: failed"] = "Objektlagring: mislyktes"; +$a->strings["Thing added"] = "Ting lagt til"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Vis ting"; +$a->strings["item not found."] = "element ble ikke funnet."; +$a->strings["Edit Thing"] = "Endre ting"; +$a->strings["Select a profile"] = "Velg en profil"; +$a->strings["Post an activity"] = "Legg inn en aktivitet"; +$a->strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen"; +$a->strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe"; +$a->strings["URL of thing (optional)"] = "URL til ting (valgfritt)"; +$a->strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)"; +$a->strings["Add Thing to your Profile"] = "Legg til ting i din profil"; +$a->strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet."; +$a->strings["%s : Not a valid email address."] = "%s : ikke en gyldig e-postadresse."; +$a->strings["Please join us on \$Projectname"] = "Bli med oss på \$Projectname"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted."; +$a->strings["%s : Message delivery failed."] = "%s : meldingslevering feilet."; +$a->strings["%d message sent."] = array( + 0 => "%d melding sendt.", + 1 => "%d meldinger sendt.", +); +$a->strings["You have no more invitations available"] = "Du har ikke flere invitasjoner tilgjengelig"; +$a->strings["Send invitations"] = "Send invitasjoner"; +$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; +$a->strings["Please join my community on \$Projectname."] = "Du er velkommen til å bli med i mitt fellesskap på \$Projectname."; +$a->strings["You will need to supply this invitation code: "] = "Du må oppgi denne invitasjonskoden:"; +$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrer ved enhver \$Projectname-lokasjon (de er alle forbundet med hverandre)"; +$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Skriv inn min \$Projectname-adresse i nettstedets søkefelt."; +$a->strings["or visit "] = "eller besøk"; +$a->strings["3. Click [Connect]"] = "3. Klikk [Forbindelse]"; $a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - last siden på nytt for å se]"; -$a->strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; -$a->strings["Album not found."] = "Albumet ble ikke funnet."; -$a->strings["Delete Album"] = "Slett album"; -$a->strings["Delete Photo"] = "Slett bilde"; -$a->strings["No photos selected"] = "Ingen bilder valgt"; -$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; -$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; -$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; -$a->strings["Upload Photos"] = "Last opp bilder"; -$a->strings["Enter a new album name"] = "Skriv et nytt albumnavn"; -$a->strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; -$a->strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; -$a->strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Show Newest First"] = "Vis nyeste først"; -$a->strings["Show Oldest First"] = "Vis eldste først"; -$a->strings["View Photo"] = "Vis foto"; -$a->strings["Edit Album"] = "Endre album"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; -$a->strings["Photo not available"] = "Bilde er utilgjengelig"; -$a->strings["Use as profile photo"] = "Bruk som profilbilde"; -$a->strings["Private Photo"] = "Privat bilde"; -$a->strings["View Full Size"] = "Vis i full størrelse"; -$a->strings["Edit photo"] = "Endre bilde"; -$a->strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; -$a->strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; -$a->strings["Caption"] = "Overskrift"; -$a->strings["Add a Tag"] = "Legg til merkelapp"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; -$a->strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; -$a->strings["In This Photo:"] = "I dette bildet:"; -$a->strings["Map"] = "Kart"; -$a->strings["View Album"] = "Vis album"; -$a->strings["Recent Photos"] = "Nye bilder"; +$a->strings["Source of Item"] = "Kilde til element"; +$a->strings["Name is required"] = "Navn er påkrevd"; +$a->strings["Key and Secret are required"] = "Nøkkel og hemmelighet er påkrevd"; +$a->strings["Passwords do not match. Password unchanged."] = "Passordene stemmer ikke overens. Passord uforandret."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke tillatt. Passord uforandret."; +$a->strings["Password changed."] = "Passord endret."; +$a->strings["Password update failed. Please try again."] = "Passord oppdatering mislyktes. Vennligst prøv igjen."; +$a->strings["Not valid email."] = "Ikke gyldig e-post."; +$a->strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."; +$a->strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."; +$a->strings["Settings updated."] = "Innstillinger oppdatert."; +$a->strings["Add application"] = "Legg til program"; +$a->strings["Name of application"] = "Navn på program"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisk laget - kan endres om du vil. Største lengde 20"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Omdirigering"; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette"; +$a->strings["Icon url"] = "Ikon-URL"; +$a->strings["Optional"] = "Valgfritt"; +$a->strings["You can't edit this application."] = "Du kan ikke endre dette programmet."; +$a->strings["Connected Apps"] = "Tilkoblede app-er"; +$a->strings["Client key starts with"] = "Klientnøkkel starter med"; +$a->strings["No name"] = "Ikke noe navn"; +$a->strings["Remove authorization"] = "Fjern tillatelse"; +$a->strings["No feature settings configured"] = "Ingen funksjonsinnstillinger er konfigurert"; +$a->strings["Feature/Addon Settings"] = "Funksjons-/Tilleggsinnstillinger"; +$a->strings["Account Settings"] = "Kontoinnstillinger"; +$a->strings["Enter New Password:"] = "Skriv nytt passord:"; +$a->strings["Confirm New Password:"] = "Bekreft nytt passord:"; +$a->strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres"; +$a->strings["Email Address:"] = "E-postadresse:"; +$a->strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler"; +$a->strings["Off"] = "Av"; +$a->strings["On"] = "På"; +$a->strings["Additional Features"] = "Ekstra funksjoner"; +$a->strings["Connector Settings"] = "Koblingsinnstillinger"; +$a->strings["No special theme for mobile devices"] = "Ikke noe spesielt tema for mobile enheter"; +$a->strings["%s - (Experimental)"] = "%s - (Eksperimentelt)"; +$a->strings["Display Settings"] = "Visningsinnstillinger"; +$a->strings["Theme Settings"] = "Temainnstillinger"; +$a->strings["Custom Theme Settings"] = "Tilpassede temainnstillinger"; +$a->strings["Content Settings"] = "Innholdsinnstillinger"; +$a->strings["Display Theme:"] = "Visningstema:"; +$a->strings["Mobile Theme:"] = "Mobiltema:"; +$a->strings["Enable user zoom on mobile devices"] = "Skru på brukerstyrt zoom på mobile enheter"; +$a->strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekunder"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum"; +$a->strings["Maximum number of conversations to load at any time:"] = "Maksimalt antall samtaler å laste samtidig:"; +$a->strings["Maximum of 100 items"] = "Maksimum 100 elementer"; +$a->strings["Show emoticons (smilies) as images"] = "Vis emoticons (smilefjes) som bilder"; +$a->strings["Link post titles to source"] = "Lenk innleggets tittel til kilden"; +$a->strings["System Page Layout Editor - (advanced)"] = "Systemsidens layoutbehandler - (avansert)"; +$a->strings["Use blog/list mode on channel page"] = "Bruk blogg-/listemodus på kanalsiden"; +$a->strings["(comments displayed separately)"] = "(kommentarer vist separat)"; +$a->strings["Use blog/list mode on matrix page"] = "Bruk blogg-/listemodus på matrix-siden"; +$a->strings["Channel page max height of content (in pixels)"] = "Kanalsidens makshøyde for innhold (i pixler)"; +$a->strings["click to expand content exceeding this height"] = "klikk for å utvide innhold som overstiger denne høyden"; +$a->strings["Matrix page max height of content (in pixels)"] = "Matrix-sidens makshøyde for innholde (i pixler)"; +$a->strings["Nobody except yourself"] = "Ingen unntatt deg selv"; +$a->strings["Only those you specifically allow"] = "Bare de du spesifikt tillater"; +$a->strings["Approved connections"] = "Godkjente forbindelser"; +$a->strings["Any connections"] = "Enhver forbindelse"; +$a->strings["Anybody on this website"] = "Enhver ved dette nettstedet"; +$a->strings["Anybody in this network"] = "Enhver i dette nettverket"; +$a->strings["Anybody authenticated"] = "Enhver som er autentisert"; +$a->strings["Anybody on the internet"] = "Enhver på Internett"; +$a->strings["Publish your default profile in the network directory"] = "Publiser din standardprofil i nettverkskatalogen"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?"; +$a->strings["Your channel address is"] = "Din kanaladresse er"; +$a->strings["Channel Settings"] = "Kanalinnstillinger"; +$a->strings["Basic Settings"] = "Grunninnstillinger"; +$a->strings["Your Timezone:"] = "Din tidssone:"; +$a->strings["Default Post Location:"] = "Standard plassering ved innlegg:"; +$a->strings["Geographical location to display on your posts"] = "Geografisk plassering som vises på dine innlegg"; +$a->strings["Use Browser Location:"] = "Bruk nettleseren sin plassering:"; +$a->strings["Adult Content"] = "Voksent innhold"; +$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)"; +$a->strings["Security and Privacy Settings"] = "Sikkerhets- og personverninnstillinger"; +$a->strings["Your permissions are already configured. Click to view/adjust"] = "Dine tillatelser er allerede satt. Klikk for å se/justere."; +$a->strings["Hide my online presence"] = "Skjul min tilstedeværelse online"; +$a->strings["Prevents displaying in your profile that you are online"] = "Forhindrer visning på din profil av at du er online "; +$a->strings["Simple Privacy Settings:"] = "Enkle personverninnstillinger:"; +$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)"; +$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)"; +$a->strings["Private - default private, never open or public"] = "Privat - standard er privat, aldri åpen eller offentlig"; +$a->strings["Blocked - default blocked to/from everybody"] = "Blokkert - standard blokkert til/fra alle"; +$a->strings["Allow others to tag your posts"] = "Tillat andre å merke dine innlegg"; +$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant"; +$a->strings["Advanced Privacy Settings"] = "Avanserte personverninnstillinger"; +$a->strings["Expire other channel content after this many days"] = "Annet kanal innhold utløper etter så mange dager"; +$a->strings["0 or blank prevents expiration"] = "0 eller blankt forhindrer utløp"; +$a->strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:"; +$a->strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet"; +$a->strings["Default Post Permissions"] = "Standard innleggstillatelser"; +$a->strings["Channel permissions category:"] = "Kategori med kanaltillatelser:"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maksimalt antall private meldinger per dag fra ukjente personer:"; +$a->strings["Useful to reduce spamming"] = "Nyttig for å redusere søppelpost"; +$a->strings["Notification Settings"] = "Varslingsinnstillinger"; +$a->strings["By default post a status message when:"] = "Legg inn en statusmelding når du:"; +$a->strings["accepting a friend request"] = "aksepterer en venneforespørsel"; +$a->strings["joining a forum/community"] = "blir med i et forum/miljø"; +$a->strings["making an interesting profile change"] = "gjør en interessant profilendring"; +$a->strings["Send a notification email when:"] = "Send en varsel-e-post når:"; +$a->strings["You receive a connection request"] = "Du har mottatt en forespørsel om forbindelse"; +$a->strings["Your connections are confirmed"] = "Dine forbindelser er bekreftet"; +$a->strings["Someone writes on your profile wall"] = "Noen skriver på din profilvegg"; +$a->strings["Someone writes a followup comment"] = "Noen skriver en oppfølgende kommentar"; +$a->strings["You receive a private message"] = "Du mottar en privat melding"; +$a->strings["You receive a friend suggestion"] = "Du mottok et venneforslag"; +$a->strings["You are tagged in a post"] = "Du merkes i et innlegg"; +$a->strings["You are poked/prodded/etc. in a post"] = "Du ble prikket/oppildnet/og så vider i et innlegg"; +$a->strings["Show visual notifications including:"] = "Vis visuelle varslinger om:"; +$a->strings["Unseen matrix activity"] = "Usett matrixaktivitet"; +$a->strings["Unseen channel activity"] = "Usett kanalaktivitet"; +$a->strings["Unseen private messages"] = "Usette private meldinger"; +$a->strings["Recommended"] = "Anbefalt"; +$a->strings["Upcoming events"] = "Kommende hendelser"; +$a->strings["Events today"] = "Hendelser idag"; +$a->strings["Upcoming birthdays"] = "Kommende fødselsdager"; +$a->strings["Not available in all themes"] = "Ikke tilgjengelig i alle temaer"; +$a->strings["System (personal) notifications"] = "System (personlige) varslinger"; +$a->strings["System info messages"] = "System infomeldinger"; +$a->strings["System critical alerts"] = "System kritiske varsel"; +$a->strings["New connections"] = "Nye forbindelser"; +$a->strings["System Registrations"] = "Systemregistreringer"; +$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler"; +$a->strings["Notify me of events this many days in advance"] = "Varsle meg om hendelser dette antall dager på forhånd"; +$a->strings["Must be greater than 0"] = "Må være større enn 0"; +$a->strings["Advanced Account/Page Type Settings"] = "Avanserte innstillinger for konto/sidetype"; +$a->strings["Change the behaviour of this account for special situations"] = "Endre oppførselen til denne kontoen i spesielle situasjoner"; +$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!"; +$a->strings["Miscellaneous Settings"] = "Diverse innstillinger"; +$a->strings["Default photo upload folder"] = "Standard mappe for opplasting av bilder"; +$a->strings["Default file upload folder"] = "Standard mappe for opplasting av filer"; +$a->strings["Personal menu to display in your channel pages"] = "Personlig meny som kan vises på dine kanalsider"; +$a->strings["Remove this channel."] = "Fjern denne kanalen."; +$a->strings["Xchan Lookup"] = "Xchan oppslag"; +$a->strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie):"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler."; +$a->strings["Create a new channel"] = "Lag en ny kanal"; +$a->strings["Current Channel"] = "Gjeldende kanal"; +$a->strings["Switch to one of your channels by selecting it."] = "Bytt til en av dine kanaler ved å velge den."; +$a->strings["Default Channel"] = "Standardkanal"; +$a->strings["Make Default"] = "Gjør til standard"; +$a->strings["%d new messages"] = "%d nye meldinger"; +$a->strings["%d new introductions"] = "%d nye introduksjoner"; +$a->strings["Delegated Channels"] = "Delegerte kanaler"; +$a->strings["Authorize application connection"] = "Tillat programforbindelse"; +$a->strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; +$a->strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; +$a->strings["Blocked"] = "Blokkert"; +$a->strings["Ignored"] = "Ignorert"; +$a->strings["Hidden"] = "Skjult"; +$a->strings["Archived"] = "Arkivert"; +$a->strings["Suggest new connections"] = "Foreslå nye forbindelser"; +$a->strings["New Connections"] = "Nye forbindelser"; +$a->strings["Show pending (new) connections"] = "Vis ventende (nye) forbindelser"; +$a->strings["All Connections"] = "Alle forbindelser"; +$a->strings["Show all connections"] = "Vis alle forbindelser"; +$a->strings["Unblocked"] = "Ikke blokkert lenger"; +$a->strings["Only show unblocked connections"] = "Vis bare forbindelser som ikke er blokkert"; +$a->strings["Only show blocked connections"] = "Vis bare forbindelser som er blokkert"; +$a->strings["Only show ignored connections"] = "Vis bare ignorerte forbindelser"; +$a->strings["Only show archived connections"] = "Vis bare arkiverte forbindelser"; +$a->strings["Only show hidden connections"] = "Vis bare skjulte forbindelser"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit connection"] = "Endre forbindelse"; +$a->strings["Search your connections"] = "Søk blant dine forbindelser"; +$a->strings["Finding: "] = "Fant:"; +$a->strings["Delete layout?"] = "Slett layout?"; +$a->strings["Edit Layout"] = "Endre layout"; +$a->strings["Delete webpage?"] = "Slett webside?"; +$a->strings["Page link title"] = "Sidens lenketittel"; +$a->strings["Edit Webpage"] = "Endre webside"; +$a->strings["Collection created."] = "Samling opprettet."; +$a->strings["Could not create collection."] = "Kunne ikke lage samling."; +$a->strings["Collection updated."] = "Samlingen er oppdatert."; +$a->strings["Create a collection of channels."] = "Lag en samling med kanaler."; +$a->strings["Collection Name: "] = "Navn på samling:"; +$a->strings["Members are visible to other channels"] = "Medlemmer er synlig for andre kanaler"; +$a->strings["Collection removed."] = "Samling fjernet."; +$a->strings["Unable to remove collection."] = "Ikke i stand til å fjerne samlingen."; +$a->strings["Collection Editor"] = "Samlingsbehandler"; +$a->strings["Members"] = "Medlemmer"; +$a->strings["All Connected Channels"] = "Alle tilkoblede kanaler"; +$a->strings["Click on a channel to add or remove."] = "Klikk på en kanal for å legge til eller fjerne."; +$a->strings["Continue"] = "Fortsett"; +$a->strings["Premium Channel Setup"] = "Premiumkanal-oppsett"; +$a->strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"; +$a->strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal"; +$a->strings["No connections."] = "Ingen forbindelser."; +$a->strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]"; +$a->strings["Location not found."] = "Plassering er ikke funnet."; +$a->strings["Location lookup failed."] = "Oppslag på plassering mislyktes."; +$a->strings["Please select another location to become primary before removing the primary location."] = "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering."; +$a->strings["No locations found."] = "Ingen plasseringer ble funnet."; +$a->strings["Manage Channel Locations"] = "Håndter kanalplasseringer"; +$a->strings["Location (address)"] = "Plassering (adresse)"; +$a->strings["Primary Location"] = "Hovedplassering"; +$a->strings["Drop location"] = "Slett plassering"; $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokalt. Vennligst logg ut og prøv på nytt."; -$a->strings["Conversation removed."] = "Samtale fjernet."; -$a->strings["No messages."] = "Ingen meldinger."; -$a->strings["Delete conversation"] = "Slett samtale"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Menu element updated."] = "Menyelement er oppdatert."; -$a->strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement."; -$a->strings["Menu element added."] = "Menyelement lagt til."; -$a->strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement."; -$a->strings["Manage Menu Elements"] = "Håndtere menyelementer"; -$a->strings["Edit menu"] = "Endre meny"; -$a->strings["Edit element"] = "Endre element"; -$a->strings["Drop element"] = "Slett element"; -$a->strings["New element"] = "Nytt element"; -$a->strings["Edit this menu container"] = "Endre denne menybeholderen"; -$a->strings["Add menu element"] = "Legg til menyelement"; -$a->strings["Delete this menu item"] = "Slett dette menyelementet"; -$a->strings["Edit this menu item"] = "Endre dette menyelementet"; -$a->strings["New Menu Element"] = "Nytt menyelement"; -$a->strings["Menu Item Permissions"] = "Menyelement Tillatelser"; -$a->strings["Link text"] = "Lenketekst"; -$a->strings["URL of link"] = "URL-en til lenken"; -$a->strings["Use Hubzilla magic-auth if available"] = "Bruk Hubzillas magiske-autentisering hvis tilgjengelig"; -$a->strings["Open link in new window"] = "Åpne lenke i nytt vindu"; -$a->strings["Order in list"] = "Ordne i liste"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Høyere tall vil synke mot bunnen av listen"; -$a->strings["Menu item not found."] = "Menyelement ble ikke funnet."; -$a->strings["Menu item deleted."] = "Menyelement slettet."; -$a->strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet."; -$a->strings["Edit Menu Element"] = "Endre menyelement"; -$a->strings["Set your current mood and tell your friends"] = "Angi ditt nåværende humør og fortell dine venner"; -$a->strings["Total votes"] = "Totalt antall stemmer"; -$a->strings["Average Rating"] = "Gjennomsnittlig vurdering"; -$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet."; -$a->strings["Remove This Channel"] = "Fjern denne kanalen"; -$a->strings["This channel will be completely removed from the network. "] = "Denne kanalen vil bli fullstendig fjernet fra nettverket."; -$a->strings["Remove this channel and all its clones from the network"] = "Fjern denne kanalen og alle dens kloner fra nettverket"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket"; -$a->strings["Help with this feature"] = "Hjelp med denne funksjonen"; -$a->strings["Layout Name"] = "Layout-navn"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; -$a->strings["The error message was:"] = "Feilmeldingen var:"; -$a->strings["Authentication failed."] = "Autentisering mislyktes."; -$a->strings["Remote Authentication"] = "Fjernautentisering"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; -$a->strings["Authenticate"] = "Autentiser"; -$a->strings["Unable to lookup recipient."] = "Ikke i stand til å slå opp mottaker."; -$a->strings["Unable to communicate with requested channel."] = "Ikke i stand til å kommunisere med forespurt kanal."; -$a->strings["Cannot verify requested channel."] = "Kan ikke bekrefte forespurt kanal."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Valgt kanal har restriksjoner for private meldinger. Sending feilet."; -$a->strings["Message deleted."] = "Melding slettet."; -$a->strings["Message recalled."] = "Innlegg tilbakekalt."; -$a->strings["Send Private Message"] = "Send privat melding"; -$a->strings["To:"] = "Til:"; -$a->strings["Subject:"] = "Emne:"; -$a->strings["Send"] = "Send"; -$a->strings["Message not found."] = "Melding ikke funnet."; -$a->strings["Delete message"] = "Slett melding"; -$a->strings["Recall message"] = "Tilbakekall innlegg"; -$a->strings["Message has been recalled."] = "Innlegget har blitt tilbakekalt."; -$a->strings["Private Conversation"] = "Privat samtale"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside."; -$a->strings["Send Reply"] = "Send svar"; -$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; -$a->strings["Discard"] = "Forkast"; -$a->strings["Please login."] = "Vennligst logg inn."; -$a->strings["No such group"] = "Gruppen finnes ikke"; -$a->strings["Search Results For:"] = "Søkeresultat for:"; -$a->strings["Collection is empty"] = "Samlingen er tom"; -$a->strings["Collection: "] = "Samling:"; -$a->strings["Connection: "] = "Forbindelse:"; -$a->strings["Invalid connection."] = "Ugyldig forbindelse."; -$a->strings["Add a Channel"] = "Legg til en kanal"; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "En kanal er din egen samling av relaterte web-sider. En kanal kan brukes til å samle sosiale nettverksprofiler, blogger, samtalegrupper og forum, kjendissider og mye mer. Du kan lage så mange kanaler som din tjenestetilbyder tillater."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; -$a->strings["Choose a short nickname"] = "Velg et kort kallenavn"; -$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 kallenavn brukes til å lage en kanaladresse som er enkel å huske (minner om en e-postadresse) og som du kan dele med andre."; -$a->strings["Or import an existing channel from another location"] = "Eller importerer en eksisterende kanal fra et annet sted."; -$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"] = "Vennligst velg en kanaltype (for eksempel sosialt nettverk eller forum for felleskap) og krav til personvern slik at vi kan velge de beste tillatelsene for deg."; -$a->strings["Channel Type"] = "Kanaltype"; -$a->strings["Read more about roles"] = "Les mer om roller"; -$a->strings["App installed."] = "App installert."; -$a->strings["Malformed app."] = "Feil oppsett for app-en."; -$a->strings["Embed code"] = "Innbyggingskode"; -$a->strings["Edit App"] = "Endre app"; -$a->strings["Create App"] = "Lag app"; -$a->strings["Name of app"] = "Navn på app"; -$a->strings["Location (URL) of app"] = "Plassering (URL) til app"; -$a->strings["Photo icon URL"] = "Bildeikon URL"; -$a->strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt"; -$a->strings["Version ID"] = "Versjons-ID"; -$a->strings["Price of app"] = "Pris på app"; -$a->strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app"; -$a->strings["sent you a private message"] = "sendte deg en privat melding"; -$a->strings["added your channel"] = "la til din kanal"; -$a->strings["posted an event"] = "la ut en hendelse"; -$a->strings["Bookmark added"] = "Bokmerke lagt til"; -$a->strings["My Bookmarks"] = "Mine bokmerker"; -$a->strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker"; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."; -$a->strings["Poll"] = "Spørring"; -$a->strings["View Results"] = "Vis resultater"; -$a->strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse."; +$a->strings["\$Projectname Server - Setup"] = "\$Projectname-tjener - oppsett"; +$a->strings["Could not connect to database."] = "Fikk ikke kontakt med databasen."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS."; +$a->strings["Could not create table."] = "Kunne ikke lage tabellen."; +$a->strings["Your site database has been installed."] = "Databasen til ditt nettsted har blitt installert."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les filen \"install/INSTALL.txt\"."; +$a->strings["System check"] = "Systemsjekk"; +$a->strings["Check again"] = "Sjekk igjen"; +$a->strings["Database connection"] = "Databaseforbindelse"; +$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "For å installere \$Projectname må du oppgi hvordan din database kan kontaktes."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter."; +$a->strings["Database Server Name"] = "Navn på databasetjener"; +$a->strings["Default is localhost"] = "Standard er localhost"; +$a->strings["Database Port"] = "Databaseport"; +$a->strings["Communication port number - use 0 for default"] = "Kommunikasjonsportnummer - bruk 0 for standard"; +$a->strings["Database Login Name"] = "Database innloggingsnavn"; +$a->strings["Database Login Password"] = "Database innloggingspassord"; +$a->strings["Database Name"] = "Databasenavn"; +$a->strings["Database Type"] = "Databasetype"; +$a->strings["Site administrator email address"] = "E-postadressen til administrator ved nettstedet"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet."; +$a->strings["Website URL"] = "Nettstedets URL"; +$a->strings["Please use SSL (https) URL if available."] = "Vennligst bruk SSL (https) URL hvis tilgjengelig."; +$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; +$a->strings["Site settings"] = "Nettstedets innstillinger"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (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."] = "Hvis du ikke har en kommandolinjeversjon av PHP installert på tjeneren, så vil du ikke kunne kjøre bakgrunnshenting via cron."; +$a->strings["PHP executable path"] = "PHP-kjørefilens sti"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv full sti til kjørefilen for PHP. Du kan la denne stå blank for å fortsette installasjonen."; +$a->strings["Command line PHP"] = "Kommandolinje PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" påskrudd."; +$a->strings["This is required for message delivery to work."] = "Dette er påkrevd for at meldingslevering skal virke."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Den største totale opplastingsstørrelsen du er tillatt er satt til %s. Filstørrelsen på en enkelt fil er satt til å maksimalt være %s. Du har lov til å laste opp inntil %d filer samtidig."; +$a->strings["You can adjust these settings in the servers php.ini."] = "Du kan justere disse innstillingene i tjenerens php.ini."; +$a->strings["PHP upload limits"] = "PHP opplastingsgrenser"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ved kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Lag krypteringsnøkler"; +$a->strings["libCurl PHP module"] = "libCurl PHP-modul"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP-modul"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP-modul"; +$a->strings["mysqli or postgres PHP module"] = "MySQLi eller Postgres PHP modul"; +$a->strings["mb_string PHP module"] = "mb_string PHP-modul"; +$a->strings["mcrypt PHP module"] = "mcrypt PHP-modul"; +$a->strings["xml PHP module"] = "XML PHP modul"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite-modul"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert."; +$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"] = "Feil: proc_open er påkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modul er påkrevd, men er ikke installert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modul med JPEG-støtte er påkrevd, men er ikke installert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modul er påkrevd, men er ikke installert."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Feil: mysqli eller postgres PHP modul er påkrevd, men ingen av dem er installert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modul er påkrevd, men er ikke installert."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Feil: mcrypt PHP-modul er påkrevd, men er ikke installert."; +$a->strings["Error: xml PHP module required for DAV but not installed."] = "Feil: XML PHP modul er påkrevet for DAV, men den er ikke installert."; +$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."] = "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til."; +$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."] = "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv 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."] = "På slutten av denne prosedyren vil vi gi deg en tekst til å lagre i en fil kalt .htconfig.php i toppkatalogen til din Red."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativt, så kan du hoppe over denne prosedyren og gjennomføre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php kan skrives til"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red bruker malmotoren Smarty3 for å gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for å framskynde gjengivelsen."; +$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."] = "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under Red sin hovedmappe."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne 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."] = "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder."; +$a->strings["%s is writable"] = "%s kan skrives til"; +$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 bruker lagringsmappen for å lagre opplastede filer. Webtjeneren trenger å ha skrivetilgang til lagringsmappen under Red sin toppnivåmappe."; +$a->strings["store is writable"] = "lageret kan skrives til"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet."; +$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!"] = "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub."; +$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."] = "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere."; +$a->strings["SSL certificate validation"] = "SSL sertifikat-kontroll"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:"; +$a->strings["Url rewrite is working"] = "URL rewrite virker"; +$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."] = "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener."; +$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller."; +$a->strings["

What next

"] = "

Hva gjenstår

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren."; $a->strings["Files: shared with me"] = "Filer: delt med meg"; +$a->strings["NEW"] = "NY"; $a->strings["Remove all files"] = "Fjern alle filer"; $a->strings["Remove this file"] = "Fjern denne filen"; -$a->strings["Schema Default"] = "Standard skjema"; -$a->strings["Sans-Serif"] = "Sans-Serif"; -$a->strings["Monospace"] = "Monospace"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."; +$a->strings["Profile not found."] = "Profilen ble ikke funnet."; +$a->strings["Profile deleted."] = "Profilen er slettet."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Ny profil opprettet."; +$a->strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; +$a->strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; +$a->strings["Profile Name is required."] = "Profilnavn er påkrevd."; +$a->strings["Marital Status"] = "Sivilstand"; +$a->strings["Romantic Partner"] = "Romantisk partner"; +$a->strings["Likes"] = "Liker"; +$a->strings["Dislikes"] = "Liker ikke"; +$a->strings["Work/Employment"] = "Arbeid/sysselsetting"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Politiske synspunkter"; +$a->strings["Sexual Preference"] = "Seksuelle preferanser"; +$a->strings["Homepage"] = "Hjemmeside"; +$a->strings["Interests"] = "Interesser"; +$a->strings["Profile updated."] = "Profilen er oppdatert."; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skjul kontakt-/vennelisten din fra de som ser på denne profilen?"; +$a->strings["Edit Profile Details"] = "Endre profildetaljer"; +$a->strings["View this profile"] = "Vis denne profilen"; +$a->strings["Change Profile Photo"] = "Endre profilbilde"; +$a->strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; +$a->strings["Clone this profile"] = "Klon denne profilen"; +$a->strings["Delete this profile"] = "Slett denne profilen"; +$a->strings["Import profile from file"] = "Importer profil fra fil"; +$a->strings["Export profile to file"] = "Eksporter profil til fil"; +$a->strings["Profile Name:"] = "Profilnavn:"; +$a->strings["Your Full Name:"] = "Ditt fulle navn:"; +$a->strings["Title/Description:"] = "Tittel/Beskrivelse:"; +$a->strings["Your Gender:"] = "Ditt kjønn:"; +$a->strings["Birthday :"] = "Fødselsdag:"; +$a->strings["Street Address:"] = "Gateadresse:"; +$a->strings["Locality/City:"] = "Sted/By:"; +$a->strings["Postal/Zip Code:"] = "Postnummer/ZIP-kode:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Region/fylke:"; +$a->strings[" Marital Status:"] = " Sivilstand:"; +$a->strings["Who: (if applicable)"] = "Hvem: (hvis det er aktuelt) "; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; +$a->strings["Since [date]:"] = "Siden [dato]:"; +$a->strings["Homepage URL:"] = "Hjemmeside URL:"; +$a->strings["Religious Views:"] = "Religiøse synspunkter:"; +$a->strings["Keywords:"] = "Nøkkelord:"; +$a->strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; +$a->strings["Used in directory listings"] = "Brukt i katalogoppføringer"; +$a->strings["Tell us about yourself..."] = "Fortell oss om deg selv..."; +$a->strings["Hobbies/Interests"] = "Hobbier/Interesser"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformasjon og sosiale nettverk"; +$a->strings["My other channels"] = "Mine andre kanaler"; +$a->strings["Musical interests"] = "Musikkinteresser"; +$a->strings["Books, literature"] = "Bøker, litteratur"; +$a->strings["Television"] = "TV/fjernsyn"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underholdning"; +$a->strings["Love/romance"] = "Kjærlighet/romantikk"; +$a->strings["Work/employment"] = "Arbeid/sysselsetting"; +$a->strings["School/education"] = "Skole/utdanning"; +$a->strings["This is your default profile."] = "Dette er din standardprofil."; +$a->strings["Age: "] = "Alder:"; +$a->strings["Edit/Manage Profiles"] = "Endre/håndter profiler"; +$a->strings["Add profile things"] = "Legg til profilting"; +$a->strings["Include desirable objects in your profile"] = "Inkluder ønskverdige objekter i din profil"; +$a->strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; +$a->strings["Profile Visibility Editor"] = "Endre profilsynlighet"; +$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; +$a->strings["Visible To"] = "Synlig for"; +$a->strings["Select a bookmark folder"] = "Velg en bokmerkemappe"; +$a->strings["Save Bookmark"] = "Lagre bokmerke"; +$a->strings["URL of bookmark"] = "URL-en til bokmerket"; +$a->strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn på bokmerkemappe"; +$a->strings["Import completed"] = "Import ferdig"; +$a->strings["Import Items"] = "Importer elementer"; +$a->strings["Use this form to import existing posts and content from an export file."] = "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil."; +$a->strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standardtema)"; $a->strings["Theme settings"] = "Temainnstillinger"; -$a->strings["Set scheme"] = "Angi skjema"; -$a->strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer"; -$a->strings["Set font face"] = "Angi skrifttype"; -$a->strings["Set iconset"] = "Angi ikonutvalg"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Angi stor skyggestørrelse, standard 15px 15px 15px"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Angi liten skyggestørrelse, standard 5px 5px 5px"; -$a->strings["Set shadow color, default #000"] = "Angi skyggefarge, standard #000"; -$a->strings["Set radius size, default 5px"] = "Angi radiusstørrelse, standard 5px"; -$a->strings["Set line-height for posts and comments"] = "Angi linjeavstand for innlegg og kommentarer"; -$a->strings["Set background image"] = "Angi bakgrunnsbilde"; -$a->strings["Set background attachment"] = "Angi bakgrunnsvedlegg"; -$a->strings["Set background color"] = "Angi bakgrunnsfarge"; -$a->strings["Set section background image"] = "Angi seksjonens bakgrunnsbilde"; -$a->strings["Set section background color"] = "Angi seksjonens bakgrunnsfarge"; -$a->strings["Set color of items - use hex"] = "Angi fargen til elementer - bruk hex"; -$a->strings["Set color of links - use hex"] = "Angi fargen til lenker - bruk hex"; -$a->strings["Set max-width for items. Default 400px"] = "Angi maksimal bredde for elementer. Standard 400px"; -$a->strings["Set min-width for items. Default 240px"] = "Angi minimumsbredde for elementer. Standard 240px"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Angi den generelle bredden for innpakking av innhold. Standard 48%"; -$a->strings["Set color of fonts - use hex"] = "Angi skriftfargen - bruk hex"; -$a->strings["Set background-size element"] = "Angi størrelsen på bakgrunnselementet"; -$a->strings["Item opacity"] = "Elementers dekkevne"; -$a->strings["Display post previews only"] = "Vis kun forhåndsvisning av innlegg"; -$a->strings["Display side bar on channel page"] = "Vis sidestolpe på kanalsiden"; -$a->strings["Colour of the navigation bar"] = "Fargen på navigasjonslinjen"; -$a->strings["Item float"] = "Elementflyt"; -$a->strings["Left offset of the section element"] = "Til venstre for seksjonselementet"; -$a->strings["Right offset of the section element"] = "Til høyre for seksjonselementet"; -$a->strings["Section width"] = "Seksjonsbredde"; -$a->strings["Left offset of the aside"] = "Til venstre for sidestolpen"; -$a->strings["Right offset of the aside element"] = "Til høyre for sidestolpen"; -$a->strings["Light (Hubzilla default)"] = "Lys (Hubzilla standard)"; $a->strings["Select scheme"] = "Velg skjema"; $a->strings["Narrow navbar"] = "Smal navigasjonslinje"; $a->strings["Navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge"; @@ -2089,12 +2146,13 @@ $a->strings["Set the basic color for item icons"] = "Angi grunnfargen for elemen $a->strings["Set the hover color for item icons"] = "Angi fargen til elementikoner ved berøring"; $a->strings["Set font-size for the entire application"] = "Angi skriftstørrelsen for hele programmet"; $a->strings["Example: 14px"] = "Eksempel: 14px"; +$a->strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer"; $a->strings["Set font-color for posts and comments"] = "Angi skriftfargen for innlegg og kommentarer"; $a->strings["Set radius of corners"] = "Angi hjørneradius"; $a->strings["Set shadow depth of photos"] = "Angi skyggedybden til bilder"; $a->strings["Set maximum width of content region in pixel"] = "Angi største bredde for innholdsregionen i pixler"; $a->strings["Leave empty for default width"] = "La feltet stå tomt for å bruke standard bredde"; -$a->strings["Center page content"] = "Midtstill sideinnhold"; +$a->strings["Left align page content"] = "Venstrejuster sideinnhold"; $a->strings["Set minimum opacity of nav bar - to hide it"] = "Angi minste dekkevne for navigasjonslinjen - for å skjule den"; $a->strings["Set size of conversation author photo"] = "Angi størrelsen for samtalens forfatterbilde"; $a->strings["Set size of followup author photos"] = "Angi størrelsen på forfatterbilder ved oppfølging"; @@ -2106,6 +2164,6 @@ $a->strings["Remember me"] = "Husk meg"; $a->strings["Forgot your password?"] = "Glemt passordet ditt?"; $a->strings["toggle mobile"] = "Skru på mobil"; $a->strings["Website SSL certificate is not valid. Please correct."] = "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette."; -$a->strings["[red] Website SSL error for %s"] = "[red] SSL-feil ved nettsted hos %s"; +$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] SSL-feil ved nettsted hos %s"; $a->strings["Cron/Scheduled tasks not running."] = "Cron/planlagte oppgaver kjører ikke."; -$a->strings["[red] Cron tasks not running on %s"] = "[red] Cron-oppgaver kjører ikke på %s"; +$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron-oppgaver kjører ikke på %s"; -- cgit v1.2.3 From 68ea1d02897cde5d9588c12489b4c8a1508c522d Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Thu, 1 Oct 2015 21:59:12 +0200 Subject: Changed deploy script - removed hot_deploy and changed poller to every 10 minutes rather than 5 minutes. --- .openshift/action_hooks/deploy | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy index 29b3ab9c7..7b746ece1 100755 --- a/.openshift/action_hooks/deploy +++ b/.openshift/action_hooks/deploy @@ -140,7 +140,7 @@ echo ".htaccess symlink created" echo "Check for the poller at .openshift/cron/minutely/poller , if not created - create it" if [ ! -f ${OPENSHIFT_REPO_DIR}.openshift/cron/minutely/poller ]; then -printf '%s\n' '#!/bin/bash' 'if [ ! -f $OPENSHIFT_DATA_DIR/last_run ]; then' ' touch $OPENSHIFT_DATA_DIR/last_run' 'fi' 'if [[ $(find $OPENSHIFT_DATA_DIR/last_run -mmin +4) ]]; then #run every 5 mins' ' rm -f $OPENSHIFT_DATA_DIR/last_run' ' touch $OPENSHIFT_DATA_DIR/last_run' ' # The command(s) that you want to run every 5 minutes' 'cd /var/lib/openshift/${OPENSHIFT_APP_UUID}/app-root/repo; /opt/rh/php54/root/usr/bin/php include/poller.php' 'fi' >${OPENSHIFT_REPO_DIR}.openshift/cron/minutely/poller +printf '%s\n' '#!/bin/bash' 'if [ ! -f $OPENSHIFT_DATA_DIR/last_run ]; then' ' touch $OPENSHIFT_DATA_DIR/last_run' 'fi' 'if [[ $(find $OPENSHIFT_DATA_DIR/last_run -mmin +9) ]]; then #run every 10 mins' ' rm -f $OPENSHIFT_DATA_DIR/last_run' ' touch $OPENSHIFT_DATA_DIR/last_run' ' # The command(s) that you want to run every 5 minutes' 'cd /var/lib/openshift/${OPENSHIFT_APP_UUID}/app-root/repo; /opt/rh/php54/root/usr/bin/php include/poller.php' 'fi' >${OPENSHIFT_REPO_DIR}.openshift/cron/minutely/poller echo "Done creating file .openshift/cron/minutely/poller" else @@ -161,17 +161,17 @@ echo "chmod done, permissions set to 777 on poller script." #### -echo "Check for the hot deploy marker at .openshift/markers/hot_deploy , if not created - create it" +### echo "Check for the hot deploy marker at .openshift/markers/hot_deploy , if not created - create it" -if [ ! -f ${OPENSHIFT_REPO_DIR}.openshift/markers/hot_deploy ]; then +### if [ ! -f ${OPENSHIFT_REPO_DIR}.openshift/markers/hot_deploy ]; then -touch ${OPENSHIFT_REPO_DIR}.openshift/markers/hot_deploy +### touch ${OPENSHIFT_REPO_DIR}.openshift/markers/hot_deploy -echo "Done creating file .openshift/markers/hot_deploy" +### echo "Done creating file .openshift/markers/hot_deploy" -else +### else -echo "The hot deploy marker already exists" +### echo "The hot deploy marker already exists" fi -- cgit v1.2.3 From f64acadd58d4aab4a93a1f128f8d4e702869016a Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Thu, 1 Oct 2015 22:03:12 +0200 Subject: Small fix to deploy --- .openshift/action_hooks/deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy index 7b746ece1..f97772902 100755 --- a/.openshift/action_hooks/deploy +++ b/.openshift/action_hooks/deploy @@ -173,6 +173,6 @@ echo "chmod done, permissions set to 777 on poller script." ### echo "The hot deploy marker already exists" -fi +### fi #### -- cgit v1.2.3 From f23f8f7f5df4f0a7b03c688a911bfdadbff0951b Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Thu, 1 Oct 2015 22:08:38 +0200 Subject: Small fix to deploy --- .openshift/action_hooks/deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy index f97772902..1256cc0c1 100755 --- a/.openshift/action_hooks/deploy +++ b/.openshift/action_hooks/deploy @@ -140,7 +140,7 @@ echo ".htaccess symlink created" echo "Check for the poller at .openshift/cron/minutely/poller , if not created - create it" if [ ! -f ${OPENSHIFT_REPO_DIR}.openshift/cron/minutely/poller ]; then -printf '%s\n' '#!/bin/bash' 'if [ ! -f $OPENSHIFT_DATA_DIR/last_run ]; then' ' touch $OPENSHIFT_DATA_DIR/last_run' 'fi' 'if [[ $(find $OPENSHIFT_DATA_DIR/last_run -mmin +9) ]]; then #run every 10 mins' ' rm -f $OPENSHIFT_DATA_DIR/last_run' ' touch $OPENSHIFT_DATA_DIR/last_run' ' # The command(s) that you want to run every 5 minutes' 'cd /var/lib/openshift/${OPENSHIFT_APP_UUID}/app-root/repo; /opt/rh/php54/root/usr/bin/php include/poller.php' 'fi' >${OPENSHIFT_REPO_DIR}.openshift/cron/minutely/poller +printf '%s\n' '#!/bin/bash' 'if [ ! -f $OPENSHIFT_DATA_DIR/last_run ]; then' ' touch $OPENSHIFT_DATA_DIR/last_run' 'fi' 'if [[ $(find $OPENSHIFT_DATA_DIR/last_run -mmin +9) ]]; then #run every 10 mins' ' rm -f $OPENSHIFT_DATA_DIR/last_run' ' touch $OPENSHIFT_DATA_DIR/last_run' ' # The command(s) that you want to run every 10 minutes' 'cd /var/lib/openshift/${OPENSHIFT_APP_UUID}/app-root/repo; /opt/rh/php54/root/usr/bin/php include/poller.php' 'fi' >${OPENSHIFT_REPO_DIR}.openshift/cron/minutely/poller echo "Done creating file .openshift/cron/minutely/poller" else -- cgit v1.2.3 From de4b5978c325012f225b50e69a1997c4a361ff9b Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Oct 2015 16:55:15 -0700 Subject: update cert authorities --- library/cacert.pem | 2 +- library/certs/cacert.pem | 2 +- version.inc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/library/cacert.pem b/library/cacert.pem index f71ec3f84..739128024 100644 --- a/library/cacert.pem +++ b/library/cacert.pem @@ -1,7 +1,7 @@ ## ## Bundle of CA Root Certificates ## -## Certificate data from Mozilla as of: Wed Apr 22 03:12:04 2015 +## Certificate data from Mozilla as of: Wed Sep 2 18:30:34 2015 ## ## This is a bundle of X.509 certificates of public Certificate Authorities ## (CA). These were automatically extracted from Mozilla's root certificates diff --git a/library/certs/cacert.pem b/library/certs/cacert.pem index 440e52d0a..1ff34f9b5 100644 --- a/library/certs/cacert.pem +++ b/library/certs/cacert.pem @@ -1,7 +1,7 @@ ## ## Bundle of CA Root Certificates ## -## Certificate data from Mozilla as of: Wed Apr 22 03:12:04 2015 +## Certificate data from Mozilla as of: Wed Sep 2 18:30:34 2015 ## ## This is a bundle of X.509 certificates of public Certificate Authorities ## (CA). These were automatically extracted from Mozilla's root certificates diff --git a/version.inc b/version.inc index d3462488c..e3915d929 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-09-30.1171 +2015-10-01.1172 -- cgit v1.2.3 From 63eb0e3a38c2e1d0548c1beb3260613f3e5503a6 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Oct 2015 17:28:03 -0700 Subject: allow additional uses for xtags --- include/taxonomy.php | 2 +- include/zot.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/taxonomy.php b/include/taxonomy.php index a5da190d4..36490291d 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -178,7 +178,7 @@ function dir_tagadelic($count = 0) { $count = intval($count); // Fetch tags - $r = q("select xtag_term, count(xtag_term) as total from xtag + $r = q("select xtag_term, count(xtag_term) as total from xtag where xtag_flags = 0 group by xtag_term order by total desc %s", ((intval($count)) ? "limit $count" : '') ); diff --git a/include/zot.php b/include/zot.php index fe51d1a7c..31fd4dbdd 100644 --- a/include/zot.php +++ b/include/zot.php @@ -918,7 +918,7 @@ function import_xchan($arr,$ud_flags = UPDATE_FLAGS_UPDATED, $ud_arr = null) { $r = q("delete from xprof where xprof_hash = '%s'", dbesc($xchan_hash) ); - $r = q("delete from xtag where xtag_hash = '%s'", + $r = q("delete from xtag where xtag_hash = '%s' and xtag_flags = 0", dbesc($xchan_hash) ); } @@ -2585,7 +2585,7 @@ function import_directory_profile($hash, $profile, $addr, $ud_flags = UPDATE_FLA function import_directory_keywords($hash, $keywords) { $existing = array(); - $r = q("select * from xtag where xtag_hash = '%s'", + $r = q("select * from xtag where xtag_hash = '%s' and xtag_flags = 0", dbesc($hash) ); @@ -2603,14 +2603,14 @@ function import_directory_keywords($hash, $keywords) { foreach($existing as $x) { if(! in_array($x, $clean)) - $r = q("delete from xtag where xtag_hash = '%s' and xtag_term = '%s'", + $r = q("delete from xtag where xtag_hash = '%s' and xtag_term = '%s' and xtag_flags = 0", dbesc($hash), dbesc($x) ); } foreach($clean as $x) { if(! in_array($x, $existing)) { - $r = q("insert into xtag ( xtag_hash, xtag_term) values ( '%s' ,'%s' )", + $r = q("insert into xtag ( xtag_hash, xtag_term, xtag_flags) values ( '%s' ,'%s', 0 )", dbesc($hash), dbesc($x) ); -- cgit v1.2.3 From ebe374d572174e33dc3c4ea1e747efa88957f3be Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Oct 2015 19:49:06 -0700 Subject: notification changes to support testdrive --- include/account.php | 2 ++ include/enotify.php | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/include/account.php b/include/account.php index 5926e05c1..b3a520fd4 100644 --- a/include/account.php +++ b/include/account.php @@ -217,6 +217,8 @@ function create_account($arr) { $result['email'] = $email; $result['password'] = $password; + call_hooks('register_account',$result); + return $result; } diff --git a/include/enotify.php b/include/enotify.php index d0228bf50..6f4083155 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -317,7 +317,9 @@ function notification($params) { 'sitelink' => $sitelink, 'tsitelink' => $tsitelink, 'hsitelink' => $hsitelink, - 'itemlink' => $itemlink + 'itemlink' => $itemlink, + 'sender' => $sender, + 'recipient' => $recip ); call_hooks('enotify', $h); -- cgit v1.2.3 From 982ff8733fc4c66833c94bb9d4c135f6fb3ed7fe Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Oct 2015 19:54:28 -0700 Subject: one more change --- include/Contact.php | 2 ++ include/enotify.php | 1 + 2 files changed, 3 insertions(+) diff --git a/include/Contact.php b/include/Contact.php index 008574d8f..8e22c608e 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -319,6 +319,8 @@ function channel_remove($channel_id, $local = true, $unset_session=true) { q("DELETE FROM `pconfig` WHERE `uid` = %d", intval($channel_id)); q("DELETE FROM `spam` WHERE `uid` = %d", intval($channel_id)); + // @FIXME At this stage we need to remove the file resources located under /store/$nickname + q("delete from abook where abook_xchan = '%s' and abook_self = 1 ", dbesc($channel['channel_hash']) diff --git a/include/enotify.php b/include/enotify.php index 6f4083155..80afe8ed6 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -315,6 +315,7 @@ function notification($params) { 'epreamble' => $epreamble, 'body' => $body, 'sitelink' => $sitelink, + 'sitename' => $sitename, 'tsitelink' => $tsitelink, 'hsitelink' => $hsitelink, 'itemlink' => $itemlink, -- cgit v1.2.3 From 1da3828a09485a9b2bc6113cbab9ca9ca483ffc0 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Oct 2015 20:22:03 -0700 Subject: issue with resetting post perms to default audience - not sticking. --- mod/item.php | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/mod/item.php b/mod/item.php index 93f24bd1a..7488e709b 100644 --- a/mod/item.php +++ b/mod/item.php @@ -372,12 +372,23 @@ function item_post(&$a) { } else { - if((! $walltowall) && - ((array_key_exists('contact_allow',$_REQUEST)) - || (array_key_exists('group_allow',$_REQUEST)) - || (array_key_exists('contact_deny',$_REQUEST)) - || (array_key_exists('group_deny',$_REQUEST)))) { - $acl->set_from_array($_REQUEST); + if(! $walltowall) { + if((array_key_exists('contact_allow',$_REQUEST)) + || (array_key_exists('group_allow',$_REQUEST)) + || (array_key_exists('contact_deny',$_REQUEST)) + || (array_key_exists('group_deny',$_REQUEST))) { + $acl->set_from_array($_REQUEST); + } + elseif(! $api_source) { + + // if no ACL has been defined and we aren't using the API, the form + // didn't send us any parameters. This means there's no ACL or it has + // been reset to the default audience. + // If $api_source is set and there are no ACL parameters, we default + // to the channel permissions which were set in the ACL contructor. + + $acl->set(array('allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '')); + } } -- cgit v1.2.3 From a895a0d79e0063a9b57e03f523ed400f94f10efe Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 2 Oct 2015 11:41:37 +0200 Subject: private mail template and css fixes --- view/css/mod_mail.css | 25 +++++++++++++------------ view/tpl/mail_conv.tpl | 10 ++++++++-- 2 files changed, 21 insertions(+), 14 deletions(-) diff --git a/view/css/mod_mail.css b/view/css/mod_mail.css index f0f4458fa..cabfb299f 100644 --- a/view/css/mod_mail.css +++ b/view/css/mod_mail.css @@ -27,24 +27,25 @@ /* message/id */ -.mail-conv-outside-wrapper { - display: table; - table-layout: fixed; -} - .mail-conv-sender { - display: table-cell; - vertical-align: top; + float: left; margin-right: 10px; + margin-bottom: 10px; +} + +.mail-conv-sender img{ + width: 32px; + height: 32px; } .mail-conv-sender-name { font-weight: bold; } -.mail-conv-detail { - display: table-cell; - vertical-align: top; - width: 100%; - padding-left: 10px; +.mail-conv-body { + margin-bottom: 10px; +} + +.mail-conv-body img { + max-width: 100%; } diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index 09333ae11..d850df8c2 100755 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -4,9 +4,14 @@
{{if $mail.is_recalled}}{{$mail.is_recalled}}{{/if}} - +
{{$mail.date}}
-
{{$mail.body}}
+
+
+
+
+ {{$mail.body}} +
{{if $mail.can_recall}} @@ -14,6 +19,7 @@ {{/if}}
+
-- cgit v1.2.3 From 3bed94f4ad6c6a1740bf5ee779ca55a5bd00bdbb Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 2 Oct 2015 12:20:33 +0200 Subject: move mail item buttons/menu to dropdown --- view/tpl/mail_conv.tpl | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index d850df8c2..44059f720 100755 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -10,15 +10,33 @@
- {{$mail.body}} + {{$mail.body}}
-
- {{if $mail.can_recall}} - - - {{/if}} - + + +
-- cgit v1.2.3 From 9b8aa8d09ec4415ad7da8d07779c1e6b719d159e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 2 Oct 2015 12:26:12 +0200 Subject: whitespace --- view/tpl/mail_conv.tpl | 3 --- 1 file changed, 3 deletions(-) diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index 44059f720..9c0fda483 100755 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -13,7 +13,6 @@ {{$mail.body}}
- -
-- cgit v1.2.3 From b1e0018b743cf9b4ae18283e89aa4b7020ba0b76 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 2 Oct 2015 04:50:58 -0700 Subject: string update --- util/hmessages.po | 780 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 399 insertions(+), 381 deletions(-) diff --git a/util/hmessages.po b/util/hmessages.po index 338635b74..8a877b695 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2015-09-23.1164\n" +"Project-Id-Version: 2015-10-01.1172\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-26 22:48-0700\n" +"POT-Creation-Date: 2015-10-02 00:03-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -301,7 +301,7 @@ msgstr "" #: ../../include/attach.php:348 ../../include/attach.php:355 #: ../../include/attach.php:433 ../../include/attach.php:840 #: ../../include/attach.php:911 ../../include/attach.php:1064 -#: ../../include/items.php:4342 ../../mod/achievements.php:30 +#: ../../include/items.php:4348 ../../mod/achievements.php:30 #: ../../mod/fsuggest.php:78 ../../mod/authtest.php:13 #: ../../mod/bookmarks.php:48 ../../mod/block.php:22 ../../mod/block.php:72 #: ../../mod/id.php:71 ../../mod/like.php:177 ../../mod/common.php:35 @@ -310,19 +310,19 @@ msgstr "" #: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 #: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 #: ../../mod/poke.php:133 ../../mod/network.php:12 ../../mod/chat.php:91 -#: ../../mod/chat.php:96 ../../mod/message.php:16 ../../mod/channel.php:100 -#: ../../mod/channel.php:215 ../../mod/channel.php:255 +#: ../../mod/chat.php:96 ../../mod/rate.php:111 ../../mod/channel.php:100 +#: ../../mod/channel.php:214 ../../mod/channel.php:254 #: ../../mod/editpost.php:13 ../../mod/editblock.php:65 ../../mod/item.php:206 -#: ../../mod/item.php:214 ../../mod/item.php:992 ../../mod/appman.php:66 +#: ../../mod/item.php:214 ../../mod/item.php:1003 ../../mod/appman.php:66 #: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/menu.php:74 #: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/new_channel.php:68 #: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 -#: ../../mod/pdledit.php:21 ../../mod/photos.php:70 ../../mod/rate.php:110 -#: ../../mod/events.php:256 ../../mod/profile_photo.php:338 -#: ../../mod/profile_photo.php:351 ../../mod/mail.php:114 -#: ../../mod/webpages.php:69 ../../mod/register.php:72 ../../mod/blocks.php:69 -#: ../../mod/blocks.php:76 ../../mod/service_limits.php:7 -#: ../../mod/sources.php:66 ../../mod/regmod.php:17 ../../mod/thing.php:271 +#: ../../mod/pdledit.php:21 ../../mod/photos.php:70 ../../mod/events.php:256 +#: ../../mod/profile_photo.php:338 ../../mod/profile_photo.php:351 +#: ../../mod/message.php:16 ../../mod/webpages.php:69 +#: ../../mod/register.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76 +#: ../../mod/service_limits.php:7 ../../mod/sources.php:66 +#: ../../mod/regmod.php:17 ../../mod/mail.php:114 ../../mod/thing.php:271 #: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 #: ../../mod/invite.php:104 ../../mod/viewsrc.php:14 #: ../../mod/settings.php:565 ../../mod/manage.php:6 ../../mod/api.php:26 @@ -355,7 +355,7 @@ msgstr "" msgid "Required" msgstr "" -#: ../../include/datetime.php:262 ../../boot.php:2306 +#: ../../include/datetime.php:262 ../../boot.php:2312 msgid "never" msgstr "" @@ -756,7 +756,7 @@ msgid "Rate This Channel (this is public)" msgstr "" #: ../../include/js_strings.php:20 ../../mod/connedit.php:667 -#: ../../mod/rate.php:156 +#: ../../mod/rate.php:157 msgid "Rating" msgstr "" @@ -768,20 +768,21 @@ msgstr "" #: ../../mod/fsuggest.php:108 ../../mod/mitem.php:231 #: ../../mod/connedit.php:688 ../../mod/mood.php:135 ../../mod/pconfig.php:108 #: ../../mod/filestorage.php:156 ../../mod/poke.php:171 ../../mod/chat.php:181 -#: ../../mod/chat.php:209 ../../mod/admin.php:411 ../../mod/admin.php:776 -#: ../../mod/admin.php:940 ../../mod/admin.php:1072 ../../mod/admin.php:1266 -#: ../../mod/admin.php:1351 ../../mod/appman.php:99 ../../mod/pdledit.php:58 -#: ../../mod/photos.php:598 ../../mod/photos.php:969 ../../mod/photos.php:1009 -#: ../../mod/photos.php:1127 ../../mod/rate.php:167 ../../mod/events.php:534 -#: ../../mod/events.php:710 ../../mod/mail.php:364 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/import.php:511 ../../mod/thing.php:313 -#: ../../mod/thing.php:359 ../../mod/invite.php:142 ../../mod/settings.php:583 -#: ../../mod/settings.php:695 ../../mod/settings.php:723 -#: ../../mod/settings.php:746 ../../mod/settings.php:831 -#: ../../mod/settings.php:1020 ../../mod/xchan.php:11 ../../mod/group.php:81 -#: ../../mod/connect.php:93 ../../mod/locs.php:108 ../../mod/setup.php:331 -#: ../../mod/setup.php:371 ../../mod/profiles.php:667 -#: ../../mod/import_items.php:122 ../../view/theme/redbasic/php/config.php:99 +#: ../../mod/chat.php:209 ../../mod/rate.php:168 ../../mod/admin.php:411 +#: ../../mod/admin.php:776 ../../mod/admin.php:940 ../../mod/admin.php:1072 +#: ../../mod/admin.php:1266 ../../mod/admin.php:1351 ../../mod/appman.php:99 +#: ../../mod/pdledit.php:58 ../../mod/photos.php:598 ../../mod/photos.php:969 +#: ../../mod/photos.php:1009 ../../mod/photos.php:1127 +#: ../../mod/events.php:534 ../../mod/events.php:710 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/mail.php:380 ../../mod/import.php:511 +#: ../../mod/thing.php:313 ../../mod/thing.php:359 ../../mod/invite.php:142 +#: ../../mod/settings.php:583 ../../mod/settings.php:695 +#: ../../mod/settings.php:723 ../../mod/settings.php:746 +#: ../../mod/settings.php:831 ../../mod/settings.php:1020 +#: ../../mod/xchan.php:11 ../../mod/group.php:81 ../../mod/connect.php:93 +#: ../../mod/locs.php:108 ../../mod/setup.php:331 ../../mod/setup.php:371 +#: ../../mod/profiles.php:667 ../../mod/import_items.php:122 +#: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "" @@ -1083,7 +1084,7 @@ msgstr "" #: ../../include/contact_selectors.php:79 ../../mod/id.php:15 #: ../../mod/id.php:16 ../../mod/admin.php:779 ../../mod/admin.php:788 -#: ../../boot.php:1499 +#: ../../boot.php:1505 msgid "Email" msgstr "" @@ -1306,8 +1307,8 @@ msgstr "" #: ../../include/conversation.php:739 ../../include/conversation.php:1212 #: ../../include/ItemObject.php:366 ../../mod/editpost.php:130 -#: ../../mod/editblock.php:150 ../../mod/photos.php:990 ../../mod/mail.php:237 -#: ../../mod/mail.php:365 ../../mod/editlayout.php:148 +#: ../../mod/editblock.php:150 ../../mod/photos.php:990 ../../mod/mail.php:249 +#: ../../mod/mail.php:381 ../../mod/editlayout.php:148 #: ../../mod/editwebpage.php:190 msgid "Please wait" msgstr "" @@ -1410,8 +1411,8 @@ msgstr "" msgid "Visible to everybody" msgstr "" -#: ../../include/conversation.php:1144 ../../mod/mail.php:170 -#: ../../mod/mail.php:299 +#: ../../include/conversation.php:1144 ../../mod/mail.php:182 +#: ../../mod/mail.php:311 msgid "Please enter a link URL:" msgstr "" @@ -1436,7 +1437,7 @@ msgid "Where are you right now?" msgstr "" #: ../../include/conversation.php:1150 ../../mod/editpost.php:54 -#: ../../mod/mail.php:171 ../../mod/mail.php:300 +#: ../../mod/mail.php:183 ../../mod/mail.php:312 msgid "Expires YYYY-MM-DD HH:MM" msgstr "" @@ -1493,7 +1494,7 @@ msgid "Code" msgstr "" #: ../../include/conversation.php:1189 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:142 ../../mod/mail.php:234 ../../mod/mail.php:361 +#: ../../mod/editblock.php:142 ../../mod/mail.php:246 ../../mod/mail.php:377 #: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:182 msgid "Upload photo" msgstr "" @@ -1503,7 +1504,7 @@ msgid "upload photo" msgstr "" #: ../../include/conversation.php:1191 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:143 ../../mod/mail.php:235 ../../mod/mail.php:362 +#: ../../mod/editblock.php:143 ../../mod/mail.php:247 ../../mod/mail.php:378 #: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 msgid "Attach file" msgstr "" @@ -1513,7 +1514,7 @@ msgid "attach file" msgstr "" #: ../../include/conversation.php:1193 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:144 ../../mod/mail.php:236 ../../mod/mail.php:363 +#: ../../mod/editblock.php:144 ../../mod/mail.php:248 ../../mod/mail.php:379 #: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 msgid "Insert web link" msgstr "" @@ -1596,13 +1597,13 @@ msgid "Example: bob@example.com, mary@example.com" msgstr "" #: ../../include/conversation.php:1237 ../../mod/editpost.php:156 -#: ../../mod/editblock.php:176 ../../mod/mail.php:241 ../../mod/mail.php:368 +#: ../../mod/editblock.php:176 ../../mod/mail.php:253 ../../mod/mail.php:384 #: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 msgid "Set expiration date" msgstr "" #: ../../include/conversation.php:1239 ../../include/ItemObject.php:686 -#: ../../mod/editpost.php:158 ../../mod/mail.php:243 ../../mod/mail.php:370 +#: ../../mod/editpost.php:158 ../../mod/mail.php:255 ../../mod/mail.php:386 msgid "Encrypt text" msgstr "" @@ -1732,8 +1733,8 @@ msgstr "" msgid "View all" msgstr "" -#: ../../include/conversation.php:1703 ../../include/taxonomy.php:403 -#: ../../include/identity.php:1252 ../../include/ItemObject.php:179 +#: ../../include/conversation.php:1703 ../../include/identity.php:1252 +#: ../../include/taxonomy.php:403 ../../include/ItemObject.php:179 #: ../../mod/photos.php:1047 msgctxt "noun" msgid "Like" @@ -2007,7 +2008,7 @@ msgstr "" msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/enotify.php:508 +#: ../../include/enotify.php:511 msgid "[Red:Notify]" msgstr "" @@ -2015,8 +2016,8 @@ msgstr "" msgid "view full size" msgstr "" -#: ../../include/network.php:1660 ../../include/account.php:314 -#: ../../include/account.php:341 ../../include/account.php:401 +#: ../../include/network.php:1660 ../../include/account.php:316 +#: ../../include/account.php:343 ../../include/account.php:403 msgid "Administrator" msgstr "" @@ -2728,7 +2729,7 @@ msgstr "" msgid "Address Book" msgstr "" -#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1497 +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1503 msgid "Login" msgstr "" @@ -2839,6 +2840,79 @@ msgstr "" msgid "Login failed." msgstr "" +#: ../../include/items.php:423 ../../mod/like.php:280 ../../mod/dreport.php:6 +#: ../../mod/dreport.php:45 ../../mod/subthread.php:49 ../../mod/group.php:68 +#: ../../mod/profperm.php:23 ../../mod/import_items.php:114 +#: ../../index.php:360 +msgid "Permission denied" +msgstr "" + +#: ../../include/items.php:1128 ../../include/items.php:1174 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1371 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1373 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1375 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1377 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1379 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1381 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1383 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1385 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:4269 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/admin.php:127 +#: ../../mod/admin.php:979 ../../mod/admin.php:1179 ../../mod/thing.php:86 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:4778 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "" + +#: ../../include/items.php:4794 +msgid "Collection is empty." +msgstr "" + +#: ../../include/items.php:4801 +#, php-format +msgid "Collection: %s" +msgstr "" + +#: ../../include/items.php:4811 ../../mod/connedit.php:658 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../include/items.php:4813 +msgid "Connection not found." +msgstr "" + #: ../../include/bb2diaspora.php:373 msgid "Attachments:" msgstr "" @@ -2938,47 +3012,47 @@ msgstr "" msgid "Failed to store account information." msgstr "" -#: ../../include/account.php:246 +#: ../../include/account.php:248 #, php-format msgid "Registration confirmation for %s" msgstr "" -#: ../../include/account.php:312 +#: ../../include/account.php:314 #, php-format msgid "Registration request at %s" msgstr "" -#: ../../include/account.php:336 +#: ../../include/account.php:338 msgid "your registration password" msgstr "" -#: ../../include/account.php:339 ../../include/account.php:399 +#: ../../include/account.php:341 ../../include/account.php:401 #, php-format msgid "Registration details for %s" msgstr "" -#: ../../include/account.php:408 +#: ../../include/account.php:410 msgid "Account approved." msgstr "" -#: ../../include/account.php:447 +#: ../../include/account.php:449 #, php-format msgid "Registration revoked for %s" msgstr "" -#: ../../include/account.php:492 +#: ../../include/account.php:494 msgid "Account verified. Please login." msgstr "" -#: ../../include/account.php:705 ../../include/account.php:707 +#: ../../include/account.php:707 ../../include/account.php:709 msgid "Click here to upgrade." msgstr "" -#: ../../include/account.php:713 +#: ../../include/account.php:715 msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/account.php:718 +#: ../../include/account.php:720 msgid "This action is not available under your subscription plan." msgstr "" @@ -3014,7 +3088,7 @@ msgstr "" msgid "Cannot connect to yourself." msgstr "" -#: ../../include/security.php:345 +#: ../../include/security.php:381 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." @@ -3129,85 +3203,6 @@ msgstr "" msgid "add" msgstr "" -#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:294 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:315 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:315 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:316 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:316 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 -msgid "like" -msgstr "" - -#: ../../include/taxonomy.php:317 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 -msgid "dislike" -msgstr "" - -#: ../../include/taxonomy.php:318 -msgid "dislikes" -msgstr "" - -#: ../../include/dir_fns.php:126 -msgid "Directory Options" -msgstr "" - -#: ../../include/dir_fns.php:128 -msgid "Safe Mode" -msgstr "" - -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 -#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 -#: ../../mod/mitem.php:229 ../../mod/connedit.php:631 -#: ../../mod/connedit.php:659 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:386 ../../mod/menu.php:96 -#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 -#: ../../mod/api.php:106 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 -msgid "No" -msgstr "" - -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 -#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 -#: ../../mod/mitem.php:229 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:388 ../../mod/menu.php:96 -#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 -#: ../../mod/api.php:105 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 -msgid "Yes" -msgstr "" - -#: ../../include/dir_fns.php:129 -msgid "Public Forums Only" -msgstr "" - -#: ../../include/dir_fns.php:130 -msgid "This Website Only" -msgstr "" - #: ../../include/identity.php:32 msgid "Unable to obtain identity information from database" msgstr "" @@ -3463,6 +3458,63 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:294 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:315 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:315 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:316 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:316 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 +msgid "like" +msgstr "" + +#: ../../include/taxonomy.php:317 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "" + +#: ../../include/taxonomy.php:318 +msgid "dislikes" +msgstr "" + +#: ../../include/zot.php:683 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:699 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2235 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:3543 +msgid "invalid target signature" +msgstr "" + #: ../../include/ItemObject.php:130 msgid "Save to Folder" msgstr "" @@ -3598,78 +3650,6 @@ msgstr "" msgid "Video" msgstr "" -#: ../../include/items.php:423 ../../mod/like.php:280 ../../mod/dreport.php:6 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/import_items.php:114 ../../index.php:360 -msgid "Permission denied" -msgstr "" - -#: ../../include/items.php:1128 ../../include/items.php:1174 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1371 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1373 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1375 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1377 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1379 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1381 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1383 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1385 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:4263 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/admin.php:127 -#: ../../mod/admin.php:979 ../../mod/admin.php:1179 ../../mod/thing.php:86 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "" - -#: ../../include/items.php:4772 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Collection not found." -msgstr "" - -#: ../../include/items.php:4788 -msgid "Collection is empty." -msgstr "" - -#: ../../include/items.php:4795 -#, php-format -msgid "Collection: %s" -msgstr "" - -#: ../../include/items.php:4805 ../../mod/connedit.php:658 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../include/items.php:4807 -msgid "Connection not found." -msgstr "" - #: ../../include/widgets.php:91 ../../include/nav.php:157 #: ../../mod/apps.php:36 msgid "Apps" @@ -3825,139 +3805,122 @@ msgstr "" msgid "No messages." msgstr "" -#: ../../include/widgets.php:648 +#: ../../include/widgets.php:649 msgid "Delete conversation" msgstr "" -#: ../../include/widgets.php:650 +#: ../../include/widgets.php:651 msgid "D, d M Y - g:i A" msgstr "" -#: ../../include/widgets.php:738 +#: ../../include/widgets.php:740 msgid "Chat Rooms" msgstr "" -#: ../../include/widgets.php:758 +#: ../../include/widgets.php:760 msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/widgets.php:778 +#: ../../include/widgets.php:780 msgid "Suggested Chatrooms" msgstr "" -#: ../../include/widgets.php:905 ../../include/widgets.php:963 +#: ../../include/widgets.php:907 ../../include/widgets.php:965 msgid "photo/image" msgstr "" -#: ../../include/widgets.php:1058 ../../include/widgets.php:1060 +#: ../../include/widgets.php:1060 ../../include/widgets.php:1062 msgid "Rate Me" msgstr "" -#: ../../include/widgets.php:1064 +#: ../../include/widgets.php:1066 msgid "View Ratings" msgstr "" -#: ../../include/widgets.php:1075 +#: ../../include/widgets.php:1077 msgid "Public Hubs" msgstr "" -#: ../../include/widgets.php:1123 +#: ../../include/widgets.php:1125 msgid "Forums" msgstr "" -#: ../../include/widgets.php:1150 +#: ../../include/widgets.php:1152 msgid "Tasks" msgstr "" -#: ../../include/widgets.php:1159 +#: ../../include/widgets.php:1161 msgid "Documentation" msgstr "" -#: ../../include/widgets.php:1161 +#: ../../include/widgets.php:1163 msgid "Project/Site Information" msgstr "" -#: ../../include/widgets.php:1162 +#: ../../include/widgets.php:1164 msgid "For Members" msgstr "" -#: ../../include/widgets.php:1163 +#: ../../include/widgets.php:1165 msgid "For Administrators" msgstr "" -#: ../../include/widgets.php:1164 +#: ../../include/widgets.php:1166 msgid "For Developers" msgstr "" -#: ../../include/widgets.php:1189 ../../mod/admin.php:410 +#: ../../include/widgets.php:1191 ../../mod/admin.php:410 msgid "Site" msgstr "" -#: ../../include/widgets.php:1190 +#: ../../include/widgets.php:1192 msgid "Accounts" msgstr "" -#: ../../include/widgets.php:1191 ../../mod/admin.php:939 +#: ../../include/widgets.php:1193 ../../mod/admin.php:939 msgid "Channels" msgstr "" -#: ../../include/widgets.php:1192 ../../mod/admin.php:1031 +#: ../../include/widgets.php:1194 ../../mod/admin.php:1031 #: ../../mod/admin.php:1071 msgid "Plugins" msgstr "" -#: ../../include/widgets.php:1193 ../../mod/admin.php:1231 +#: ../../include/widgets.php:1195 ../../mod/admin.php:1231 #: ../../mod/admin.php:1265 msgid "Themes" msgstr "" -#: ../../include/widgets.php:1194 +#: ../../include/widgets.php:1196 msgid "Inspect queue" msgstr "" -#: ../../include/widgets.php:1195 +#: ../../include/widgets.php:1197 msgid "Profile Config" msgstr "" -#: ../../include/widgets.php:1196 +#: ../../include/widgets.php:1198 msgid "DB updates" msgstr "" -#: ../../include/widgets.php:1214 ../../include/widgets.php:1220 +#: ../../include/widgets.php:1216 ../../include/widgets.php:1222 #: ../../mod/admin.php:1350 msgid "Logs" msgstr "" -#: ../../include/widgets.php:1218 ../../include/nav.php:210 +#: ../../include/widgets.php:1220 ../../include/nav.php:210 msgid "Admin" msgstr "" -#: ../../include/widgets.php:1219 +#: ../../include/widgets.php:1221 msgid "Plugin Features" msgstr "" -#: ../../include/widgets.php:1221 +#: ../../include/widgets.php:1223 msgid "User registrations waiting for confirmation" msgstr "" -#: ../../include/zot.php:677 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:693 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:2213 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/zot.php:3511 -msgid "invalid target signature" -msgstr "" - -#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1496 +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1502 msgid "Logout" msgstr "" @@ -4030,7 +3993,7 @@ msgstr "" msgid "Home Page" msgstr "" -#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1473 +#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1479 msgid "Register" msgstr "" @@ -4138,6 +4101,45 @@ msgstr "" msgid "Please wait..." msgstr "" +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/connedit.php:631 +#: ../../mod/connedit.php:659 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:386 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:106 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1507 +msgid "No" +msgstr "" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:388 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:105 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1507 +msgid "Yes" +msgstr "" + +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "" + #: ../../mod/achievements.php:34 msgid "Some blurb about what to do when you're new here" msgstr "" @@ -5069,6 +5071,10 @@ msgstr "" msgid "Notify your contacts about this file" msgstr "" +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "" + #: ../../mod/layouts.php:121 ../../mod/layouts.php:179 #: ../../mod/editlayout.php:161 msgid "Layout Name" @@ -5189,8 +5195,21 @@ msgstr "" msgid "Search results for: %s" msgstr "" -#: ../../mod/message.php:34 -msgid "Conversation removed." +#: ../../mod/rate.php:158 +msgid "Website:" +msgstr "" + +#: ../../mod/rate.php:161 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "" + +#: ../../mod/rate.php:162 +msgid "Rating (this information is public)" +msgstr "" + +#: ../../mod/rate.php:163 +msgid "Optionally explain your rating (this information is public)" msgstr "" #: ../../mod/channel.php:97 @@ -5230,47 +5249,63 @@ msgstr "" msgid "Edit post" msgstr "" -#: ../../mod/dreport.php:15 +#: ../../mod/dreport.php:23 msgid "Invalid message" msgstr "" -#: ../../mod/dreport.php:25 +#: ../../mod/dreport.php:55 msgid "no results" msgstr "" -#: ../../mod/dreport.php:30 +#: ../../mod/dreport.php:60 #, php-format msgid "Delivery report for %1$s" msgstr "" -#: ../../mod/dreport.php:39 +#: ../../mod/dreport.php:74 msgid "channel sync processed" msgstr "" -#: ../../mod/dreport.php:43 +#: ../../mod/dreport.php:78 msgid "queued" msgstr "" -#: ../../mod/dreport.php:47 +#: ../../mod/dreport.php:82 msgid "posted" msgstr "" -#: ../../mod/dreport.php:51 +#: ../../mod/dreport.php:86 msgid "accepted for delivery" msgstr "" -#: ../../mod/dreport.php:55 +#: ../../mod/dreport.php:90 msgid "updated" msgstr "" -#: ../../mod/dreport.php:58 +#: ../../mod/dreport.php:93 msgid "update ignored" msgstr "" -#: ../../mod/dreport.php:61 +#: ../../mod/dreport.php:96 msgid "permission denied" msgstr "" +#: ../../mod/dreport.php:100 +msgid "recipient not found" +msgstr "" + +#: ../../mod/dreport.php:103 +msgid "mail recalled" +msgstr "" + +#: ../../mod/dreport.php:106 +msgid "duplicate mail received" +msgstr "" + +#: ../../mod/dreport.php:109 +msgid "mail delivered" +msgstr "" + #: ../../mod/editblock.php:118 msgid "Delete block?" msgstr "" @@ -5292,28 +5327,28 @@ msgstr "" msgid "Unable to locate original post." msgstr "" -#: ../../mod/item.php:407 +#: ../../mod/item.php:418 msgid "Empty post discarded." msgstr "" -#: ../../mod/item.php:447 +#: ../../mod/item.php:458 msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/item.php:896 +#: ../../mod/item.php:907 msgid "System error. Post not saved." msgstr "" -#: ../../mod/item.php:1163 +#: ../../mod/item.php:1174 msgid "Unable to obtain post information from database." msgstr "" -#: ../../mod/item.php:1170 +#: ../../mod/item.php:1181 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/item.php:1177 +#: ../../mod/item.php:1188 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" @@ -6331,7 +6366,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:86 ../../boot.php:1505 +#: ../../mod/lostpass.php:86 ../../boot.php:1511 msgid "Password Reset" msgstr "" @@ -6543,23 +6578,6 @@ msgstr "" msgid "$Projectname channel" msgstr "" -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "" - -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "" - -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "" - #: ../../mod/events.php:21 msgid "Calendar entries imported." msgstr "" @@ -6818,84 +6836,6 @@ msgstr "" msgid "Description: " msgstr "" -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "" - -#: ../../mod/mail.php:138 -msgid "Message deleted." -msgstr "" - -#: ../../mod/mail.php:154 -msgid "Message recalled." -msgstr "" - -#: ../../mod/mail.php:221 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/mail.php:222 ../../mod/mail.php:352 -msgid "To:" -msgstr "" - -#: ../../mod/mail.php:227 ../../mod/mail.php:341 ../../mod/mail.php:354 -msgid "Subject:" -msgstr "" - -#: ../../mod/mail.php:231 ../../mod/mail.php:357 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "" - -#: ../../mod/mail.php:238 -msgid "Send" -msgstr "" - -#: ../../mod/mail.php:322 -msgid "Delete message" -msgstr "" - -#: ../../mod/mail.php:323 -msgid "Recall message" -msgstr "" - -#: ../../mod/mail.php:325 -msgid "Message has been recalled." -msgstr "" - -#: ../../mod/mail.php:345 -msgid "Delete Conversation" -msgstr "" - -#: ../../mod/mail.php:347 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/mail.php:351 -msgid "Send Reply" -msgstr "" - #: ../../mod/webpages.php:191 msgid "Page Title" msgstr "" @@ -7022,6 +6962,10 @@ msgstr "" msgid "Item not available." msgstr "" +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "" + #: ../../mod/sources.php:32 msgid "Failed to create source. No channel selected." msgstr "" @@ -7126,8 +7070,82 @@ msgstr "" msgid "Authenticate" msgstr "" -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "" + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "" + +#: ../../mod/mail.php:155 +msgid "Message recalled." +msgstr "" + +#: ../../mod/mail.php:168 +msgid "Conversation removed." +msgstr "" + +#: ../../mod/mail.php:233 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/mail.php:234 ../../mod/mail.php:368 +msgid "To:" +msgstr "" + +#: ../../mod/mail.php:239 ../../mod/mail.php:370 +msgid "Subject:" +msgstr "" + +#: ../../mod/mail.php:243 ../../mod/mail.php:373 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "" + +#: ../../mod/mail.php:250 +msgid "Send" +msgstr "" + +#: ../../mod/mail.php:336 +msgid "Delete message" +msgstr "" + +#: ../../mod/mail.php:337 +msgid "Delivery report" +msgstr "" + +#: ../../mod/mail.php:338 +msgid "Recall message" +msgstr "" + +#: ../../mod/mail.php:340 +msgid "Message has been recalled." +msgstr "" + +#: ../../mod/mail.php:361 +msgid "Delete Conversation" +msgstr "" + +#: ../../mod/mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/mail.php:367 +msgid "Send Reply" msgstr "" #: ../../mod/siteinfo.php:111 @@ -9120,51 +9138,51 @@ msgstr "" msgid "Set size of followup author photos" msgstr "" -#: ../../boot.php:1302 +#: ../../boot.php:1308 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1305 +#: ../../boot.php:1311 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1472 +#: ../../boot.php:1478 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "" -#: ../../boot.php:1500 +#: ../../boot.php:1506 msgid "Password" msgstr "" -#: ../../boot.php:1501 +#: ../../boot.php:1507 msgid "Remember me" msgstr "" -#: ../../boot.php:1504 +#: ../../boot.php:1510 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2130 +#: ../../boot.php:2136 msgid "toggle mobile" msgstr "" -#: ../../boot.php:2265 +#: ../../boot.php:2271 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2268 +#: ../../boot.php:2274 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "" -#: ../../boot.php:2305 +#: ../../boot.php:2311 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2309 +#: ../../boot.php:2315 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "" -- cgit v1.2.3 From 6171d164d7ba7270abed3e1ce1d817efd7b83026 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 2 Oct 2015 04:51:57 -0700 Subject: need full path to deliver_hooks.php --- include/notifier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/notifier.php b/include/notifier.php index db1aa9690..80f243452 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -687,7 +687,7 @@ function notifier_run($argv, $argc){ if($normal_mode) { $x = q("select * from hook where hook = 'notifier_normal'"); if($x) - proc_run('php','deliver_hooks.php', $target_item['id']); + proc_run('php','include/deliver_hooks.php', $target_item['id']); } if($deliveries) { -- cgit v1.2.3 From 5ba39fef9af977fe9b92fef1b6d582138aee7d4b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 2 Oct 2015 17:51:37 +0200 Subject: private mail compositor changes --- mod/mail.php | 14 +++-- view/css/mod_mail.css | 33 ++---------- view/theme/redbasic/css/style.css | 1 + view/tpl/mail_conv.tpl | 1 + view/tpl/msg-header.tpl | 11 ---- view/tpl/prv_message.tpl | 111 +++++++++++++++++++++----------------- 6 files changed, 74 insertions(+), 97 deletions(-) diff --git a/mod/mail.php b/mod/mail.php index 525127a71..54663b3ae 100644 --- a/mod/mail.php +++ b/mod/mail.php @@ -226,10 +226,11 @@ function mail_content(&$a) { // the ugly select box - $select = contact_select('messageto','message-to-select', $preselect, 4, true, false, false, 10); + //$select = contact_select('messageto','message-to-select', $preselect, 4, true, false, false, 10); $tpl = get_markup_template('prv_message.tpl'); $o .= replace_macros($tpl,array( + '$new' => true, '$header' => t('Send Private Message'), '$to' => t('To:'), '$showinputs' => 'true', @@ -347,10 +348,6 @@ function mail_content(&$a) { $recp = (($message['from_xchan'] === $channel['channel_hash']) ? 'to' : 'from'); -// FIXME - move this HTML to template - - $select = $message[$recp]['xchan_name'] . ''; - $parent = ''; $tpl = get_markup_template('mail_display.tpl'); $o = replace_macros($tpl, array( '$mailbox' => $mailbox, @@ -366,14 +363,15 @@ function mail_content(&$a) { // reply '$header' => t('Send Reply'), '$to' => t('To:'), - '$showinputs' => '', + '$reply' => true, '$subject' => t('Subject:'), '$subjtxt' => $message['title'], '$readonly' => 'readonly="readonly"', - '$yourmessage' => t('Your message:'), + '$yourmessage' => sprintf(t('Your message for %s'), $message[$recp]['xchan_name']), '$text' => '', '$select' => $select, - '$parent' => $parent, + '$parent' => $message['parent_mid'], + '$recphash' => $message[$recp]['xchan_hash'], '$upload' => t('Upload photo'), '$attach' => t('Attach file'), '$insert' => t('Insert web link'), diff --git a/view/css/mod_mail.css b/view/css/mod_mail.css index cabfb299f..5fd646765 100644 --- a/view/css/mod_mail.css +++ b/view/css/mod_mail.css @@ -1,32 +1,3 @@ -/* message/new */ - -#prvmail-to-label, -#prvmail-subject-label, -#prvmail-expires-label, -#prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: left; - margin-top: 10px; - margin-right: 30px; -} - -#prvmail-upload-wrapper, -#prvmail-attach-wrapper, -#prvmail-link-wrapper, -#prvmail-expire-wrapper, -#prvmail-encrypt-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - cursor: pointer; -} - -/* message/id */ - .mail-conv-sender { float: left; margin-right: 10px; @@ -49,3 +20,7 @@ .mail-conv-body img { max-width: 100%; } + +#prvmail-rotator { + margin: 15px; +} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 2ff6c1eb4..b51fea6cf 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1722,6 +1722,7 @@ img.mail-conv-sender-photo { } .wall-item-content, +.mail-conv-body, .page-body { font-size: $font_size; clear: both; diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index 9c0fda483..4f54f1a6a 100755 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -11,6 +11,7 @@
{{$mail.body}} +