diff --git a/.openshift/README.md b/.openshift/README.md new file mode 100644 index 000000000..535b9bdd1 --- /dev/null +++ b/.openshift/README.md @@ -0,0 +1,94 @@ +#Hubzilla on OpenShift +You will notice a new .openshift folder when you fetch from upstream, i.e. from https://github.com/redmatrix/hubzilla.git , which contains a deploy script to set up Hubzilla on OpenShift. + +Create an account on OpenShift, then use the registration e-mail and password to create your first Hubzilla instance. Install git and RedHat's command line tools - rhc - if you have not already done so. + +``` +rhc app-create your_app_name php-5.4 mysql-5.5 cron phpmyadmin --namespace your_domain --from-code https://github.com/redmatrix/hubzilla.git -l your@email.address -p your_account_password +``` + +Make a note of the database username and password OpenShift creates for your instance, and use these at https://your_app_name-your_domain.rhcloud.com/ to complete the setup. + +NOTE: PostgreSQL is NOT supported by the deploy script yet. + +Update +To update, consider your own workflow first. I have forked Hubzilla code into my GitHub account to be able to try things out, this remote repo is called origin. Here is how I fetch new code from upstream, merge into my local repo, then push the updated code both into origin and the remote repo called openshift. + +``` +git fetch upstream;git checkout master;git merge upstream/master;git push origin;git push openshift HEAD +``` + +##Administration +Symptoms of need for MySQL database administration are: +- you can visit your domain and see the Hubzilla frontpage, but trying to login throws you back to login. This can mean your session table is marked as crashed. +- you can login, but your channel posts are not visible. This can mean your item table is marked as crashed. +- you can login and you can see your channel posts, but apparently nobody is getting your posts, comments, likes and so on. This can mean your outq table is marked as crashed. + +You can check your OpenShift logs by doing + +``` +rhc tail -a your_app_name -n your_domain -l your@email.address -p your_account_password +``` + +and you might be able to confirm the above suspicions about crashed tables, or other problems you need to fix. + +###How to fix crashed tables in MySQL +Using MySQL and the MyISAM database engine can result in table indexes coming out of sync, and you have at least two options for fixing tables marked as crashed. +- Use the database username and password OpenShift creates for your instance at https://your_app_name-your_domain.rhcloud.com/phpmyadmin/ to login via the web into your phpMyAdmin web interface, click your database in the left column, in the right column scroll down to the bottom of the list of tables and click the checkbox for marking all tables, then select Check tables from the drop down menu. This will check the tables for problems, and you can then checkmark only those tables with problems, and select Repair table from the same drop down menu at the bottom. +- You can login to your instance with SSH - see OpenShift for details - then + +``` +cd mysql/data/your_database +myisamchk -r *.MYI +``` + +or if you get + +``` +Can't create new tempfile +``` + +check your OpenShift's gear quota with + +``` +quota -gus +``` + +and if you are short on space, then locally (not SSH) do + +``` +rhc app-tidy your_app_name -l your_login -p your_password +``` + +to have rhc delete temporary files and OpenShift logs to free space first, then check the size of your local repo dir and execute + +``` +git gc +``` + +against it and check the size again, and then to minimize your remote repo connect via SSH to your application gear and execute the same command against it by changing to the remote repo directory - your repo should be in + +``` +~/git/your_app_name.git +``` + +(if not, do find -size +1M to find it), then do + +``` +cd ~/mysql/data/yourdatabase +myisamchk -r -v -f*.MYI +``` + +and hopefully your database tables are now okay. + +##NOTES +Note 1: definitely DO turn off feeds and discovery by default if you are on the Free or Bronze plan on OpenShift with a single 1Gb gear by visiting https://your-app-name.rhcloud.com/admin/site when logged in as administrator of your Hubzilla site. +Note 2: DO add the above defaults into the deploy script. +Note 3: DO add git gc to the deploy script to clean up git. +Note 4: MAYBE DO add myisamchk - only checking? to the end of the deploy script. + +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/action_hooks/deploy b/.openshift/action_hooks/deploy new file mode 100755 index 000000000..dafde2d69 --- /dev/null +++ b/.openshift/action_hooks/deploy @@ -0,0 +1,185 @@ +#!/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 .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}.htconfig.php ]; + +then + +cp ${OPENSHIFT_REPO_DIR}.htconfig.php ${OPENSHIFT_DATA_DIR}.htconfig.php + +echo ".htconfig.php copied." + +else + +echo "Looks like the .htconfig.php file is already there, we won't overwrite it." + +fi + +#### + +# symlink the .htconfig.php file. + +echo "Create sym link for .htconfig.php" + +ln -sf ${OPENSHIFT_DATA_DIR}.htconfig.php ${OPENSHIFT_REPO_DIR}.htconfig.php + +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" + +#### + +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 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 + +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_DIR}.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/markers/hot_deploy" + +### else + +### echo "The hot deploy marker already exists" + +### fi + +#### + +# Hubzilla configuration - changes to default settings +# to make Hubzilla on OpenShift a more pleasant experience +cd ${OPENSHIFT_REPO_DIR} +util/config system expire_delivery_reports 3 +util/config system feed_contacts 0 +util/config system disable_discover_tab 1 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/README.md b/README.md index 7fbc14219..bd95cd674 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +![Hubzilla](images/hubzilla-banner.png) Hubzilla - Community Server =========================== @@ -5,7 +6,6 @@ Hubzilla - Community Server Help us redefine the web - using integrated and united community websites. -------------------------------------------------------------------------- -![Hubzilla](images/hubzilla_house_arrows.png) **What are Hubs?** diff --git a/app/grid.apd b/app/grid.apd new file mode 100644 index 000000000..bc77aa6f1 --- /dev/null +++ b/app/grid.apd @@ -0,0 +1,4 @@ +url: $baseurl/network +requires: local_channel +name: Grid +photo: $baseurl/images/hubzilla_logo_6.png diff --git a/app/matrix.apd b/app/matrix.apd deleted file mode 100644 index 68188bfd3..000000000 --- a/app/matrix.apd +++ /dev/null @@ -1,4 +0,0 @@ -url: $baseurl/network -requires: local_channel -name: Matrix -photo: $baseurl/app/matrix.png diff --git a/app/matrix.png b/app/matrix.png deleted file mode 100644 index aba2c35dd..000000000 Binary files a/app/matrix.png and /dev/null differ diff --git a/boot.php b/boot.php index 3afb7704b..b66606ca7 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'H'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1156 ); +define ( 'DB_UPDATE_VERSION', 1157 ); /** * @brief Constant with a HTML line break. diff --git a/doc/Hubzilla_on_OpenShift.bb b/doc/Hubzilla_on_OpenShift.bb new file mode 100644 index 000000000..f33eee98c --- /dev/null +++ b/doc/Hubzilla_on_OpenShift.bb @@ -0,0 +1,103 @@ +[b]Hubzilla on OpenShift[/b] +You will notice a new .openshift folder when you fetch from upstream, i.e. from [url=https://github.com/redmatrix/hubzilla.git]https://github.com/redmatrix/hubzilla.git[/url] , which contains a deploy script to set up Hubzilla on OpenShift. + +Create an account on OpenShift, then use the registration e-mail and password to create your first Hubzilla instance. Install git and RedHat's command line tools - rhc - if you have not already done so. + +[code]rhc app-create your_app_name php-5.4 mysql-5.5 cron phpmyadmin --namespace your_domain --from-code https://github.com/redmatrix/hubzilla.git -l your@email.address -p your_account_password +[/code] + +Make a note of the database username and password OpenShift creates for your instance, and use these at [url=https://your_app_name-your_domain.rhcloud.com/]https://your_app_name-your_domain.rhcloud.com/[/url] to complete the setup. + +NOTE: PostgreSQL is NOT supported by the deploy script yet, see [zrl=https://zot-mor.rhcloud.com/display/3c7035f2a6febf87057d84ea0ae511223e9b38dc27913177bc0df053edecac7c@zot-mor.rhcloud.com?zid=haakon%40zot-mor.rhcloud.com]this thread[/zrl]. + +[b]Update[/b] +To update, consider your own workflow first. I have forked Hubzilla code into my GitHub account to be able to try things out, this remote repo is called origin. Here is how I fetch new code from upstream, merge into my local repo, then push the updated code both into origin and the remote repo called openshift. + +[code]git fetch upstream;git checkout master;git merge upstream/master;git push origin;git push openshift HEAD +[/code] + +[b]Administration[/b] +Symptoms of need for MySQL database administration are: +[list] +[*] you can visit your domain and see the Hubzilla frontpage, but trying to login throws you back to login. This can mean your session table is marked as crashed. +[*] you can login, but your channel posts are not visible. This can mean your item table is marked as crashed. +[*] you can login and you can see your channel posts, but apparently nobody is getting your posts, comments, likes and so on. This can mean your outq table is marked as crashed. +[/list] + +You can check your OpenShift logs by doing + +[code] +rhc tail -a your_app_name -n your_domain -l your@email.address -p your_account_password +[/code] + +and you might be able to confirm the above suspicions about crashed tables, or other problems you need to fix. + +[b]How to fix crashed tables in MySQL[/b] +Using MySQL and the MyISAM database engine can result in table indexes coming out of sync, and you have at least two options for fixing tables marked as crashed. +[list] +[*] Use the database username and password OpenShift creates for your instance at [url=https://your_app_name-your_domain.rhcloud.com/phpmyadmin/]https://your_app_name-your_domain.rhcloud.com/phpmyadmin/[/url] to login via the web into your phpMyAdmin web interface, click your database in the left column, in the right column scroll down to the bottom of the list of tables and click the checkbox for marking all tables, then select Check tables from the drop down menu. This will check the tables for problems, and you can then checkmark only those tables with problems, and select Repair table from the same drop down menu at the bottom. +[*] You can port-forward the MySQL database service to your own machine and use the MySQL client called mysqlcheck to check, repair and optimize your database or individual database tables without stopping the MySQL service on OpenShift. Run the following in two separate console windows. + +To port-forward do + +[code]rhc port-forward -a your_app_name -n your_domain -l your@email.address -p your_password[/code] + +in one console window, then do either -o for optimize, -c for check or -r for repair, like this + +[code]mysqlcheck -h 127.0.0.1 -r your_app_name -u your_app_admin_name -p[/code] + +and give the app's password at the prompt. If all goes well you should see a number of table names with an OK behind them. + +You can now +[code]Press CTRL-C to terminate port forwarding[/code] +[*] You can do + +[code]rhc cartridge stop mysql-5.5 -a your_app_name[/code] + +to stop the MySQL service running in your app on OpenShift before running myisamchk - which should only be run when MySQL is stopped, and then +login to your instance with SSH - see OpenShift for details - and do + +[code]cd mysql/data/your_database +myisamchk -r *.MYI[/code] + +or if you get + +[code]Can't create new tempfile[/code] + +check your OpenShift's gear quota with + +[code]quota -gus[/code] + +and if you are short on space, then locally (not SSH) do + +[code]rhc app-tidy your_app_name -l your_login -p your_password[/code] + +to have rhc delete temporary files and OpenShift logs to free space first, then check the size of your local repo dir and execute + +[code]git gc[/code] + +against it and check the size again, and then to minimize your remote repo connect via SSH to your application gear and execute the same command against it by changing to the remote repo directory - your repo should be in + +[code]~/git/your_app_name.git[/code] + +(if not, do find -size +1M to find it), then do + +[code] +cd +cd mysql/data/yourdatabase +myisamchk -r -v -f*.MYI[/code] + +and hopefully your database tables are now okay. +You can now start the MySQL service on OpenShift by locally doing + +[code]rhc cartridge start mysql-5.5 -a your_app_name[/code] +[/list] + +[b]Notes[/b] +[list] +[*] definitely DO turn off feeds and discovery by default and limit delivery reports from 30 days to 3 days if you are on the Free or Bronze plan on OpenShift with a single 1Gb gear by visiting [observer.baseurl]/admin/site when logged in as administrator of your Hubzilla site. +[*] The above defaults have been added into the deploy script. +[*] DO add git gc to the deploy script +[*] MAYBE DO add myisamchk - only checking? to the end of the deploy script. +[*] mysqlcheck is similar in function to myisamchk, but works differently. The main operational difference is that mysqlcheck must be used when the mysqld server is running, whereas myisamchk should be used when it is not. The benefit of using mysqlcheck is that you do not have to stop the server to perform table maintenance - this means this documenation should be fixed. +[/list] diff --git a/doc/Widgets.md b/doc/Widgets.md index a225f5ef3..7acd9241b 100644 --- a/doc/Widgets.md +++ b/doc/Widgets.md @@ -88,7 +88,7 @@ Some/many of these widgets have restrictions which may restrict the type of page * photo_rand - display a random photo from one of your photo albums. Photo permissions are honoured * args: * album - album name (very strongly recommended if you have lots of photos) - * scale - typically 0 (original size), 1 (640px), or 2 (320px) + * scale - typically 0 (original size), 1 (1024px), 2, (640px), or 3 (320px) * style - CSS style string * channel_id - if not your own
 
diff --git a/doc/admins.bb b/doc/admins.bb index d4e90c8a3..c77b004a4 100644 --- a/doc/admins.bb +++ b/doc/admins.bb @@ -4,9 +4,11 @@ [zrl=[baseurl]/help/install]Install[/zrl] [zrl=[baseurl]/help/red2pi]Installing $Projectname on the Raspberry Pi[/zrl] +[zrl=[baseurl]/help/Hubzilla_on_OpenShift]$Projectname on OpenShift[/zrl] [zrl=[baseurl]/help/troubleshooting]Troubleshooting Tips[/zrl] [zrl=[baseurl]/help/hidden_configs]Tweaking $Projectname's Hidden Configurations[/zrl] [zrl=[baseurl]/help/faq_admins]FAQ For Admins[/zrl] [zrl=[baseurl]/help/service_classes]Service Classes[/zrl] +[zrl=[baseurl]/help/theme_management]Theme Management[/zrl] diff --git a/doc/api_posting.bb b/doc/api_posting.bb index fa9558268..c708ad143 100644 --- a/doc/api_posting.bb +++ b/doc/api_posting.bb @@ -4,19 +4,20 @@ The API allows you to post to the red# by HTTP POST request. Below you see an ex [code]curl -ssl -u [color=blue]$E-Mail[/color]:[color=blue]$Password[/color] -d "[color=blue]$Parameters[/color]" [url][observer=1][observer.baseurl][/observer][observer=0]example.com[/observer]/api/statuses/update [/url][/code] -[table][tr][td]$E-Mail:[/td][td]The E-Mail Adress you use to login[/td][/tr] +[table][tr][td]$E-Mail:[/td][td]The E-Mail Address you use to login, or the channel nickname (without the hostname)[/td][/tr] [tr][td]$Password:[/td][td]The Password you use to login[/td][/tr] [tr][td]$Parameters:[/td][td]That's the interesting part, here you insert the content you want to send using the following parameters:[/td][/tr][/table] [ul] [*]title: the title of the posting -[*]channel: the channel you want to post to +[*]channel: the channel you want to post to (do not use this parameter with HTTP Basic auth) [*]category: a comma-seperated list of categories for the posting [*]status: the content of the posting, formatted with BBCode OR [*]htmlstatus:the content of the posting, formatted in HTML. [/ul] +To post to a specific channel, replace the email address with the channel nickname. If you supply the channel parameter, it has to match the "email", but is superfluous anyway. Instead of calling [observer=1][observer.baseurl][/observer][observer=0]example.com[/observer]/api/statuses/update which returns a json (you could also add .json on the end to clarify) output, you can use [observer.baseurl]/api/statuses/update.xml to get an xml formatted return. diff --git a/doc/theme_management.bb b/doc/theme_management.bb new file mode 100644 index 000000000..5691f7c48 --- /dev/null +++ b/doc/theme_management.bb @@ -0,0 +1,10 @@ +[h1]Theme Management[/h1] +$Projectname allows hub admins to easily add and update themes hosted in common git repositories. +[h2]Add new theme repo to your hub[/h2] +1. Navigate to your hub web root +[code]root@hub:~# cd /var/www[/code] +2. Add the theme repo and give it a name +[code][nobb]root@hub:/var/www# util/add_theme_repo https://github.com/username/theme-repo.git UniqueThemeRepoName[/nobb][/code] +[h2]Update existing theme repo[/h2] +Update the repo by using +[code]root@hub:/var/www# util/update_theme_repo UniqueThemeRepoName[/code] diff --git a/images/hubzilla-banner.png b/images/hubzilla-banner.png new file mode 100644 index 000000000..055a2a19e Binary files /dev/null and b/images/hubzilla-banner.png differ 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/ItemObject.php b/include/ItemObject.php index 5296a1cf0..ee431dccb 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -278,13 +278,21 @@ class Item extends BaseObject { $children = $this->get_children(); + $is_photo = ((($item['resource_type'] == 'photo') && (feature_enabled($conv->get_profile_owner(),'large_photos'))) ? true : false); + + $has_tags = (($body['tags'] || $body['categories'] || $body['mentions'] || $body['attachments'] || $body['folders']) ? true : false); + $tmp_item = array( 'template' => $this->get_template(), 'mode' => $mode, 'type' => implode("",array_slice(explode("/",$item['verb']),-1)), - 'tags' => array(), - 'body' => $body, - 'text' => strip_tags($body), + 'body' => $body['html'], + 'tags' => $body['tags'], + 'categories' => $body['categories'], + 'mentions' => $body['mentions'], + 'attachments' => $body['attachments'], + 'folders' => $body['folders'], + 'text' => strip_tags($body['html']), 'id' => $this->get_id(), 'mid' => $item['mid'], 'isevent' => $isevent, @@ -325,6 +333,8 @@ class Item extends BaseObject { 'owner_url' => $this->get_owner_url(), 'owner_photo' => $this->get_owner_photo(), 'owner_name' => $this->get_owner_name(), + 'is_photo' => $is_photo, + 'has_tags' => $has_tags, // Item toolbar buttons 'like' => $like, 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/api.php b/include/api.php index a77bf15f7..16dbb569b 100644 --- a/include/api.php +++ b/include/api.php @@ -8,6 +8,7 @@ require_once("html2plain.php"); require_once('include/security.php'); require_once('include/photos.php'); require_once('include/items.php'); +require_once('include/attach.php'); /* * @@ -619,6 +620,36 @@ require_once('include/items.php'); } api_register_func('api/red/channel/stream','api_channel_stream', true); + function api_attach_list(&$a,$type) { + logger('api_user: ' . api_user()); + json_return_and_die(attach_list_files(api_user(),get_observer_hash(),'','','','created asc')); + } + api_register_func('api/red/files','api_attach_list', true); + + + function api_file_detail(&$a,$type) { + if (api_user()===false) return false; + if(! $_REQUEST['file_id']) return false; + $r = q("select * from attach where uid = %d and hash = '%s' limit 1", + intval(api_user()), + dbesc($_REQUEST['file_id']) + ); + if($r) { + if($r[0]['is_dir']) + $r[0]['data'] = ''; + elseif(intval($r[0]['os_storage'])) + $r[0]['data'] = base64_encode(file_get_contents(dbunescbin($r[0]['data']))); + else + $r[0]['data'] = base64_encode(dbunescbin($r[0]['data'])); + + $ret = array('attach' => $r[0]); + json_return_and_die($ret); + } + killme(); + } + + api_register_func('api/red/file', 'api_file_detail', true); + function api_albums(&$a,$type) { json_return_and_die(photos_albums_list($a->get_channel(),$a->get_observer())); @@ -1456,7 +1487,7 @@ require_once('include/items.php'); * */ -// FIXME + function api_statuses_mentions(&$a, $type){ if (api_user()===false) return false; @@ -1481,39 +1512,25 @@ require_once('include/items.php'); $myurl = str_replace(array('www.','.'),array('','\\.'),$myurl); $diasp_url = str_replace('/channel/','/u/',$myurl); - if (get_config('system','use_fulltext_engine')) - $sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where (MATCH(`author-link`) AGAINST ('".'"%s"'."' in boolean mode) or MATCH(`tag`) AGAINST ('".'"%s"'."' in boolean mode) or MATCH(tag) AGAINST ('".'"%s"'."' in boolean mode))) ", - dbesc(protect_sprintf($myurl)), - dbesc(protect_sprintf($myurl)), - dbesc(protect_sprintf($diasp_url)) - ); - else - $sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where ( `author-link` like '%s' or `tag` like '%s' or tag like '%s' )) ", - dbesc(protect_sprintf('%' . $myurl)), - dbesc(protect_sprintf('%' . $myurl . ']%')), - dbesc(protect_sprintf('%' . $diasp_url . ']%')) - ); - + $sql_extra .= " AND item_mentionsme = 1 "; if ($max_id > 0) - $sql_extra .= ' AND `item`.`id` <= '.intval($max_id); + $sql_extra .= " AND item.id <= " . intval($max_id) . " "; - $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, - `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, - `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn_id`, `contact`.`self`, - `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid` - FROM `item`, `contact` - WHERE `item`.`uid` = %d - AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0 - AND `contact`.`id` = `item`.`contact-id` - AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 - $sql_extra - AND `item`.`id`>%d - ORDER BY `item`.`received` DESC LIMIT %d ,%d ", - intval($user_info['uid']), + require_once('include/security.php'); + $item_normal = item_normal(); + + $r = q("select * from item where uid = " . intval(api_user()) . " + $item_normal $sql_extra + AND id > %d group by mid + order by received desc LIMIT %d OFFSET %d ", intval($since_id), - intval($start), intval($count) + intval($count), + intval($start) ); + xchan_query($r,true); + + $ret = api_format_items($r,$user_info); diff --git a/include/apps.php b/include/apps.php index 661fc2163..c036867b1 100644 --- a/include/apps.php +++ b/include/apps.php @@ -130,7 +130,7 @@ function translate_system_apps(&$arr) { 'Address Book' => t('Address Book'), 'Login' => t('Login'), 'Channel Manager' => t('Channel Manager'), - 'Matrix' => t('Matrix'), + 'Grid' => t('Grid'), 'Settings' => t('Settings'), 'Files' => t('Files'), 'Webpages' => t('Webpages'), diff --git a/include/attach.php b/include/attach.php index 39fdb5c3a..f95feed2d 100644 --- a/include/attach.php +++ b/include/attach.php @@ -181,7 +181,7 @@ function attach_list_files($channel_id, $observer, $hash = '', $filename = '', $ $ret = array('success' => false); - if(! perm_is_allowed($channel_id,$observer, 'read_storage')) { + if(! perm_is_allowed($channel_id,$observer, 'view_storage')) { $ret['message'] = t('Permission denied.'); return $ret; } @@ -203,7 +203,7 @@ function attach_list_files($channel_id, $observer, $hash = '', $filename = '', $ // Retrieve all columns except 'data' - $r = q("select id, aid, uid, hash, filename, filetype, filesize, revision, folder, os_storage, is_dir, is_photo, flags, created, edited, allow_cid, allow_gid, deny_cid, deny_gid from attach where uid = %d $sql_extra $orderby $limit", + $r = q("select id, aid, uid, hash, filename, filetype, filesize, revision, folder, os_storage, is_dir, is_photo, flags, created, edited, allow_cid, allow_gid, deny_cid, deny_gid from attach where uid = %d $sql_extra ORDER BY $orderby $limit", intval($channel_id) ); @@ -405,7 +405,6 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { require_once('include/photos.php'); - call_hooks('photo_upload_begin',$arr); $ret = array('success' => false); @@ -416,6 +415,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { $newalbum = (($arr) ? $arr['newalbum'] : ''); $hash = (($arr && $arr['hash']) ? $arr['hash'] : null); $upload_path = (($arr && $arr['directory']) ? $arr['directory'] : ''); + $visible = (($arr && $arr['visible']) ? $arr['visible'] : ''); $observer = array(); @@ -447,11 +447,33 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { // revise or update must provide $arr['hash'] of the thing to revise/update + // By default remove $src when finished + + $remove_when_processed = true; + if($options === 'import') { $src = $arr['src']; $filename = $arr['filename']; $filesize = @filesize($src); + $hash = $arr['resource_id']; + + if(array_key_exists('hash',$arr)) + $hash = $arr['hash']; + if(array_key_exists('type',$arr)) + $type = $arr['type']; + + if($arr['preserve_original']) + $remove_when_processed = false; + + // if importing a directory, just do it now and go home - we're done. + + if(array_key_exists('is_dir',$arr) && intval($arr['is_dir'])) { + $x = attach_mkdir($channel,$observer_hash,$arr); + if($x['message']) + logger('import_directory: ' . $x['message']); + return; + } } elseif($options !== 'update') { $f = array('src' => '', 'filename' => '', 'filesize' => 0, 'type' => ''); @@ -530,10 +552,20 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { $pathname = ''; if($is_photo) { - if($newalbum) + if($newalbum) { $pathname = filepath_macro($newalbum); - else + } + elseif(array_key_exists('folder',$arr)) { + $x = q("select filename from attach where hash = '%s' and uid = %d limit 1", + dbesc($arr['folder']), + intval($channel['channel_id']) + ); + if($x) + $pathname = $x[0]['filename']; + } + else { $pathname = filepath_macro($album); + } } else { $pathname = filepath_macro($upload_path); @@ -563,7 +595,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { } } else { - $folder_hash = ''; + $folder_hash = ((($arr) && array_key_exists('folder',$arr)) ? $arr['folder'] : ''); } if((! $options) || ($options === 'import')) { @@ -630,7 +662,8 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { if(($maxfilesize) && ($filesize > $maxfilesize)) { $ret['message'] = sprintf( t('File exceeds size limit of %d'), $maxfilesize); - @unlink($src); + if($remove_when_processed) + @unlink($src); call_hooks('photo_upload_end',$ret); return $ret; } @@ -643,7 +676,9 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { ); if(($r) && (($r[0]['total'] + $filesize) > ($limit - $existing_size))) { $ret['message'] = upgrade_message(true) . sprintf(t("You have reached your limit of %1$.0f Mbytes attachment storage."), $limit / 1024000); - @unlink($src); + if($remove_when_processed) + @unlink($src); + call_hooks('photo_upload_end',$ret); return $ret; } @@ -757,7 +792,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { if($is_photo) { - $args = array( 'source' => $source, 'visible' => 0, 'resource_id' => $hash, 'album' => basename($pathname), 'os_path' => $os_basepath . $os_relpath, 'filename' => $filename, 'getimagesize' => $gis, 'directory' => $direct); + $args = array( 'source' => $source, 'visible' => $visible, 'resource_id' => $hash, 'album' => basename($pathname), 'os_path' => $os_basepath . $os_relpath, 'filename' => $filename, 'getimagesize' => $gis, 'directory' => $direct); if($arr['contact_allow']) $args['contact_allow'] = $arr['contact_allow']; if($arr['group_allow']) @@ -786,7 +821,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { } } - if($options !== 'update') + if(($options !== 'update') && ($remove_when_processed)) @unlink($src); if(! $r) { @@ -959,7 +994,6 @@ function attach_mkdir($channel, $observer_hash, $arr = null) { intval($channel['channel_id']), dbesc($lfile) ); - if(! $r) { logger('attach_mkdir: hash ' . $lfile . ' not found in ' . $lpath); $ret['message'] = t('Path not found.'); @@ -1195,7 +1229,7 @@ function attach_delete($channel_id, $resource, $is_photo = 0) { $channel_address = (($c) ? $c[0]['channel_address'] : 'notfound'); $photo_sql = (($is_photo) ? " and is_photo = 1 " : ''); - $r = q("SELECT hash, flags, is_dir, folder FROM attach WHERE hash = '%s' AND uid = %d $photo_sql limit 1", + $r = q("SELECT hash, flags, is_dir, is_photo, folder FROM attach WHERE hash = '%s' AND uid = %d $photo_sql limit 1", dbesc($resource), intval($channel_id) ); @@ -1241,6 +1275,21 @@ function attach_delete($channel_id, $resource, $is_photo = 0) { intval($channel_id) ); + if($r[0]['is_photo']) { + $x = q("select id, item_hidden from item where resource_id = '%s' and resource_type = 'photo' and uid = %d", + dbesc($resource), + intval($channel_id) + ); + if($x) { + drop_item($x[0]['id'],false,(($x[0]['item_hidden']) ? DROPITEM_NORMAL : DROPITEM_PHASE1),true); + + q("DELETE FROM photo WHERE uid = %d AND resource_id = '%s'", + intval($channel_id), + dbesc($resource) + ); + } + } + // update the parent folder's lastmodified timestamp $e = q("UPDATE attach SET edited = '%s' WHERE hash = '%s' AND uid = %d", dbesc(datetime_convert()), diff --git a/include/conversation.php b/include/conversation.php index 0f6f8685b..ebbc6684c 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -629,11 +629,6 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ if($item['author-link'] && (! $item['author-name'])) $profile_name = $item['author-link']; - - $tags=array(); - $hashtags = array(); - $mentions = array(); - $sp = false; $profile_link = best_link_url($item,$sp); if($sp) @@ -678,14 +673,17 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ $unverified = ''; - $tags=array(); - $terms = get_terms_oftype($item['term'],array(TERM_HASHTAG,TERM_MENTION,TERM_UNKNOWN)); - if(count($terms)) - foreach($terms as $tag) - $tags[] = format_term_for_display($tag); +// $tags=array(); +// $terms = get_terms_oftype($item['term'],array(TERM_HASHTAG,TERM_MENTION,TERM_UNKNOWN)); +// if(count($terms)) +// foreach($terms as $tag) +// $tags[] = format_term_for_display($tag); $body = prepare_body($item,true); + $is_photo = ((($item['resource_type'] == 'photo') && (feature_enabled($profile_owner,'large_photos'))) ? true : false); + $has_tags = (($body['tags'] || $body['categories'] || $body['mentions'] || $body['attachments'] || $body['folders']) ? true : false); + $tmp_item = array( 'template' => $tpl, 'toplevel' => 'toplevel_item', @@ -699,10 +697,12 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ 'lock' => $lock, 'thumb' => $profile_avatar, 'title' => $item['title'], - 'body' => $body, - 'tags' => $tags, - 'hashtags' => $hashtags, - 'mentions' => $mentions, + 'body' => $body['html'], + 'tags' => $body['tags'], + 'categories' => $body['categories'], + 'mentions' => $body['mentions'], + 'attachments' => $body['attachments'], + 'folders' => $body['folders'], 'verified' => $verified, 'unverified' => $unverified, 'forged' => $forged, @@ -712,7 +712,7 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ 'has_folders' => ((count($folders)) ? 'true' : ''), 'categories' => $categories, 'folders' => $folders, - 'text' => strip_tags($body), + 'text' => strip_tags($body['html']), 'ago' => relative_date($item['created']), 'app' => $item['app'], 'str_app' => sprintf( t('from %s'), $item['app']), @@ -738,6 +738,8 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ 'previewing' => $previewing, 'wait' => t('Please wait'), 'thread_level' => 1, + 'is_photo' => $is_photo, + 'has_tags' => $has_tags, ); $arr = array('item' => $item, 'output' => $tmp_item); @@ -1414,7 +1416,7 @@ function prepare_page($item) { '$auth_url' => (($naked) ? '' : zid($item['author']['xchan_url'])), '$date' => (($naked) ? '' : datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'Y-m-d H:i')), '$title' => smilies(bbcode($item['title'])), - '$body' => $body, + '$body' => $body['html'], '$preview' => $preview, '$link' => $link, )); diff --git a/include/deliver.php b/include/deliver.php index a338d1a89..11c1b249e 100644 --- a/include/deliver.php +++ b/include/deliver.php @@ -138,14 +138,16 @@ function deliver_run($argv, $argc) { if($dresult && is_array($dresult)) { foreach($dresult as $xx) { if(is_array($xx) && array_key_exists('message_id',$xx)) { - q("insert into dreport ( dreport_mid, dreport_site, dreport_recip, dreport_result, dreport_time, dreport_xchan ) values ( '%s', '%s','%s','%s','%s','%s' ) ", - dbesc($xx['message_id']), - dbesc($xx['location']), - dbesc($xx['recipient']), - dbesc($xx['status']), - dbesc(datetime_convert($xx['date'])), - dbesc($xx['sender']) - ); + if(delivery_report_is_storable($xx)) { + q("insert into dreport ( dreport_mid, dreport_site, dreport_recip, dreport_result, dreport_time, dreport_xchan ) values ( '%s', '%s','%s','%s','%s','%s' ) ", + dbesc($xx['message_id']), + dbesc($xx['location']), + dbesc($xx['recipient']), + dbesc($xx['status']), + dbesc(datetime_convert($xx['date'])), + dbesc($xx['sender']) + ); + } } } } diff --git a/include/enotify.php b/include/enotify.php index d0228bf50..bbddcdd14 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -97,7 +97,7 @@ function notification($params) { if ($params['type'] == NOTIFY_MAIL) { logger('notification: mail'); - $subject = sprintf( t('[Red:Notify] New mail received at %s'),$sitename); + $subject = sprintf( t('[Hubzilla:Notify] New mail received at %s'),$sitename); $preamble = sprintf( t('%1$s, %2$s sent you a new private message at %3$s.'),$recip['channel_name'], $sender['xchan_name'],$sitename); $epreamble = sprintf( t('%1$s sent you %2$s.'),'[zrl=' . $sender['xchan_url'] . ']' . $sender['xchan_name'] . '[/zrl]', '[zrl=$itemlink]' . t('a private message') . '[/zrl]'); @@ -183,7 +183,7 @@ function notification($params) { // Before this we have the name of the replier on the subject rendering // differents subjects for messages on the same thread. - $subject = sprintf( t('[Red:Notify] Comment to conversation #%1$d by %2$s'), $parent_id, $sender['xchan_name']); + $subject = sprintf( t('[Hubzilla:Notify] Comment to conversation #%1$d by %2$s'), $parent_id, $sender['xchan_name']); $preamble = sprintf( t('%1$s, %2$s commented on an item/conversation you have been following.'), $recip['channel_name'], $sender['xchan_name']); $epreamble = $dest_str; @@ -193,7 +193,7 @@ function notification($params) { } if($params['type'] == NOTIFY_WALL) { - $subject = sprintf( t('[Red:Notify] %s posted to your profile wall') , $sender['xchan_name']); + $subject = sprintf( t('[Hubzilla:Notify] %s posted to your profile wall') , $sender['xchan_name']); $preamble = sprintf( t('%1$s, %2$s posted to your profile wall at %3$s') , $recip['channel_name'], $sender['xchan_name'], $sitename); @@ -221,7 +221,7 @@ function notification($params) { return; } - $subject = sprintf( t('[Red:Notify] %s tagged you') , $sender['xchan_name']); + $subject = sprintf( t('[Hubzilla:Notify] %s tagged you') , $sender['xchan_name']); $preamble = sprintf( t('%1$s, %2$s tagged you at %3$s') , $recip['channel_name'], $sender['xchan_name'], $sitename); $epreamble = sprintf( t('%1$s, %2$s [zrl=%3$s]tagged you[/zrl].') , $recip['channel_name'], @@ -235,7 +235,7 @@ function notification($params) { } if ($params['type'] == NOTIFY_POKE) { - $subject = sprintf( t('[Red:Notify] %1$s poked you') , $sender['xchan_name']); + $subject = sprintf( t('[Hubzilla:Notify] %1$s poked you') , $sender['xchan_name']); $preamble = sprintf( t('%1$s, %2$s poked you at %3$s') , $recip['channel_name'], $sender['xchan_name'], $sitename); $epreamble = sprintf( t('%1$s, %2$s [zrl=%2$s]poked you[/zrl].') , $recip['channel_name'], @@ -253,7 +253,7 @@ function notification($params) { } if ($params['type'] == NOTIFY_TAGSHARE) { - $subject = sprintf( t('[Red:Notify] %s tagged your post') , $sender['xchan_name']); + $subject = sprintf( t('[Hubzilla:Notify] %s tagged your post') , $sender['xchan_name']); $preamble = sprintf( t('%1$s, %2$s tagged your post at %3$s') , $recip['channel_name'],$sender['xchan_name'], $sitename); $epreamble = sprintf( t('%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]') , $recip['channel_name'], @@ -267,7 +267,7 @@ function notification($params) { } if ($params['type'] == NOTIFY_INTRO) { - $subject = sprintf( t('[Red:Notify] Introduction received')); + $subject = sprintf( t('[Hubzilla:Notify] Introduction received')); $preamble = sprintf( t('%1$s, you\'ve received an new connection request from \'%2$s\' at %3$s'), $recip['channel_name'], $sender['xchan_name'], $sitename); $epreamble = sprintf( t('%1$s, you\'ve received [zrl=%2$s]a new connection request[/zrl] from %3$s.'), $recip['channel_name'], @@ -282,7 +282,7 @@ function notification($params) { } if ($params['type'] == NOTIFY_SUGGEST) { - $subject = sprintf( t('[Red:Notify] Friend suggestion received')); + $subject = sprintf( t('[Hubzilla:Notify] Friend suggestion received')); $preamble = sprintf( t('%1$s, you\'ve received a friend suggestion from \'%2$s\' at %3$s'), $recip['channel_name'], $sender['xchan_name'], $sitename); $epreamble = sprintf( t('%1$s, you\'ve received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s.'), $recip['channel_name'], @@ -315,9 +315,12 @@ function notification($params) { 'epreamble' => $epreamble, 'body' => $body, 'sitelink' => $sitelink, + 'sitename' => $sitename, 'tsitelink' => $tsitelink, 'hsitelink' => $hsitelink, - 'itemlink' => $itemlink + 'itemlink' => $itemlink, + 'sender' => $sender, + 'recipient' => $recip ); call_hooks('enotify', $h); @@ -505,7 +508,7 @@ function notification($params) { $private_activity = true; case NOTIFY_MAIL: $datarray['textversion'] = $datarray['htmlversion'] = $datarray['title'] = ''; - $datarray['subject'] = preg_replace('/' . preg_quote(t('[Red:Notify]')) . '/','$0*',$datarray['subject']); + $datarray['subject'] = preg_replace('/' . preg_quote(t('[Hubzilla:Notify]')) . '/','$0*',$datarray['subject']); break; default: break; diff --git a/include/follow.php b/include/follow.php index 960138743..40ad2c299 100644 --- a/include/follow.php +++ b/include/follow.php @@ -133,27 +133,27 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) $their_perms = 0; $xchan_hash = ''; + $r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' limit 1", dbesc($url), dbesc($url) ); + if(! $r) { // attempt network auto-discovery if(strpos($url,'@') && (! $is_http)) { - $r = discover_by_webbie($url); + $d = discover_by_webbie($url); } elseif($is_http) { - $r = discover_by_url($url); - $r['allowed'] = intval(get_config('system','feed_contacts')); - } - if($r) { - $r['channel_id'] = $uid; - call_hooks('follow_allow',$r); - if(! $r['allowed']) { + if(get_config('system','feed_contacts')) + $d = discover_by_url($url); + else { $result['message'] = t('Protocol disabled.'); return $result; } + } + if($d) { $r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' limit 1", dbesc($url), dbesc($url) @@ -172,6 +172,16 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) return $result; } + $x = array('channel_id' => $uid, 'follow_address' => $url, 'xchan' => $r[0], 'allowed' => 1); + + call_hooks('follow_allow',$x); + + if(! $x['allowed']) { + $result['message'] = t('Protocol disabled.'); + return $result; + } + + if((local_channel()) && $uid == local_channel()) { $aid = get_account_id(); $hash = get_observer_hash(); @@ -251,7 +261,7 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) ); if($r) { $result['abook'] = $r[0]; - proc_run('php', 'include/notifier.php', 'permission_update', $result['abook']['abook_id']); + proc_run('php', 'include/notifier.php', 'permission_create', $result['abook']['abook_id']); } $arr = array('channel_id' => $uid, 'abook' => $result['abook']); diff --git a/include/identity.php b/include/identity.php index 47738a8fa..0c4a9df45 100644 --- a/include/identity.php +++ b/include/identity.php @@ -631,6 +631,30 @@ function identity_basic_export($channel_id, $items = false) { if($r) $ret['likes'] = $r; + + $r = q("select * from conv where uid = %d", + intval($channel_id) + ); + if($r) { + for($x = 0; $x < count($r); $x ++) { + $r[$x]['subject'] = base64url_decode(str_rot47($r[$x]['subject'])); + } + $ret['conv'] = $r; + } + + + $r = q("select * from mail where mail.uid = %d", + intval($channel_id) + ); + if($r) { + $m = array(); + foreach($r as $rr) { + xchan_mail_query($rr); + $m[] = mail_encode($rr,true); + } + $ret['mail'] = $m; + } + $r = q("select item_id.*, item.mid from item_id left join item on item_id.iid = item.id where item_id.uid = %d", intval($channel_id) ); diff --git a/include/import.php b/include/import.php index ad8bcd84e..0fd1ab2a5 100644 --- a/include/import.php +++ b/include/import.php @@ -790,7 +790,7 @@ function import_likes($channel,$likes) { if($r) continue; - dbesc_array($config); + dbesc_array($like); $r = dbq("INSERT INTO likes (`" . implode("`, `", array_keys($like)) . "`) VALUES ('" @@ -800,6 +800,71 @@ function import_likes($channel,$likes) { } } +function import_conv($channel,$convs) { + if($channel && $convs) { + foreach($convs as $conv) { + if($conv['deleted']) { + q("delete from conv where guid = '%s' and uid = %d limit 1", + dbesc($conv['guid']), + intval($channel['channel_id']) + ); + continue; + } + + unset($conv['id']); + + $conv['uid'] = $channel['channel_id']; + $conv['subject'] = str_rot47(base64url_encode($conv['subject'])); + + $r = q("select id from conv where guid = '%s' and uid = %d limit 1", + dbesc($conv['guid']), + intval($channel['channel_id']) + ); + if($r) + continue; + + dbesc_array($conv); + $r = dbq("INSERT INTO conv (`" + . implode("`, `", array_keys($conv)) + . "`) VALUES ('" + . implode("', '", array_values($conv)) + . "')" ); + } + } +} + + + +function import_mail($channel,$mails) { + if($channel && $mails) { + foreach($mails as $mail) { + if(array_key_exists('flags',$mail) && in_array('deleted',$mail['flags'])) { + q("delete from mail where mid = '%s' and uid = %d limit 1", + dbesc($mail['message_id']), + intval($channel['channel_id']) + ); + continue; + } + if(array_key_exists('flags',$mail) && in_array('recalled',$mail['flags'])) { + q("update mail set mail_recalled = 1 where mid = '%s' and uid = %d limit 1", + dbesc($mail['message_id']), + intval($channel['channel_id']) + ); + continue; + } + + $m = get_mail_elements($mail); + if(! $m) + continue; + + $m['aid'] = $channel['channel_account_id']; + $m['uid'] = $channel['channel_id']; + mail_store($m); + } + } +} + + diff --git a/include/items.php b/include/items.php index e7cc02579..9159f6da3 100755 --- a/include/items.php +++ b/include/items.php @@ -889,6 +889,7 @@ function get_item_elements($x,$allow_code = false) { $arr['mimetype'] = (($x['mimetype']) ? htmlspecialchars($x['mimetype'], ENT_COMPAT,'UTF-8',false) : ''); $arr['obj_type'] = (($x['object_type']) ? htmlspecialchars($x['object_type'], ENT_COMPAT,'UTF-8',false) : ''); $arr['tgt_type'] = (($x['target_type']) ? htmlspecialchars($x['target_type'], ENT_COMPAT,'UTF-8',false) : ''); + $arr['resource_type'] = (($x['resource_type']) ? htmlspecialchars($x['resource_type'], ENT_COMPAT,'UTF-8',false) : ''); $arr['public_policy'] = (($x['public_scope']) ? htmlspecialchars($x['public_scope'], ENT_COMPAT,'UTF-8',false) : ''); if($arr['public_policy'] === 'public') @@ -1285,6 +1286,7 @@ function encode_item($item,$mirror = false) { $x['verb'] = $item['verb']; $x['object_type'] = $item['obj_type']; $x['target_type'] = $item['tgt_type']; + $x['resource_type'] = $item['resource_type']; $x['permalink'] = $item['plink']; $x['location'] = $item['location']; $x['longlat'] = $item['coord']; @@ -1559,7 +1561,7 @@ function encode_item_flags($item) { return $ret; } -function encode_mail($item) { +function encode_mail($item,$extended = false) { $x = array(); $x['type'] = 'mail'; $x['encoding'] = 'zot'; @@ -1592,6 +1594,18 @@ function encode_mail($item) { $x['body'] = ''; } + if($extended) { + $x['conv_guid'] = $item['conv_guid']; + if(intval($item['mail_deleted'])) + $x['flags'][] = 'deleted'; + if(intval($item['mail_replied'])) + $x['flags'][] = 'replied'; + if(intval($item['mail_isreply'])) + $x['flags'][] = 'isreply'; + if(intval($item['mail_seen'])) + $x['flags'][] = 'seen'; + } + return $x; } @@ -1604,6 +1618,8 @@ function get_mail_elements($x) { $arr['body'] = (($x['body']) ? htmlspecialchars($x['body'], ENT_COMPAT,'UTF-8',false) : ''); $arr['title'] = (($x['title'])? htmlspecialchars($x['title'],ENT_COMPAT,'UTF-8',false) : ''); + $arr['conv_guid'] = (($x['conv_guid'])? htmlspecialchars($x['conv_guid'],ENT_COMPAT,'UTF-8',false) : ''); + $arr['created'] = datetime_convert('UTC','UTC',$x['created']); if((! array_key_exists('expires',$x)) || ($x['expires'] === NULL_DATE)) $arr['expires'] = NULL_DATE; @@ -1616,6 +1632,18 @@ function get_mail_elements($x) { if(in_array('recalled',$x['flags'])) { $arr['mail_recalled'] = 1; } + if(in_array('replied',$x['flags'])) { + $arr['mail_replied'] = 1; + } + if(in_array('isreply',$x['flags'])) { + $arr['mail_isreply'] = 1; + } + if(in_array('seen',$x['flags'])) { + $arr['mail_seen'] = 1; + } + if(in_array('deleted',$x['flags'])) { + $arr['mail_deleted'] = 1; + } } $key = get_config('system','pubkey'); @@ -1630,6 +1658,7 @@ function get_mail_elements($x) { if($arr['created'] > datetime_convert()) $arr['created'] = datetime_convert(); + $arr['mid'] = (($x['message_id']) ? htmlspecialchars($x['message_id'], ENT_COMPAT,'UTF-8',false) : ''); $arr['parent_mid'] = (($x['message_parent']) ? htmlspecialchars($x['message_parent'], ENT_COMPAT,'UTF-8',false) : ''); @@ -3510,6 +3539,7 @@ function mail_store($arr) { $arr['title'] = ((x($arr,'title')) ? trim($arr['title']) : ''); $arr['parent_mid'] = ((x($arr,'parent_mid')) ? notags(trim($arr['parent_mid'])) : ''); $arr['body'] = ((x($arr,'body')) ? trim($arr['body']) : ''); + $arr['conv_guid'] = ((x($arr,'conv_guid')) ? trim($arr['conv_guid']) : ''); $arr['mail_flags'] = ((x($arr,'mail_flags')) ? intval($arr['mail_flags']) : 0 ); diff --git a/include/message.php b/include/message.php index 4b0236db8..820d814b6 100644 --- a/include/message.php +++ b/include/message.php @@ -28,8 +28,6 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto=' // $expires = datetime_convert(date_default_timezone_get(),'UTC',$expires); - - if($uid) { $r = q("select * from channel where channel_id = %d limit 1", intval($uid) @@ -49,18 +47,20 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto=' // look for any existing conversation structure + $conv_guid = ''; if(strlen($replyto)) { - $r = q("select convid from mail where channel_id = %d and ( mid = '%s' or parent_mid = '%s' ) limit 1", + $r = q("select conv_guid from mail where channel_id = %d and ( mid = '%s' or parent_mid = '%s' ) limit 1", intval(local_channel()), dbesc($replyto), dbesc($replyto) ); - if($r) - $convid = $r[0]['convid']; + if($r) { + $conv_guid = $r[0]['conv_guid']; + } } - if(! $convid) { + if(! $conv_guid) { // create a new conversation @@ -93,16 +93,28 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto=' dbesc($conv_guid), intval(local_channel()) ); - if($r) - $convid = $r[0]['id']; + if($r) { + $retconv = $r[0]; + $retconv['subject'] = base64url_decode(str_rot47($retconv['subject'])); + } } - if(! $convid) { + if(! $retconv) { + $r = q("select * from conv where guid = '%s' and uid = %d limit 1", + dbesc($conv_guid), + intval(local_channel()) + ); + if($r) { + $retconv = $r[0]; + $retconv['subject'] = base64url_decode(str_rot47($retconv['subject'])); + } + } + + if(! $retconv) { $ret['message'] = 'conversation not found'; return $ret; } - // generate a unique message_id do { @@ -174,10 +186,10 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto=' - $r = q("INSERT INTO mail ( account_id, convid, mail_obscured, channel_id, from_xchan, to_xchan, title, body, attach, mid, parent_mid, created, expires ) - VALUES ( %d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )", + $r = q("INSERT INTO mail ( account_id, conv_guid, mail_obscured, channel_id, from_xchan, to_xchan, title, body, attach, mid, parent_mid, created, expires ) + VALUES ( %d, '%s', %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )", intval($channel['channel_account_id']), - intval($convid), + dbesc($conv_guid), intval(1), intval($channel['channel_id']), dbesc($channel['channel_hash']), @@ -197,8 +209,11 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto=' dbesc($mid), intval($channel['channel_id']) ); - if($r) + if($r) { $post_id = $r[0]['id']; + $retmail = $r[0]; + xchan_mail_query($retmail); + } else { $ret['message'] = t('Stored post could not be verified.'); return $ret; @@ -242,6 +257,9 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto=' $ret['success'] = true; $ret['message_item'] = intval($post_id); + $ret['conv'] = $retconv; + $ret['mail'] = $retmail; + return $ret; } @@ -367,30 +385,67 @@ function private_messages_fetch_message($channel_id, $messageitem_id, $updatesee function private_messages_drop($channel_id, $messageitem_id, $drop_conversation = false) { - if($drop_conversation) { - // find the parent_id - $p = q("SELECT parent_mid FROM mail WHERE id = %d AND channel_id = %d LIMIT 1", - intval($messageitem_id), + + $x = q("select * from mail where id = %d and channel_id = %d limit 1", + intval($messageitem_id), + intval($channel_id) + ); + if(! $x) + return false; + + $conversation = null; + + if($x[0]['conv_guid']) { + $y = q("select * from conv where guid = '%s' and uid = %d limit 1", + dbesc($x[0]['conv_guid']), intval($channel_id) ); - if($p) { - $r = q("DELETE FROM mail WHERE parent_mid = '%s' AND channel_id = %d ", - dbesc($p[0]['parent_mid']), - intval($channel_id) - ); - if($r) - return true; + if($y) { + $conversation = $y[0]; + $conversation['subject'] = base64url_decode(str_rot47($conversation['subject'])); } } + + if($drop_conversation) { + $m = array(); + $m['conv'] = array($conversation); + $m['conv'][0]['deleted'] = 1; + + $z = q("select * from mail where parent_mid = '%s' and channel_id = %d", + dbesc($x[0]['parent_mid']), + intval($channel_id) + ); + if($z) { + q("delete from conv where guid = '%s' and uid = %d limit 1", + dbesc($x[0]['conv_guid']), + intval($channel_id) + ); + $m['mail'] = array(); + foreach($z as $zz) { + xchan_mail_query($zz); + $zz['mail_deleted'] = 1; + $m['mail'][] = encode_mail($zz,true); + } + q("DELETE FROM mail WHERE parent_mid = '%s' AND channel_id = %d ", + dbesc($x[0]['parent_mid']), + intval($channel_id) + ); + } + build_sync_packet($channel_id,$m); + return true; + } else { + xchan_mail_query($x[0]); + $x[0]['mail_deleted'] = true; $r = q("DELETE FROM mail WHERE id = %d AND channel_id = %d", intval($messageitem_id), intval($channel_id) ); - if($r) - return true; + build_sync_packet($channel_id,array('mail' => array(encode_mail($x,true)))); + return true; } return false; + } diff --git a/include/network.php b/include/network.php index 41e1ff37c..c67c019ef 100644 --- a/include/network.php +++ b/include/network.php @@ -586,7 +586,7 @@ function scale_external_images($s, $include_link = true, $scale_replace = false) if(substr($mtch[1],0,1) == '=') { $owidth = intval(substr($mtch[2],1)); - if(intval($owidth) > 0 && intval($owidth) < 640) + if(intval($owidth) > 0 && intval($owidth) < 1024) continue; } @@ -624,9 +624,9 @@ function scale_external_images($s, $include_link = true, $scale_replace = false) $orig_width = $ph->getWidth(); $orig_height = $ph->getHeight(); - if($orig_width > 640 || $orig_height > 640) { + if($orig_width > 1024 || $orig_height > 1024) { $tag = (($match[1] == 'z') ? 'zmg' : 'img'); - $ph->scaleImage(640); + $ph->scaleImage(1024); $new_width = $ph->getWidth(); $new_height = $ph->getHeight(); logger('scale_external_images: ' . $orig_width . '->' . $new_width . 'w ' . $orig_height . '->' . $new_height . 'h' . ' match: ' . $mtch[0], LOGGER_DEBUG); @@ -1677,13 +1677,40 @@ function format_and_send_email($sender,$xchan,$item) { 'additionalMailHeader' => '', )); +} +function do_delivery($deliveries) { + + if(! (is_array($deliveries) && count($deliveries))) + return; + + $interval = ((get_config('system','delivery_interval') !== false) + ? intval(get_config('system','delivery_interval')) : 2 ); + + $deliveries_per_process = intval(get_config('system','delivery_batch_count')); + + if($deliveries_per_process <= 0) + $deliveries_per_process = 1; + $deliver = array(); + foreach($deliveries as $d) { + $deliver[] = $d; + if(count($deliver) >= $deliveries_per_process) { + proc_run('php','include/deliver.php',$deliver); + $deliver = array(); + if($interval) + @time_sleep_until(microtime(true) + (float) $interval); + } + } + // catch any stragglers + if($deliver) + proc_run('php','include/deliver.php',$deliver); + } diff --git a/include/notifier.php b/include/notifier.php index db1aa9690..b7cea629d 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -96,7 +96,19 @@ function notifier_run($argv, $argc){ require_once('include/identity.php'); $sys = get_sys_channel(); - if($cmd == 'permission_update') { + $deliveries = array(); + + $dead_hubs = array(); + + $dh = q("select site_url from site where site_dead = 1"); + if(dh) { + foreach($dh as $dead) { + $dead_hubs[] = $dead['site_url']; + } + } + + + if($cmd == 'permission_update' || $cmd == 'permission_create') { // Get the recipient $r = q("select abook.*, hubloc.* from abook left join hubloc on hubloc_hash = abook_xchan @@ -113,8 +125,16 @@ function notifier_run($argv, $argc){ intval($r[0]['abook_channel']) ); if($s) { - $perm_update = array('sender' => $s[0], 'recipient' => $r[0], 'success' => false); - call_hooks('permissions_update',$perm_update); + $perm_update = array('sender' => $s[0], 'recipient' => $r[0], 'success' => false, 'deliveries' => ''); + + if($cmd == 'permission_create']) + call_hooks('permissions_create',$perm_update); + else + call_hooks('permissions_update',$perm_update); + + if($perm_update['success'] && $perm_update['deliveries']) + $deliveries[] = $perm_update['deliveries']; + if(! $perm_update['success']) { // send a refresh message to each hub they have registered here $h = q("select * from hubloc where hubloc_hash = '%s' @@ -125,36 +145,40 @@ function notifier_run($argv, $argc){ ); if($h) { foreach($h as $hh) { + if(in_array($hh['hubloc_url'],$dead_hubs)) { + logger('skipping dead hub: ' . $hh['hubloc_url'], LOGGER_DEBUG); + continue; + } + $data = zot_build_packet($s[0],'refresh',array(array( 'guid' => $hh['hubloc_guid'], 'guid_sig' => $hh['hubloc_guid_sig'], 'url' => $hh['hubloc_url']) )); if($data) { - $result = zot_zot($hh['hubloc_callback'],$data); - - // if immediate delivery failed, stick it in the queue to try again later. - - if(! $result['success']) { - $hash = random_string(); - q("insert into outq ( outq_hash, outq_account, outq_channel, outq_driver, outq_posturl, outq_async, outq_created, outq_updated, outq_notify, outq_msg ) - values ( '%s', %d, %d, '%s', '%s', %d, '%s', '%s', '%s', '%s' )", - dbesc($hash), - intval($s[0]['channel_account_id']), - intval($s[0]['channel_id']), - dbesc('zot'), - dbesc($hh['hubloc_callback']), - intval(1), - dbesc(datetime_convert()), - dbesc(datetime_convert()), - dbesc($data), - dbesc('') - ); - } + $hash = random_string(); + q("insert into outq ( outq_hash, outq_account, outq_channel, outq_driver, outq_posturl, outq_async, outq_created, outq_updated, outq_notify, outq_msg ) + values ( '%s', %d, %d, '%s', '%s', %d, '%s', '%s', '%s', '%s' )", + dbesc($hash), + intval($s[0]['channel_account_id']), + intval($s[0]['channel_id']), + dbesc('zot'), + dbesc($hh['hubloc_callback']), + intval(1), + dbesc(datetime_convert()), + dbesc(datetime_convert()), + dbesc($data), + dbesc('') + ); + $deliveries[] = $hash; } - } + } + } } + + if($deliveries) + do_delivery($deliveries); } } return; @@ -524,14 +548,6 @@ function notifier_run($argv, $argc){ $hubs = $r; - $dead_hubs = array(); - - $dh = q("select site_url from site where site_dead = 1"); - if(dh) { - foreach($dh as $dead) { - $dead_hubs[] = $dead['site_url']; - } - } /** @@ -571,15 +587,6 @@ function notifier_run($argv, $argc){ logger('notifier: will notify/deliver to these hubs: ' . print_r($hublist,true), LOGGER_DEBUG); - $interval = ((get_config('system','delivery_interval') !== false) - ? intval(get_config('system','delivery_interval')) : 2 ); - - $deliveries_per_process = intval(get_config('system','delivery_batch_count')); - - if($deliveries_per_process <= 0) - $deliveries_per_process = 1; - - $deliveries = array(); foreach($dhubs as $hub) { @@ -687,29 +694,11 @@ 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) { - $deliver = array(); - - foreach($deliveries as $d) { - - $deliver[] = $d; - - if(count($deliver) >= $deliveries_per_process) { - proc_run('php','include/deliver.php',$deliver); - $deliver = array(); - if($interval) - @time_sleep_until(microtime(true) + (float) $interval); - } - } - } - - // catch any stragglers - - if($deliver) - proc_run('php','include/deliver.php',$deliver); + if($deliveries) + do_delivery($deliveries); logger('notifier: basic loop complete.', LOGGER_DEBUG); diff --git a/include/photos.php b/include/photos.php index 49aab6865..e78b899e0 100644 --- a/include/photos.php +++ b/include/photos.php @@ -185,31 +185,40 @@ function photo_upload($channel, $observer, $args) { if($args['description']) $p['description'] = $args['description']; - $r1 = $ph->save($p); - if(! $r1) + $r0 = $ph->save($p); + $r0wxh = $ph->getWidth() . 'x' . $ph->getHeight(); + if(! $r0) $errors = true; - unset($p['os_storage']); unset($p['os_path']); - if(($width > 640 || $height > 640) && (! $errors)) { - $ph->scaleImage(640); - $p['scale'] = 1; - $r2 = $ph->save($p); - $smallest = 1; - if(! $r2) - $errors = true; - } + if(($width > 1024 || $height > 1024) && (! $errors)) + $ph->scaleImage(1024); - if(($width > 320 || $height > 320) && (! $errors)) { + $p['scale'] = 1; + $r1 = $ph->save($p); + $r1wxh = $ph->getWidth() . 'x' . $ph->getHeight(); + if(! $r1) + $errors = true; + + if(($width > 640 || $height > 640) && (! $errors)) + $ph->scaleImage(640); + + $p['scale'] = 2; + $r2 = $ph->save($p); + $r2wxh = $ph->getWidth() . 'x' . $ph->getHeight(); + if(! $r2) + $errors = true; + + if(($width > 320 || $height > 320) && (! $errors)) $ph->scaleImage(320); - $p['scale'] = 2; - $r3 = $ph->save($p); - $smallest = 2; - if(! $r3) - $errors = true; - } + + $p['scale'] = 3; + $r3 = $ph->save($p); + $r3wxh = $ph->getWidth() . 'x' . $ph->getHeight(); + if(! $r3) + $errors = true; if($errors) { q("delete from photo where resource_id = '%s' and uid = %d", @@ -222,12 +231,6 @@ function photo_upload($channel, $observer, $args) { return $ret; } - // This will be the width and height of the smallest representation - - $width_x_height = $ph->getWidth() . 'x' . $ph->getHeight(); - - // Create item container - $item_hidden = (($visible) ? 0 : 1 ); $lat = $lon = null; @@ -239,6 +242,19 @@ function photo_upload($channel, $observer, $args) { } } + $larger = feature_enabled($channel['channel_id'], 'large_photos'); + + if($larger) { + $tag = (($r1wxh) ? '[zmg=' . $r1wxh . ']' : '[zmg]'); + $scale = 1; + } + else { + $tag = (($r2wxh) ? '[zmg=' . $r2wxh . ']' : '[zmg]'); + $scale = 2; + } + + // Create item container + if($args['item']) { foreach($args['item'] as $i) { @@ -248,7 +264,7 @@ function photo_upload($channel, $observer, $args) { if($item['mid'] === $item['parent_mid']) { $item['body'] = '[zrl=' . z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo_hash . ']' - . $tag . z_root() . "/photo/{$photo_hash}-{$smallest}.".$ph->getExt() . '[/zmg]' + . $tag . z_root() . "/photo/{$photo_hash}-{$scale}.".$ph->getExt() . '[/zmg]' . '[/zrl]'; if($item['author_xchan'] === $channel['channel_hash']) { @@ -281,7 +297,7 @@ function photo_upload($channel, $observer, $args) { } } else { - $title = ''; + $title = $args['filename'] ? $args['filename'] : ''; $mid = item_message_id(); $arr = array(); @@ -310,26 +326,8 @@ function photo_upload($channel, $observer, $args) { $arr['item_private'] = intval($acl->is_private()); $arr['plink'] = z_root() . '/channel/' . $channel['channel_address'] . '/?f=&mid=' . $arr['mid']; - // We should also put a width_x_height on large photos. Left as an exercise for - // devs looking for simple stuff to fix. - - $larger = feature_enabled($channel['channel_id'], 'large_photos'); - if($larger) { - $tag = '[zmg]'; - if($r2) - $smallest = 1; - else - $smallest = 0; - } - else { - if ($width_x_height) - $tag = '[zmg=' . $width_x_height. ']'; - else - $tag = '[zmg]'; - } - $arr['body'] = '[zrl=' . z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo_hash . ']' - . $tag . z_root() . "/photo/{$photo_hash}-{$smallest}.".$ph->getExt() . '[/zmg]' + . $tag . z_root() . "/photo/{$photo_hash}-{$scale}.".$ph->getExt() . '[/zmg]' . '[/zrl]'; $result = item_store($arr); diff --git a/include/taxonomy.php b/include/taxonomy.php index a82cf94f7..e68b9659f 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -185,7 +185,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/text.php b/include/text.php index b1af62fc5..25743e872 100644 --- a/include/text.php +++ b/include/text.php @@ -1216,36 +1216,15 @@ function theme_attachments(&$item) { if(is_array($arr) && count($arr)) { $attaches = array(); foreach($arr as $r) { - $icon = ''; - $icontype = substr($r['type'],0,strpos($r['type'],'/')); - /** - * @FIXME This should probably be a giant "if" statement in the - * template so that we don't have icon names embedded in php code. - */ - - switch($icontype) { - case 'video': - $icon = 'icon-facetime-video'; - break; - case 'audio': - $icon = 'icon-volume-up'; - break; - case 'image': - $icon = 'icon-picture'; - break; - case 'text': - $icon = 'icon-align-justify'; - break; - default: - $icon = 'icon-question'; - break; - } - - $title = htmlspecialchars($r['title'], ENT_COMPAT,'UTF-8'); - if(! $title) - $title = t('unknown.???'); - $title .= ' ' . (($r['length']) ? $r['length'] . ' ' . t('bytes') : ''); + $icon = getIconFromType($r['type']); + $label = (($r['title']) ? urldecode(htmlspecialchars($r['title'], ENT_COMPAT, 'UTF-8')) : t('Unknown Attachment')); + + //some feeds provide an attachment where title an empty space + if($label == ' ') + $label = t('Unknown Attachment'); + + $title = t('Attachment') . ' - ' . (($r['length']) ? userReadableSize($r['length']) : t('Size Unknown')); require_once('include/identity.php'); if(is_foreigner($item['author_xchan'])) @@ -1253,14 +1232,14 @@ function theme_attachments(&$item) { else $url = z_root() . '/magic?f=&hash=' . $item['author_xchan'] . '&dest=' . $r['href'] . '/' . $r['revision']; - $s .= '' . $icon . ''; - $attaches[] = array('title' => $title, 'url' => $url, 'icon' => $icon ); + //$s .= '' . $icon . ''; + $attaches[] = array('label' => $label, 'url' => $url, 'icon' => $icon, 'title' => $title); } - } - $s = replace_macros(get_markup_template('item_attach.tpl'), array( - '$attaches' => $attaches - )); + $s = replace_macros(get_markup_template('item_attach.tpl'), array( + '$attaches' => $attaches + )); + } return $s; } @@ -1279,11 +1258,12 @@ function format_categories(&$item,$writeable) { $removelink = (($writeable) ? z_root() . '/filerm/' . $item['id'] . '?f=&cat=' . urlencode($t['term']) : ''); $categories[] = array('term' => $term, 'writeable' => $writeable, 'removelink' => $removelink, 'url' => zid($t['url'])); } + + $s = replace_macros(get_markup_template('item_categories.tpl'),array( + '$remove' => t('remove category'), + '$categories' => $categories + )); } - $s = replace_macros(get_markup_template('item_categories.tpl'),array( - '$remove' => t('remove category'), - '$categories' => $categories - )); return $s; } @@ -1294,6 +1274,7 @@ function format_categories(&$item,$writeable) { * @param[in] array &$item * @return string HTML link of hashtag */ + function format_hashtags(&$item) { $s = ''; @@ -1354,11 +1335,12 @@ function format_filer(&$item) { $removelink = z_root() . '/filerm/' . $item['id'] . '?f=&term=' . urlencode($t['term']); $categories[] = array('term' => $term, 'removelink' => $removelink); } + + $s = replace_macros(get_markup_template('item_filer.tpl'),array( + '$remove' => t('remove from file'), + '$categories' => $categories + )); } - $s = replace_macros(get_markup_template('item_filer.tpl'),array( - '$remove' => t('remove from file'), - '$categories' => $categories - )); return $s; } @@ -1411,19 +1393,19 @@ function prepare_body(&$item,$attach = false) { } } - $s .= theme_attachments($item); + $attachments = theme_attachments($item); $writeable = ((get_observer_hash() == $item['owner_xchan']) ? true : false); - $s .= format_hashtags($item); + $tags = format_hashtags($item); if($item['resource_type']) - $s .= format_mentions($item); + $mentions = format_mentions($item); - $s .= format_categories($item,$writeable); + $categories = format_categories($item,$writeable); if(local_channel() == $item['uid']) - $s .= format_filer($item); + $filer = format_filer($item); $s = sslify($s); @@ -1456,9 +1438,19 @@ function prepare_body(&$item,$attach = false) { $s = substr($s, 0, $pos).$authorreplace.substr($s, $pos+strlen($authorsearch)); } - $prep_arr = array('item' => $item, 'html' => $s); + $prep_arr = array( + //'item' => $item, + 'html' => $s, + 'categories' => $categories, + 'folders' => $filer, + 'tags' => $tags, + 'mentions' => $mentions, + 'attachments' => $attachments + ); + call_hooks('prepare_body_final', $prep_arr); - return $prep_arr['html']; + + return $prep_arr; } /** @@ -1983,7 +1975,7 @@ function xchan_query(&$items,$abook = true,$effective_uid = 0) { $chans = q("select xchan.*,hubloc.* from xchan left join hubloc on hubloc_hash = xchan_hash where xchan_hash in (" . implode(',', $arr) . ") and hubloc_primary = 1"); } - $xchans = q("select * from xchan where xchan_hash in (" . implode(',',$arr) . ") and xchan_network in ('rss','unknown')"); + $xchans = q("select * from xchan where xchan_hash in (" . protect_sprintf(implode(',',$arr)) . ") and xchan_network in ('rss','unknown')"); if(! $chans) $chans = $xchans; else @@ -2221,7 +2213,7 @@ function handle_tag($a, &$body, &$access_tag, &$str_tags, $profile_uid, $tag, $d } if($tag == '#getzot') { $basetag = 'getzot'; - $url = 'https://redmatrix.me'; + $url = 'http://hubzilla.org'; $newtag = '#[zrl=' . $url . ']' . $basetag . '[/zrl]'; $body = str_replace($tag,$newtag,$body); $replaced = true; @@ -2490,6 +2482,7 @@ function linkify_tags($a, &$body, $uid, $diaspora = false) { * * @param string $type mime type * @return string + * @todo rename to get_icon_from_type() */ function getIconFromType($type) { $iconMap = array( @@ -2542,6 +2535,7 @@ function getIconFromType($type) { * * @param int $size filesize in bytes * @return string human readable formatted filesize + * @todo rename to user_readable_size() */ function userReadableSize($size) { $ret = ''; @@ -2564,3 +2558,47 @@ function str_rot47($str) { '!"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~', 'PQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~!"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNO'); } + + +function string_replace($old,$new,&$s) { + + $x = str_replace($old,$new,$s); + $replaced = false; + if($x !== $s) { + $replaced = true; + } + $s = $x; + return $replaced; +} + + +function json_url_replace($old,$new,&$s) { + + $old = str_replace('/','\\/',$old); + $new = str_replace('/','\\/',$new); + + $x = str_replace($old,$new,$s); + $replaced = false; + if($x !== $s) { + $replaced = true; + } + $s = $x; + return $replaced; +} + + +function item_url_replace($channel,&$item,$old,$new) { + + if($item['attach']) + json_url_replace($old,$new,$item['attach']); + if($item['object']) + json_url_replace($old,$new,$item['object']); + if($item['target']) + json_url_replace($old,$new,$item['target']); + + if(string_replace($old,$new,$item['body'])) { + $item['sig'] = base64url_encode(rsa_sign($item['body'],$channel['channel_prvkey'])); + $item['item_verified'] = 1; + } + +} diff --git a/include/widgets.php b/include/widgets.php index 9c8596a66..3e6fdb04c 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -565,12 +565,6 @@ function widget_mailmenu($arr) { return replace_macros(get_markup_template('message_side.tpl'), array( '$title' => t('Private Mail Menu'), - '$check'=>array( - 'label' => t('Check Mail'), - 'url' => $a->get_baseurl(true) . '/mail/combined', - 'sel' => (argv(1) == ''), - ), - '$combined'=>array( 'label' => t('Combined View'), 'url' => $a->get_baseurl(true) . '/mail/combined', diff --git a/include/zot.php b/include/zot.php index 7707f34fc..02dab3617 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'); /** @@ -502,7 +503,7 @@ function zot_refresh($them, $channel = null, $force = false) { if($new_connection) { if($new_perms != $previous_perms) - proc_run('php','include/notifier.php','permission_update',$new_connection[0]['abook_id']); + proc_run('php','include/notifier.php','permission_create',$new_connection[0]['abook_id']); require_once('include/enotify.php'); notification(array( 'type' => NOTIFY_INTRO, @@ -901,7 +902,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) ); } @@ -964,7 +965,7 @@ function zot_process_response($hub, $arr, $outq) { if(is_array($x) && array_key_exists('delivery_report',$x) && is_array($x['delivery_report'])) { foreach($x['delivery_report'] as $xx) { - if(is_array($xx) && array_key_exists('message_id',$xx)) { + if(is_array($xx) && array_key_exists('message_id',$xx) && delivery_report_is_storable($xx)) { q("insert into dreport ( dreport_mid, dreport_site, dreport_recip, dreport_result, dreport_time, dreport_xchan ) values ( '%s', '%s','%s','%s','%s','%s' ) ", dbesc($xx['message_id']), dbesc($xx['location']), @@ -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,6 +1569,7 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ } } + foreach($deliveries as $d) { $local_public = $public; @@ -1587,11 +1588,21 @@ 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; - } + /** + * @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; +// } // allow public postings to the sys channel regardless of permissions, but not // for comments travelling upstream. Wait and catch them on the way down. @@ -1949,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']), @@ -1958,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; @@ -2031,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; } @@ -2058,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; @@ -2071,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(); } } @@ -2580,7 +2600,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) ); @@ -2598,14 +2618,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) ); @@ -2982,6 +3002,12 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { if(array_key_exists('chatroom',$arr) && $arr['chatroom']) sync_chatrooms($channel,$arr['chatroom']); + if(array_key_exists('conv',$arr) && $arr['conv']) + import_conv($channel,$arr['conv']); + + if(array_key_exists('mail',$arr) && $arr['mail']) + import_mail($channel,$arr['mail']); + if(array_key_exists('event',$arr) && $arr['event']) sync_events($channel,$arr['event']); @@ -3855,4 +3881,46 @@ function check_zotinfo($channel,$locations,&$ret) { } } } -} \ No newline at end of file +} + +function delivery_report_is_storable($dr) { + + call_hooks('dreport_is_storable',$dr); + + // let plugins accept or reject - if neither, continue on + if(array_key_exists('accept',$dr) && intval($dr['accept'])) + return true; + if(array_key_exists('reject',$dr) && intval($dr['reject'])) + return false; + + if(! ($dr['sender'])) + return false; + + // Is the sender one of our channels? + + $c = q("select channel_id from channel where channel_hash = '%s' limit 1", + dbesc($dr['sender']) + ); + if(! $c) + return false; + + // is the recipient one of our connections, or do we want to store every report? + + $r = explode(' ', $dr['recipient']); + $rxchan = $r[0]; + $pcf = get_pconfig($c[0]['channel_id'],'system','dreport_store_all'); + if($pcf) + return true; + + $r = q("select abook_id from abook where abook_xchan = '%s' and abook_channel = %d limit 1", + dbesc($rxchan), + intval($c[0]['channel_id']) + ); + if($r) + return true; + + return false; + +} + + diff --git a/install/INSTALL.txt b/install/INSTALL.txt index 65df17fdd..c81510522 100644 --- a/install/INSTALL.txt +++ b/install/INSTALL.txt @@ -147,7 +147,12 @@ use SSL, your webserver must not listen on port 443 at all. 3. Create an empty database and note the access details (hostname, username, -password, database name). +password, database name). The MySQL client libraries will fallback to socket +communication if the hostname is 'localhost' and some people have reported +issues with the socket implementation. Use it if your requirements mandate. +Otherwise if the database is served on the local server, use '127.0.0.1' for +the hostname. See https://dev.mysql.com/doc/refman/5.0/en/connecting.html +for more information. 4. If you know in advance that it will be impossible for the web server to write or create files in your web directory, create an empty file called diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index 0e626752d..4aaa70825 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -731,6 +731,7 @@ CREATE TABLE IF NOT EXISTS `likes` ( CREATE TABLE IF NOT EXISTS `mail` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `convid` int(10) unsigned NOT NULL DEFAULT '0', + `conv_guid` char(255) NOT NULL DEFAULT '', `mail_flags` int(10) unsigned NOT NULL DEFAULT '0', `from_xchan` char(255) NOT NULL DEFAULT '', `to_xchan` char(255) NOT NULL DEFAULT '', @@ -761,6 +762,7 @@ CREATE TABLE IF NOT EXISTS `mail` ( KEY `parent_mid` (`parent_mid`), KEY `expires` (`expires`), KEY `convid` (`convid`), + KEY `conv_guid` (`conv_guid`), KEY `mail_deleted` (`mail_deleted`), KEY `mail_replied` (`mail_replied`), KEY `mail_isreply` (`mail_isreply`), diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index f378a3e3d..f42f6b297 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -728,6 +728,7 @@ create index "likes_target_id" on likes ("target_id"); CREATE TABLE "mail" ( "id" serial NOT NULL, "convid" bigint NOT NULL DEFAULT '0', + "conv_guid" text NOT NULL, "mail_flags" bigint NOT NULL DEFAULT '0', "from_xchan" text NOT NULL DEFAULT '', "to_xchan" text NOT NULL DEFAULT '', @@ -750,6 +751,7 @@ CREATE TABLE "mail" ( PRIMARY KEY ("id") ); create index "mail_convid" on mail ("convid"); +create index "mail_conv_guid" on mail ("conv_guid"); create index "mail_created" on mail ("created"); create index "mail_flags" on mail ("mail_flags"); create index "mail_account_id" on mail ("account_id"); diff --git a/install/update.php b/install/update.php index ace5239b5..dc9377892 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ get(); $arr['name'] = $room; + $arr['expire'] = intval($_POST['chat_expire']); + if(intval($arr['expire']) < 0) + $arr['expire'] = 0; chatroom_create($channel,$arr); @@ -204,6 +207,7 @@ function chat_content(&$a) { $o = replace_macros(get_markup_template('chatroom_new.tpl'),array( '$header' => t('New Chatroom'), '$name' => array('room_name',t('Chatroom Name'),'', ''), + '$chat_expire' => array('chat_expire',t('Expiration of chats (minutes)'),120,''), '$permissions' => t('Permissions'), '$acl' => populate_acl($channel_acl,false), '$submit' => t('Submit') diff --git a/mod/connedit.php b/mod/connedit.php index 75a5fd719..6170d05a8 100644 --- a/mod/connedit.php +++ b/mod/connedit.php @@ -190,7 +190,7 @@ function connedit_post(&$a) { } } - $abook_pending = $new_friend ? 0 : $orig_record[0]['abook_pending']; + $abook_pending = (($new_friend) ? 0 : $orig_record[0]['abook_pending']; $r = q("UPDATE abook SET abook_profile = '%s', abook_my_perms = %d , abook_closeness = %d, abook_pending = %d, abook_incl = '%s', abook_excl = '%s' @@ -214,7 +214,6 @@ function connedit_post(&$a) { } - if($r) info( t('Connection updated.') . EOL); else @@ -222,7 +221,7 @@ function connedit_post(&$a) { if($a->poi && $a->poi['abook_my_perms'] != $abook_my_perms && (! intval($a->poi['abook_self']))) { - proc_run('php', 'include/notifier.php', 'permission_update', $contact_id); + proc_run('php', 'include/notifier.php', (($new_friend) ? 'permission_create' : 'permission_update'), $contact_id); } if($new_friend) { 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/home.php b/mod/home.php index 242b2dcec..bf2463bbc 100644 --- a/mod/home.php +++ b/mod/home.php @@ -59,12 +59,14 @@ function home_content(&$a, $update = 0, $load = false) { return $o; } } + if(strpos($frontpage,'http') !== 0) + $frontpage = z_root() . '/' . $frontpage; if(intval(get_config('system','mirror_frontpage'))) { - $o = '' . t('$Projectname') . ''; + $o = '' . t('$Projectname') . ''; echo $o; killme(); } - goaway(z_root() . '/' . $frontpage); + goaway($frontpage); } diff --git a/mod/import.php b/mod/import.php index b6e36d734..72d8f92e9 100644 --- a/mod/import.php +++ b/mod/import.php @@ -441,6 +441,12 @@ function import_post(&$a) { if(is_array($data['chatroom'])) import_chatrooms($channel,$data['chatroom']); + if(is_array($data['conv'])) + import_conv($channel,$data['conv']); + + if(is_array($data['mail'])) + import_mail($channel,$data['mail']); + if(is_array($data['event'])) import_events($channel,$data['event']); 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' => '')); + } } diff --git a/mod/mail.php b/mod/mail.php index e4a5ebafd..884c41565 100644 --- a/mod/mail.php +++ b/mod/mail.php @@ -97,7 +97,11 @@ function mail_post(&$a) { $ret = send_message(0, $recipient, $body, $subject, $replyto, $expires); - if(! $ret['success']) { + if($ret['success']) { + xchan_mail_query($ret['mail']); + build_sync_packet(0,array('conv' => array($ret['conv']),'mail' => array(encode_mail($ret['mail'],true)))); + } + else { notice($ret['message']); } @@ -149,6 +153,14 @@ function mail_content(&$a) { intval(argv(3)), intval(local_channel()) ); + $x = q("select * from mail where id = %d and channel_id = %d", + intval(argv(3)), + intval(local_channel()) + ); + if($x) { + build_sync_packet(local_channel(),array('mail' => encode_mail($x[0],true))); + } + proc_run('php','include/notifier.php','mail',intval(argv(3))); if($r) { @@ -185,68 +197,48 @@ function mail_content(&$a) { $a->page['htmlhead'] .= $header; - - $preselect = (isset($a->argv[2])?array($a->argv[2]):false); - $prename = $preurl = $preid = ''; - + $prename = ''; + $preid = ''; + if(x($_REQUEST,'hash')) { + $r = q("select abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d and abook_xchan = '%s' limit 1", intval(local_channel()), dbesc($_REQUEST['hash']) ); - if($r) { - $prename = $r[0]['xchan_name']; - $preurl = $r[0]['xchan_url']; - $preid = $r[0]['abook_id']; - $preselect = array($preid); + + if(!$r) { + $r = q("select * from xchan where xchan_hash = '%s' and xchan_network = 'zot' limit 1", + dbesc($_REQUEST['hash']) + ); } - } - - if($preselect) { - $r = q("select abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash - where abook_channel = %d and abook_id = %d limit 1", - intval(local_channel()), - intval(argv(2)) - ); if($r) { - $prename = $r[0]['xchan_name']; + $prename = (($r[0]['abook_id']) ? $r[0]['xchan_name'] : $r[0]['xchan_addr']); $preurl = $r[0]['xchan_url']; - $preid = $r[0]['abook_id']; + $preid = (($r[0]['abook_id']) ? ($r[0]['xchan_hash']) : ''); + } + else { + notice( t('Requested channel is not in this network') . EOL ); } - } - $prefill = (($preselect) ? $prename : ''); - - if(! $prefill) { - if(array_key_exists('to',$_REQUEST)) - $prefill = $_REQUEST['to']; } - // the ugly select box - - $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', - '$prefill' => $prefill, - '$autocomp' => $autocomp, + '$prefill' => $prename, '$preid' => $preid, '$subject' => t('Subject:'), '$subjtxt' => ((x($_REQUEST,'subject')) ? strip_tags($_REQUEST['subject']) : ''), '$text' => ((x($_REQUEST,'body')) ? htmlspecialchars($_REQUEST['body'], ENT_COMPAT, 'UTF-8') : ''), - '$readonly' => '', '$yourmessage' => t('Your message:'), - '$select' => $select, '$parent' => '', - '$upload' => t('Upload photo'), '$attach' => t('Attach file'), '$insert' => t('Insert web link'), - '$wait' => t('Please wait'), '$submit' => t('Send'), '$defexpire' => '', '$feature_expire' => ((feature_enabled(local_channel(),'content_expire')) ? true : false), @@ -254,8 +246,6 @@ function mail_content(&$a) { '$feature_encrypt' => ((feature_enabled(local_channel(),'content_encrypt')) ? true : false), '$encrypt' => t('Encrypt text'), '$cipher' => $cipher, - - )); return $o; @@ -285,7 +275,14 @@ function mail_content(&$a) { // if( local_channel() && feature_enabled(local_channel(),'richtext') ) // $plaintext = false; - $messages = private_messages_fetch_conversation(local_channel(), $mid, true); + + + if($mailbox == 'combined') { + $messages = private_messages_fetch_conversation(local_channel(), $mid, true); + } + else { + $messages = private_messages_fetch_message(local_channel(), $mid, true); + } if(! $messages) { //info( t('Message not found.') . EOL); @@ -324,6 +321,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 +331,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.') : ''), @@ -345,10 +344,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, @@ -364,19 +359,16 @@ 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 (%s):'), $message[$recp]['xchan_name'], $message[$recp]['xchan_addr']), '$text' => '', - '$select' => $select, - '$parent' => $parent, - '$upload' => t('Upload photo'), + '$parent' => $message['parent_mid'], + '$recphash' => $message[$recp]['xchan_hash'], '$attach' => t('Attach file'), '$insert' => t('Insert web link'), '$submit' => t('Submit'), - '$wait' => t('Please wait'), '$defexpire' => '', '$feature_expire' => ((feature_enabled(local_channel(),'content_expire')) ? true : false), '$expires' => t('Set expiration date'), diff --git a/mod/photos.php b/mod/photos.php index cd293b39d..0442a5d24 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -149,8 +149,9 @@ function photos_post(&$a) { if($r) { foreach($r as $i) { attach_delete($page_owner_uid, $i['resource_id'], 1 ); - drop_item($i['id'],false,DROPITEM_PHASE1,true /* force removal of linked items */); - proc_run('php','include/notifier.php','drop',$i['id']); + // This is now being done in attach_delete() + // drop_item($i['id'],false,DROPITEM_PHASE1,true /* force removal of linked items */); + // proc_run('php','include/notifier.php','drop',$i['id']); } } @@ -182,12 +183,17 @@ function photos_post(&$a) { ); if($r) { + + /* this happens in attach_delete q("DELETE FROM `photo` WHERE `uid` = %d AND `resource_id` = '%s'", intval($page_owner_uid), dbesc($r[0]['resource_id']) ); + */ + attach_delete($page_owner_uid, $r[0]['resource_id'], 1 ); + /* this happens in attach_delete $i = q("SELECT * FROM `item` WHERE `resource_id` = '%s' AND resource_type = 'photo' and `uid` = %d LIMIT 1", dbesc($r[0]['resource_id']), intval($page_owner_uid) @@ -196,6 +202,7 @@ function photos_post(&$a) { drop_item($i[0]['id'],true,DROPITEM_PHASE1); $url = $a->get_baseurl(); } + */ } goaway($a->get_baseurl() . '/photos/' . $a->data['channel']['channel_address'] . '/album/' . $_SESSION['album_return']); @@ -229,15 +236,46 @@ function photos_post(&$a) { intval($page_owner_uid) ); if(count($r)) { - $ph = photo_factory(dbunescbin($r[0]['data']), $r[0]['type']); + $d = (($r[0]['os_storage']) ? @file_get_contents($r[0]['data']) : dbunescbin($r[0]['data'])); + $ph = photo_factory($d, $r[0]['type']); if($ph->is_valid()) { $rotate_deg = ( (intval($_POST['rotate']) == 1) ? 270 : 90 ); $ph->rotate($rotate_deg); $width = $ph->getWidth(); $height = $ph->getHeight(); + + if(intval($r[0]['os_storage'])) { + @file_put_contents($r[0]['data'],$ph->imageString()); + $data = $r[0]['data']; + $fsize = @filesize($r[0]['data']); + q("update attach set filesize = %d where hash = '%s' and uid = %d limit 1", + intval($fsize), + dbesc($resource_id), + intval($page_owner_uid) + ); + } + else { + $data = $ph->imageString(); + $fsize = strlen($data); + } - $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 0", + $x = q("update photo set data = '%s', `size` = %d, height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 0", + dbescbin($data), + intval($fsize), + intval($height), + intval($width), + dbesc($resource_id), + intval($page_owner_uid) + ); + + if($width > 1024 || $height > 1024) + $ph->scaleImage(1024); + + $width = $ph->getWidth(); + $height = $ph->getHeight(); + + $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 1", dbescbin($ph->imageString()), intval($height), intval($width), @@ -245,38 +283,40 @@ function photos_post(&$a) { intval($page_owner_uid) ); - if($width > 640 || $height > 640) { + + if($width > 640 || $height > 640) $ph->scaleImage(640); - $width = $ph->getWidth(); - $height = $ph->getHeight(); - - $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 1", - dbescbin($ph->imageString()), - intval($height), - intval($width), - dbesc($resource_id), - intval($page_owner_uid) - ); - } - if($width > 320 || $height > 320) { + $width = $ph->getWidth(); + $height = $ph->getHeight(); + + $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 2", + dbescbin($ph->imageString()), + intval($height), + intval($width), + dbesc($resource_id), + intval($page_owner_uid) + ); + + + if($width > 320 || $height > 320) $ph->scaleImage(320); - $width = $ph->getWidth(); - $height = $ph->getHeight(); - $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 2", - dbescbin($ph->imageString()), - intval($height), - intval($width), - dbesc($resource_id), - intval($page_owner_uid) - ); - } + $width = $ph->getWidth(); + $height = $ph->getHeight(); + + $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 3", + dbescbin($ph->imageString()), + intval($height), + intval($width), + dbesc($resource_id), + intval($page_owner_uid) + ); } } } - $p = q("SELECT * FROM `photo` WHERE `resource_id` = '%s' AND `uid` = %d ORDER BY `scale` DESC", + $p = q("SELECT type, is_nsfw, description, resource_id, scale, allow_cid, allow_gid, deny_cid, deny_gid FROM photo WHERE resource_id = '%s' AND uid = %d ORDER BY scale DESC", dbesc($resource_id), intval($page_owner_uid) ); @@ -982,13 +1022,13 @@ function photos_content(&$a) { $likebuttons = ''; if($can_post || $can_comment) { - $likebuttons = replace_macros($like_tpl,array( - '$id' => $link_item['id'], - '$likethis' => t("I like this \x28toggle\x29"), - '$nolike' => t("I don't like this \x28toggle\x29"), - '$share' => t('Share'), - '$wait' => t('Please wait') - )); + $likebuttons = array( + 'id' => $link_item['id'], + 'likethis' => t("I like this \x28toggle\x29"), + 'nolike' => t("I don't like this \x28toggle\x29"), + 'share' => t('Share'), + 'wait' => t('Please wait') + ); } $comments = ''; diff --git a/mod/setup.php b/mod/setup.php index 15820f14e..e5ac25965 100755 --- a/mod/setup.php +++ b/mod/setup.php @@ -292,7 +292,7 @@ function setup_content(&$a) { case 2: { // Database config - $dbhost = ((x($_POST,'dbhost')) ? notags(trim($_POST['dbhost'])) : 'localhost'); + $dbhost = ((x($_POST,'dbhost')) ? notags(trim($_POST['dbhost'])) : '127.0.0.1'); $dbuser = notags(trim($_POST['dbuser'])); $dbport = intval(notags(trim($_POST['dbport']))); $dbpass = notags(trim($_POST['dbpass'])); @@ -312,7 +312,7 @@ function setup_content(&$a) { '$status' => $wizard_status, - '$dbhost' => array('dbhost', t('Database Server Name'), $dbhost, t('Default is localhost')), + '$dbhost' => array('dbhost', t('Database Server Name'), $dbhost, t('Default is 127.0.0.1')), '$dbport' => array('dbport', t('Database Port'), $dbport, t('Communication port number - use 0 for default')), '$dbuser' => array('dbuser', t('Database Login Name'), $dbuser, ''), '$dbpass' => array('dbpass', t('Database Login Password'), $dbpass, ''), @@ -334,7 +334,7 @@ function setup_content(&$a) { }; break; case 3: { // Site settings require_once('include/datetime.php'); - $dbhost = ((x($_POST,'dbhost')) ? notags(trim($_POST['dbhost'])) : 'localhost'); + $dbhost = ((x($_POST,'dbhost')) ? notags(trim($_POST['dbhost'])) : '127.0.0.1'); $dbport = intval(notags(trim($_POST['dbuser']))); $dbuser = notags(trim($_POST['dbuser'])); $dbpass = notags(trim($_POST['dbpass'])); diff --git a/mod/siteinfo.php b/mod/siteinfo.php index 14aaef144..2fffccc73 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -165,7 +165,7 @@ function siteinfo_content(&$a) { '$loadavg_all' => $loadavg[0] . ', ' . $loadavg[1] . ', ' . $loadavg[2], '$commit' => $commit, '$web_location' => t('Running at web location') . ' ' . z_root(), - '$visit' => t('Please visit redmatrix.me to learn more about $Projectname.'), + '$visit' => t('Please visit hubzilla.org to learn more about $Projectname.'), '$bug_text' => t('Bug reports and issues: please visit'), '$bug_link_url' => 'https://github.com/redmatrix/hubzilla/issues', '$bug_link_text' => t('$projectname issues'), diff --git a/util/hmessages.po b/util/hmessages.po index 338635b74..46f81c2be 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-15.1186\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-26 22:48-0700\n" +"POT-Creation-Date: 2015-10-16 00:03-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,74 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: ../../include/photos.php:26 ../../include/chat.php:133 +#: ../../include/items.php:4378 ../../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:875 ../../include/attach.php:946 +#: ../../include/attach.php:1098 ../../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/rate.php:111 ../../mod/mail.php:118 +#: ../../mod/editpost.php:13 ../../mod/editblock.php:65 ../../mod/item.php:206 +#: ../../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/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/channel.php:100 ../../mod/channel.php:214 +#: ../../mod/channel.php:254 ../../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 "" + +#: ../../include/photos.php:109 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" + +#: ../../include/photos.php:116 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 +msgid "Unable to process image" +msgstr "" + +#: ../../include/photos.php:228 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:431 ../../include/conversation.php:1609 +msgid "Photo Albums" +msgstr "" + +#: ../../include/photos.php:435 +msgid "Upload New Photos" +msgstr "" + #: ../../include/Import/import_diaspora.php:17 msgid "No username found in import file." msgstr "" @@ -25,7 +93,7 @@ msgstr "" msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:480 +#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:486 msgid "Import completed." msgstr "" @@ -34,7 +102,7 @@ msgstr "" msgid "parent" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2497 +#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2490 msgid "Collection" msgstr "" @@ -58,9 +126,9 @@ msgstr "" msgid "Schedule Outbox" msgstr "" -#: ../../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 +#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:355 +#: ../../include/apps.php:410 ../../include/conversation.php:1023 +#: ../../mod/photos.php:747 ../../mod/photos.php:1186 msgid "Unknown" msgstr "" @@ -74,8 +142,8 @@ msgstr "" msgid "%1$s used of %2$s (%3$s%)" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/conversation.php:1611 -#: ../../include/apps.php:135 ../../include/nav.php:93 +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/apps.php:135 +#: ../../include/conversation.php:1613 ../../include/nav.php:93 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "" @@ -96,8 +164,8 @@ msgid "Create" msgstr "" #: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:745 -#: ../../mod/photos.php:1278 ../../mod/profile_photo.php:450 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:772 +#: ../../mod/photos.php:1305 ../../mod/profile_photo.php:450 msgid "Upload" msgstr "" @@ -131,10 +199,10 @@ msgstr "" msgid "Edit" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/conversation.php:662 -#: ../../include/apps.php:255 ../../include/ItemObject.php:120 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/apps.php:255 +#: ../../include/ItemObject.php:120 ../../include/conversation.php:657 #: ../../mod/connedit.php:547 ../../mod/editblock.php:181 -#: ../../mod/admin.php:783 ../../mod/admin.php:942 ../../mod/photos.php:1090 +#: ../../mod/admin.php:783 ../../mod/admin.php:942 ../../mod/photos.php:1117 #: ../../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 @@ -294,50 +362,6 @@ msgstr "" msgid "Room not found." msgstr "" -#: ../../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 "" - #: ../../include/chat.php:143 msgid "Room is full" msgstr "" @@ -355,7 +379,7 @@ msgstr "" msgid "Required" msgstr "" -#: ../../include/datetime.php:262 ../../boot.php:2306 +#: ../../include/datetime.php:262 ../../boot.php:2312 msgid "never" msgstr "" @@ -698,12 +722,12 @@ msgstr "" msgid "Delete this item?" msgstr "" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:673 -#: ../../mod/photos.php:1008 ../../mod/photos.php:1126 +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:683 +#: ../../mod/photos.php:1035 ../../mod/photos.php:1153 msgid "Comment" msgstr "" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:390 +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:400 msgid "[+] show all" msgstr "" @@ -756,7 +780,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 "" @@ -764,18 +788,19 @@ msgstr "" msgid "Describe (optional)" msgstr "" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:674 +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:684 #: ../../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/chat.php:209 ../../mod/rate.php:168 ../../mod/mail.php:371 +#: ../../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:625 +#: ../../mod/photos.php:996 ../../mod/photos.php:1036 +#: ../../mod/photos.php:1154 ../../mod/events.php:534 ../../mod/events.php:710 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/import.php:517 ../../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 @@ -1083,7 +1108,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 "" @@ -1134,8 +1159,8 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/Contact.php:101 ../../include/conversation.php:947 -#: ../../include/identity.php:941 ../../include/widgets.php:136 +#: ../../include/Contact.php:101 ../../include/identity.php:965 +#: ../../include/conversation.php:949 ../../include/widgets.php:136 #: ../../include/widgets.php:174 ../../mod/directory.php:316 #: ../../mod/match.php:64 ../../mod/suggest.php:52 msgid "Connect" @@ -1159,864 +1184,106 @@ msgstr "" msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../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" +#: ../../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/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" +#: ../../include/items.php:1129 ../../include/items.php:1175 +msgid "(Unknown)" msgstr "" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" +#: ../../include/items.php:1373 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/conversation.php:148 ../../include/text.php:1838 -#: ../../mod/like.php:361 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:172 -msgid "status" +#: ../../include/items.php:1375 +msgid "Visible to you only." msgstr "" -#: ../../include/conversation.php:150 ../../include/text.php:1840 -#: ../../mod/tagger.php:53 -msgid "comment" +#: ../../include/items.php:1377 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/conversation.php:164 ../../mod/like.php:410 +#: ../../include/items.php:1379 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1381 #, php-format -msgid "%1$s likes %2$s's %3$s" +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/conversation.php:167 ../../mod/like.php:412 +#: ../../include/items.php:1383 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1385 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1387 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:4299 ../../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:4808 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "" + +#: ../../include/items.php:4824 +msgid "Collection is empty." +msgstr "" + +#: ../../include/items.php:4831 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" +msgid "Collection: %s" msgstr "" -#: ../../include/conversation.php:204 +#: ../../include/items.php:4841 ../../mod/connedit.php:658 #, php-format -msgid "%1$s is now connected with %2$s" +msgid "Connection: %s" msgstr "" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/items.php:4843 +msgid "Connection not found." msgstr "" -#: ../../include/conversation.php:243 ../../include/text.php:933 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "" - -#: ../../include/conversation.php:574 ../../mod/photos.php:1024 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../include/conversation.php:574 ../../mod/photos.php:1024 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../include/conversation.php:575 ../../mod/photos.php:1025 -msgctxt "title" -msgid "Agree" -msgstr "" - -#: ../../include/conversation.php:575 ../../mod/photos.php:1025 -msgctxt "title" -msgid "Disagree" -msgstr "" - -#: ../../include/conversation.php:575 ../../mod/photos.php:1025 -msgctxt "title" -msgid "Abstain" -msgstr "" - -#: ../../include/conversation.php:576 ../../mod/photos.php:1026 -msgctxt "title" -msgid "Attending" -msgstr "" - -#: ../../include/conversation.php:576 ../../mod/photos.php:1026 -msgctxt "title" -msgid "Not attending" -msgstr "" - -#: ../../include/conversation.php:576 ../../mod/photos.php:1026 -msgctxt "title" -msgid "Might attend" -msgstr "" - -#: ../../include/conversation.php:661 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "" - -#: ../../include/conversation.php:669 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "" - -#: ../../include/conversation.php:676 ../../include/ItemObject.php:227 -msgid "Message signature validated" -msgstr "" - -#: ../../include/conversation.php:677 ../../include/ItemObject.php:228 -msgid "Message signature incorrect" -msgstr "" - -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:709 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:710 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:718 ../../include/ItemObject.php:314 -#, php-format -msgid "from %s" -msgstr "" - -#: ../../include/conversation.php:721 ../../include/ItemObject.php:317 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/conversation.php:722 ../../include/ItemObject.php:318 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../include/conversation.php:737 -msgid "View in context" -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/editwebpage.php:190 -msgid "Please wait" -msgstr "" - -#: ../../include/conversation.php:848 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:852 ../../include/nav.php:241 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:853 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:941 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:942 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:943 -msgid "View Status" -msgstr "" - -#: ../../include/conversation.php:944 ../../include/nav.php:86 -#: ../../mod/connedit.php:494 -msgid "View Profile" -msgstr "" - -#: ../../include/conversation.php:945 -msgid "View Photos" -msgstr "" - -#: ../../include/conversation.php:946 -msgid "Activity/Posts" -msgstr "" - -#: ../../include/conversation.php:948 -msgid "Edit Connection" -msgstr "" - -#: ../../include/conversation.php:949 -msgid "Send PM" -msgstr "" - -#: ../../include/conversation.php:950 ../../include/apps.php:145 -msgid "Poke" -msgstr "" - -#: ../../include/conversation.php:1064 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:1064 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1068 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../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] "" -msgstr[1] "" - -#: ../../include/conversation.php:1076 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1079 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1080 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1080 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1143 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/conversation.php:1144 ../../mod/mail.php:170 -#: ../../mod/mail.php:299 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../include/conversation.php:1145 -msgid "Please enter a video link/URL:" -msgstr "" - -#: ../../include/conversation.php:1146 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: ../../include/conversation.php:1147 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1148 ../../mod/filer.php:48 -msgid "Save to Folder:" -msgstr "" - -#: ../../include/conversation.php:1149 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1150 ../../mod/editpost.php:54 -#: ../../mod/mail.php:171 ../../mod/mail.php:300 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../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 "" - -#: ../../include/conversation.php:1177 ../../mod/layouts.php:184 -#: ../../mod/photos.php:989 ../../mod/webpages.php:182 -#: ../../mod/blocks.php:154 -msgid "Share" -msgstr "" - -#: ../../include/conversation.php:1179 -msgid "Page link name" -msgstr "" - -#: ../../include/conversation.php:1182 -msgid "Post as" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/conversation.php:1190 -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/editlayout.php:141 ../../mod/editwebpage.php:183 -msgid "Attach file" -msgstr "" - -#: ../../include/conversation.php:1192 -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/editlayout.php:142 ../../mod/editwebpage.php:184 -msgid "Insert web link" -msgstr "" - -#: ../../include/conversation.php:1194 -msgid "web link" -msgstr "" - -#: ../../include/conversation.php:1195 -msgid "Insert video link" -msgstr "" - -#: ../../include/conversation.php:1196 -msgid "video link" -msgstr "" - -#: ../../include/conversation.php:1197 -msgid "Insert audio link" -msgstr "" - -#: ../../include/conversation.php:1198 -msgid "audio link" -msgstr "" - -#: ../../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 "" - -#: ../../include/conversation.php:1200 -msgid "set location" -msgstr "" - -#: ../../include/conversation.php:1201 ../../mod/editpost.php:127 -msgid "Toggle voting" -msgstr "" - -#: ../../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 "" - -#: ../../include/conversation.php:1205 -msgid "clear location" -msgstr "" - -#: ../../include/conversation.php:1207 ../../mod/editpost.php:142 -#: ../../mod/editblock.php:162 ../../mod/editwebpage.php:205 -msgid "Title (optional)" -msgstr "" - -#: ../../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 "" - -#: ../../include/conversation.php:1213 ../../mod/editpost.php:131 -#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:191 -msgid "Permission settings" -msgstr "" - -#: ../../include/conversation.php:1214 -msgid "permissions" -msgstr "" - -#: ../../include/conversation.php:1222 ../../mod/editpost.php:139 -#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:200 -msgid "Public post" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/conversation.php:1239 ../../include/ItemObject.php:686 -#: ../../mod/editpost.php:158 ../../mod/mail.php:243 ../../mod/mail.php:370 -msgid "Encrypt text" -msgstr "" - -#: ../../include/conversation.php:1241 ../../mod/editpost.php:160 -#: ../../mod/events.php:691 -msgid "OK" -msgstr "" - -#: ../../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 "" - -#: ../../include/conversation.php:1485 -msgid "Discover" -msgstr "" - -#: ../../include/conversation.php:1488 -msgid "Imported public streams" -msgstr "" - -#: ../../include/conversation.php:1493 -msgid "Commented Order" -msgstr "" - -#: ../../include/conversation.php:1496 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../include/conversation.php:1500 -msgid "Posted Order" -msgstr "" - -#: ../../include/conversation.php:1503 -msgid "Sort by Post Date" -msgstr "" - -#: ../../include/conversation.php:1508 ../../include/widgets.php:94 -msgid "Personal" -msgstr "" - -#: ../../include/conversation.php:1511 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../include/conversation.php:1517 ../../mod/menu.php:112 -#: ../../mod/connections.php:72 ../../mod/connections.php:82 -msgid "New" -msgstr "" - -#: ../../include/conversation.php:1520 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../include/conversation.php:1526 -msgid "Starred" -msgstr "" - -#: ../../include/conversation.php:1529 -msgid "Favourite Posts" -msgstr "" - -#: ../../include/conversation.php:1536 -msgid "Spam" -msgstr "" - -#: ../../include/conversation.php:1539 -msgid "Posts flagged as SPAM" -msgstr "" - -#: ../../include/conversation.php:1583 ../../mod/admin.php:947 -msgid "Channel" -msgstr "" - -#: ../../include/conversation.php:1586 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/conversation.php:1595 -msgid "About" -msgstr "" - -#: ../../include/conversation.php:1598 -msgid "Profile Details" -msgstr "" - -#: ../../include/conversation.php:1604 ../../include/apps.php:139 -#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "" - -#: ../../include/conversation.php:1607 ../../include/photos.php:422 -msgid "Photo Albums" -msgstr "" - -#: ../../include/conversation.php:1614 -msgid "Files and Storage" -msgstr "" - -#: ../../include/conversation.php:1624 ../../include/conversation.php:1627 -msgid "Chatrooms" -msgstr "" - -#: ../../include/conversation.php:1637 ../../include/apps.php:129 -#: ../../include/nav.php:103 -msgid "Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1640 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1647 ../../include/apps.php:136 -#: ../../include/nav.php:107 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "" - -#: ../../include/conversation.php:1650 -msgid "Manage Webpages" -msgstr "" - -#: ../../include/conversation.php:1679 ../../include/ItemObject.php:175 -#: ../../include/ItemObject.php:187 ../../mod/photos.php:1043 -#: ../../mod/photos.php:1055 -msgid "View all" -msgstr "" - -#: ../../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] "" -msgstr[1] "" - -#: ../../include/conversation.php:1706 ../../include/ItemObject.php:184 -#: ../../mod/photos.php:1052 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1709 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1712 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1715 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1718 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1721 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1724 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/api.php:1290 +#: ../../include/api.php:1321 msgid "Public Timeline" msgstr "" -#: ../../include/photos.php:109 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:116 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 -msgid "Unable to process image" -msgstr "" - -#: ../../include/photos.php:219 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:426 -msgid "Upload New Photos" -msgstr "" - -#: ../../include/enotify.php:57 ../../include/network.php:1613 -msgid "$Projectname Notification" -msgstr "" - -#: ../../include/enotify.php:58 ../../include/network.php:1614 -msgid "$projectname" -msgstr "" - -#: ../../include/enotify.php:60 ../../include/network.php:1616 -msgid "Thank You," -msgstr "" - -#: ../../include/enotify.php:62 ../../include/network.php:1618 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../include/enotify.php:96 -#, php-format -msgid "%s " -msgstr "" - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "" - -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "" - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../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 "" - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "" - -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "" - -#: ../../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 "" - -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "" - #: ../../include/network.php:635 msgid "view full size" msgstr "" -#: ../../include/network.php:1660 ../../include/account.php:314 -#: ../../include/account.php:341 ../../include/account.php:401 +#: ../../include/network.php:1613 ../../include/enotify.php:57 +msgid "$Projectname Notification" +msgstr "" + +#: ../../include/network.php:1614 ../../include/enotify.php:58 +msgid "$projectname" +msgstr "" + +#: ../../include/network.php:1616 ../../include/enotify.php:60 +msgid "Thank You," +msgstr "" + +#: ../../include/network.php:1618 ../../include/enotify.php:62 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: ../../include/network.php:1660 ../../include/account.php:316 +#: ../../include/account.php:343 ../../include/account.php:403 msgid "Administrator" msgstr "" @@ -2029,258 +1296,6 @@ msgstr "" msgid "%1$s's bookmarks" msgstr "" -#: ../../include/text.php:391 -msgid "prev" -msgstr "" - -#: ../../include/text.php:393 -msgid "first" -msgstr "" - -#: ../../include/text.php:422 -msgid "last" -msgstr "" - -#: ../../include/text.php:425 -msgid "next" -msgstr "" - -#: ../../include/text.php:435 -msgid "older" -msgstr "" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "" - -#: ../../include/text.php:775 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:787 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:800 ../../mod/viewconnections.php:101 -msgid "View Connections" -msgstr "" - -#: ../../include/text.php:857 ../../include/text.php:869 -#: ../../include/apps.php:147 ../../include/nav.php:159 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "" - -#: ../../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 "" - -#: ../../include/text.php:933 -msgid "poke" -msgstr "" - -#: ../../include/text.php:934 -msgid "ping" -msgstr "" - -#: ../../include/text.php:934 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:935 -msgid "prod" -msgstr "" - -#: ../../include/text.php:935 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:936 -msgid "slap" -msgstr "" - -#: ../../include/text.php:936 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:937 -msgid "finger" -msgstr "" - -#: ../../include/text.php:937 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:938 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:938 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:948 -msgid "happy" -msgstr "" - -#: ../../include/text.php:949 -msgid "sad" -msgstr "" - -#: ../../include/text.php:950 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:951 -msgid "tired" -msgstr "" - -#: ../../include/text.php:952 -msgid "perky" -msgstr "" - -#: ../../include/text.php:953 -msgid "angry" -msgstr "" - -#: ../../include/text.php:954 -msgid "stupified" -msgstr "" - -#: ../../include/text.php:955 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:956 -msgid "interested" -msgstr "" - -#: ../../include/text.php:957 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:958 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:959 -msgid "alive" -msgstr "" - -#: ../../include/text.php:960 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:961 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:962 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:963 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:964 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:965 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:966 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:967 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:968 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1144 -msgid "May" -msgstr "" - -#: ../../include/text.php:1247 -msgid "unknown.???" -msgstr "" - -#: ../../include/text.php:1248 -msgid "bytes" -msgstr "" - -#: ../../include/text.php:1284 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1359 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1443 ../../include/text.php:1454 -msgid "Click to open/close" -msgstr "" - -#: ../../include/text.php:1609 ../../mod/events.php:497 -msgid "Link to Source" -msgstr "" - -#: ../../include/text.php:1630 ../../include/text.php:1701 -msgid "default" -msgstr "" - -#: ../../include/text.php:1638 -msgid "Page layout" -msgstr "" - -#: ../../include/text.php:1638 -msgid "You can create your own with the layouts tool" -msgstr "" - -#: ../../include/text.php:1679 -msgid "Page content type" -msgstr "" - -#: ../../include/text.php:1713 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/text.php:1845 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2140 -msgid "Design Tools" -msgstr "" - -#: ../../include/text.php:2143 ../../mod/blocks.php:147 -msgid "Blocks" -msgstr "" - -#: ../../include/text.php:2144 ../../mod/menu.php:103 -msgid "Menus" -msgstr "" - -#: ../../include/text.php:2145 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "" - -#: ../../include/text.php:2146 -msgid "Pages" -msgstr "" - #: ../../include/acl_selectors.php:239 msgid "Visible to your default audience" msgstr "" @@ -2294,78 +1309,16 @@ msgid "Don't show" msgstr "" #: ../../include/acl_selectors.php:247 ../../mod/filestorage.php:147 -#: ../../mod/chat.php:207 ../../mod/photos.php:592 ../../mod/photos.php:962 +#: ../../mod/chat.php:207 ../../mod/photos.php:619 ../../mod/photos.php:989 #: ../../mod/events.php:708 ../../mod/thing.php:310 ../../mod/thing.php:356 msgid "Permissions" msgstr "" -#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:361 -#: ../../mod/photos.php:1179 +#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:371 +#: ../../mod/photos.php:1206 msgid "Close" msgstr "" -#: ../../include/attach.php:243 ../../include/attach.php:329 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:471 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:489 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:507 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:632 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:645 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:793 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:806 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:854 ../../include/attach.php:870 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:916 ../../include/attach.php:1069 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:942 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:965 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:1023 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:1027 -msgid "database storage failed." -msgstr "" - -#: ../../include/attach.php:1075 -msgid "Empty path" -msgstr "" - #: ../../include/import.php:23 msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." @@ -2397,6 +1350,14 @@ msgstr "" msgid "View" msgstr "" +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:693 +#: ../../include/conversation.php:1160 ../../mod/editpost.php:150 +#: ../../mod/editblock.php:171 ../../mod/photos.php:1037 +#: ../../mod/events.php:707 ../../mod/webpages.php:188 +#: ../../mod/editwebpage.php:212 +msgid "Preview" +msgstr "" + #: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 msgid "Actions" msgstr "" @@ -2420,7 +1381,7 @@ msgid "Edited" msgstr "" #: ../../include/photo/photo_driver.php:705 ../../mod/photos.php:94 -#: ../../mod/photos.php:660 ../../mod/profile_photo.php:146 +#: ../../mod/photos.php:687 ../../mod/profile_photo.php:146 #: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:376 msgid "Profile Photos" msgstr "" @@ -2691,7 +1652,7 @@ msgid "Finishes:" msgstr "" #: ../../include/event.php:50 ../../include/bb2diaspora.php:481 -#: ../../include/identity.php:992 ../../mod/directory.php:302 +#: ../../include/identity.php:1016 ../../mod/directory.php:302 #: ../../mod/events.php:701 msgid "Location:" msgstr "" @@ -2700,6 +1661,12 @@ msgstr "" msgid "This event has been added to your calendar." msgstr "" +#: ../../include/event.php:896 ../../include/text.php:1827 +#: ../../include/conversation.php:123 ../../mod/like.php:363 +#: ../../mod/tagger.php:47 ../../mod/events.php:245 +msgid "event" +msgstr "" + #: ../../include/event.php:953 msgid "Not specified" msgstr "" @@ -2724,11 +1691,16 @@ msgstr "" msgid "Site Admin" msgstr "" +#: ../../include/apps.php:129 ../../include/conversation.php:1639 +#: ../../include/nav.php:103 +msgid "Bookmarks" +msgstr "" + #: ../../include/apps.php:130 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 "" @@ -2737,8 +1709,8 @@ msgstr "" msgid "Channel Manager" msgstr "" -#: ../../include/apps.php:133 -msgid "Matrix" +#: ../../include/apps.php:133 ../../include/nav.php:174 +msgid "Grid" msgstr "" #: ../../include/apps.php:134 ../../include/widgets.php:553 @@ -2746,15 +1718,25 @@ msgstr "" msgid "Settings" msgstr "" +#: ../../include/apps.php:136 ../../include/conversation.php:1649 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "" + #: ../../include/apps.php:137 ../../include/nav.php:177 msgid "Channel Home" msgstr "" -#: ../../include/apps.php:138 ../../include/identity.php:1226 -#: ../../include/identity.php:1343 ../../mod/profperm.php:112 +#: ../../include/apps.php:138 ../../include/identity.php:1250 +#: ../../include/identity.php:1367 ../../mod/profperm.php:112 msgid "Profile" msgstr "" +#: ../../include/apps.php:139 ../../include/conversation.php:1606 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "" + #: ../../include/apps.php:140 ../../include/nav.php:196 #: ../../mod/events.php:526 msgid "Events" @@ -2777,10 +1759,20 @@ msgstr "" msgid "Mood" msgstr "" +#: ../../include/apps.php:145 ../../include/conversation.php:952 +msgid "Poke" +msgstr "" + #: ../../include/apps.php:146 ../../include/nav.php:97 msgid "Chat" msgstr "" +#: ../../include/apps.php:147 ../../include/text.php:857 +#: ../../include/text.php:869 ../../include/nav.php:159 +#: ../../mod/search.php:38 +msgid "Search" +msgstr "" + #: ../../include/apps.php:148 msgid "Probe" msgstr "" @@ -2827,6 +1819,277 @@ msgstr "" msgid "Purchase" msgstr "" +#: ../../include/text.php:391 +msgid "prev" +msgstr "" + +#: ../../include/text.php:393 +msgid "first" +msgstr "" + +#: ../../include/text.php:422 +msgid "last" +msgstr "" + +#: ../../include/text.php:425 +msgid "next" +msgstr "" + +#: ../../include/text.php:435 +msgid "older" +msgstr "" + +#: ../../include/text.php:437 +msgid "newer" +msgstr "" + +#: ../../include/text.php:775 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:787 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:800 ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "" + +#: ../../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 "" + +#: ../../include/text.php:933 +msgid "poke" +msgstr "" + +#: ../../include/text.php:933 ../../include/conversation.php:243 +msgid "poked" +msgstr "" + +#: ../../include/text.php:934 +msgid "ping" +msgstr "" + +#: ../../include/text.php:934 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:935 +msgid "prod" +msgstr "" + +#: ../../include/text.php:935 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:936 +msgid "slap" +msgstr "" + +#: ../../include/text.php:936 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:937 +msgid "finger" +msgstr "" + +#: ../../include/text.php:937 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:938 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:938 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:948 +msgid "happy" +msgstr "" + +#: ../../include/text.php:949 +msgid "sad" +msgstr "" + +#: ../../include/text.php:950 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:951 +msgid "tired" +msgstr "" + +#: ../../include/text.php:952 +msgid "perky" +msgstr "" + +#: ../../include/text.php:953 +msgid "angry" +msgstr "" + +#: ../../include/text.php:954 +msgid "stupified" +msgstr "" + +#: ../../include/text.php:955 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:956 +msgid "interested" +msgstr "" + +#: ../../include/text.php:957 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:958 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:959 +msgid "alive" +msgstr "" + +#: ../../include/text.php:960 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:961 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:962 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:963 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:964 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:965 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:966 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:967 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:968 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1144 +msgid "May" +msgstr "" + +#: ../../include/text.php:1221 ../../include/text.php:1225 +msgid "Unknown Attachment" +msgstr "" + +#: ../../include/text.php:1227 +msgid "Attachment" +msgstr "" + +#: ../../include/text.php:1227 +msgid "Size Unknown" +msgstr "" + +#: ../../include/text.php:1263 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1340 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1425 ../../include/text.php:1436 +msgid "Click to open/close" +msgstr "" + +#: ../../include/text.php:1601 ../../mod/events.php:497 +msgid "Link to Source" +msgstr "" + +#: ../../include/text.php:1622 ../../include/text.php:1693 +msgid "default" +msgstr "" + +#: ../../include/text.php:1630 +msgid "Page layout" +msgstr "" + +#: ../../include/text.php:1630 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1671 +msgid "Page content type" +msgstr "" + +#: ../../include/text.php:1705 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/text.php:1824 ../../include/conversation.php:120 +#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "photo" +msgstr "" + +#: ../../include/text.php:1830 ../../include/conversation.php:148 +#: ../../mod/like.php:361 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "status" +msgstr "" + +#: ../../include/text.php:1832 ../../include/conversation.php:150 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "" + +#: ../../include/text.php:1837 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2132 +msgid "Design Tools" +msgstr "" + +#: ../../include/text.php:2135 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "" + +#: ../../include/text.php:2136 ../../mod/menu.php:103 +msgid "Menus" +msgstr "" + +#: ../../include/text.php:2137 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "" + +#: ../../include/text.php:2138 +msgid "Pages" +msgstr "" + #: ../../include/auth.php:131 msgid "Logged out." msgstr "" @@ -2839,6 +2102,184 @@ msgstr "" msgid "Login failed." msgstr "" +#: ../../include/enotify.php:96 +#, php-format +msgid "%s " +msgstr "" + +#: ../../include/enotify.php:100 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "" + +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "" + +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "" + +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: ../../include/enotify.php:158 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:166 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:175 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "" + +#: ../../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 "" + +#: ../../include/enotify.php:196 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "" + +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "" + +#: ../../include/enotify.php:224 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "" + +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "" + +#: ../../include/enotify.php:238 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "" + +#: ../../include/enotify.php:240 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "" + +#: ../../include/enotify.php:256 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "" + +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "" + +#: ../../include/enotify.php:270 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "" + +#: ../../include/enotify.php:271 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "" + +#: ../../include/enotify.php:272 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "" + +#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../include/enotify.php:285 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "" + +#: ../../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 "" + +#: ../../include/enotify.php:293 +msgid "Name:" +msgstr "" + +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "" + +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../include/enotify.php:511 +msgid "[Hubzilla:Notify]" +msgstr "" + #: ../../include/bb2diaspora.php:373 msgid "Attachments:" msgstr "" @@ -2847,6 +2288,245 @@ msgstr "" msgid "$Projectname event notification:" msgstr "" +#: ../../include/ItemObject.php:89 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "" + +#: ../../include/ItemObject.php:126 ../../include/conversation.php:656 +msgid "Select" +msgstr "" + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "" + +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "" + +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "" + +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "" + +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "" + +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "" + +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "" + +#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 +#: ../../include/conversation.php:1681 ../../mod/photos.php:1070 +#: ../../mod/photos.php:1082 +msgid "View all" +msgstr "" + +#: ../../include/ItemObject.php:179 ../../include/identity.php:1276 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1705 +#: ../../mod/photos.php:1074 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1708 +#: ../../mod/photos.php:1079 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "" + +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "" + +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "" + +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "" + +#: ../../include/ItemObject.php:227 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "" + +#: ../../include/ItemObject.php:228 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "" + +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "" + +#: ../../include/ItemObject.php:254 ../../mod/photos.php:1014 +msgid "I like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:317 +msgid "like" +msgstr "" + +#: ../../include/ItemObject.php:255 ../../mod/photos.php:1015 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:318 +msgid "dislike" +msgstr "" + +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "" + +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "" + +#: ../../include/ItemObject.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:303 ../../include/ItemObject.php:304 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../include/ItemObject.php:307 +msgid "to" +msgstr "" + +#: ../../include/ItemObject.php:308 +msgid "via" +msgstr "" + +#: ../../include/ItemObject.php:309 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../include/ItemObject.php:310 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../include/ItemObject.php:313 +msgid "Delivery Report" +msgstr "" + +#: ../../include/ItemObject.php:322 ../../include/conversation.php:718 +#, php-format +msgid "from %s" +msgstr "" + +#: ../../include/ItemObject.php:325 ../../include/conversation.php:721 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../include/ItemObject.php:326 ../../include/conversation.php:722 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../include/ItemObject.php:349 +msgid "Save Bookmarks" +msgstr "" + +#: ../../include/ItemObject.php:350 +msgid "Add to Calendar" +msgstr "" + +#: ../../include/ItemObject.php:359 +msgid "Mark all seen" +msgstr "" + +#: ../../include/ItemObject.php:365 ../../mod/photos.php:1200 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../include/ItemObject.php:366 ../../mod/photos.php:1201 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../include/ItemObject.php:376 ../../include/conversation.php:739 +#: ../../include/conversation.php:1214 ../../mod/editpost.php:130 +#: ../../mod/editblock.php:150 ../../mod/photos.php:1017 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:190 +msgid "Please wait" +msgstr "" + +#: ../../include/ItemObject.php:681 ../../mod/photos.php:1033 +#: ../../mod/photos.php:1151 +msgid "This is you" +msgstr "" + +#: ../../include/ItemObject.php:685 ../../include/conversation.php:1186 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 +msgid "Bold" +msgstr "" + +#: ../../include/ItemObject.php:686 ../../include/conversation.php:1187 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:137 +#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 +msgid "Italic" +msgstr "" + +#: ../../include/ItemObject.php:687 ../../include/conversation.php:1188 +#: ../../mod/editpost.php:116 ../../mod/editblock.php:138 +#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 +msgid "Underline" +msgstr "" + +#: ../../include/ItemObject.php:688 ../../include/conversation.php:1189 +#: ../../mod/editpost.php:117 ../../mod/editblock.php:139 +#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 +msgid "Quote" +msgstr "" + +#: ../../include/ItemObject.php:689 ../../include/conversation.php:1190 +#: ../../mod/editpost.php:118 ../../mod/editblock.php:140 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 +msgid "Code" +msgstr "" + +#: ../../include/ItemObject.php:690 +msgid "Image" +msgstr "" + +#: ../../include/ItemObject.php:691 +msgid "Insert Link" +msgstr "" + +#: ../../include/ItemObject.php:692 +msgid "Video" +msgstr "" + +#: ../../include/ItemObject.php:696 ../../include/conversation.php:1241 +#: ../../mod/mail.php:247 ../../mod/mail.php:376 ../../mod/editpost.php:158 +msgid "Encrypt text" +msgstr "" + #: ../../include/bbcode.php:123 ../../include/bbcode.php:793 #: ../../include/bbcode.php:796 ../../include/bbcode.php:801 #: ../../include/bbcode.php:804 ../../include/bbcode.php:807 @@ -2938,47 +2618,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 +2694,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,83 +2809,20 @@ msgstr "" msgid "add" msgstr "" -#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 -msgid "Tags" +#: ../../include/message.php:18 +msgid "No recipient provided." msgstr "" -#: ../../include/taxonomy.php:294 -msgid "Keywords" +#: ../../include/message.php:23 +msgid "[no subject]" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "have" +#: ../../include/message.php:43 +msgid "Unable to determine sender." 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" +#: ../../include/message.php:218 +msgid "Stored post could not be verified." msgstr "" #: ../../include/identity.php:32 @@ -3245,11 +2862,11 @@ msgstr "" msgid "Default Profile" msgstr "" -#: ../../include/identity.php:745 +#: ../../include/identity.php:769 msgid "Requested channel is not available." msgstr "" -#: ../../include/identity.php:791 ../../mod/achievements.php:11 +#: ../../include/identity.php:815 ../../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 @@ -3258,418 +2875,786 @@ msgstr "" msgid "Requested profile is not available." msgstr "" -#: ../../include/identity.php:954 ../../mod/profiles.php:774 +#: ../../include/identity.php:978 ../../mod/profiles.php:774 msgid "Change profile photo" msgstr "" -#: ../../include/identity.php:960 +#: ../../include/identity.php:984 msgid "Profiles" msgstr "" -#: ../../include/identity.php:960 +#: ../../include/identity.php:984 msgid "Manage/edit profiles" msgstr "" -#: ../../include/identity.php:961 ../../mod/profiles.php:775 +#: ../../include/identity.php:985 ../../mod/profiles.php:775 msgid "Create New Profile" msgstr "" -#: ../../include/identity.php:964 ../../include/nav.php:90 +#: ../../include/identity.php:988 ../../include/nav.php:90 msgid "Edit Profile" msgstr "" -#: ../../include/identity.php:976 ../../mod/profiles.php:786 +#: ../../include/identity.php:1000 ../../mod/profiles.php:786 msgid "Profile Image" msgstr "" -#: ../../include/identity.php:979 +#: ../../include/identity.php:1003 msgid "visible to everybody" msgstr "" -#: ../../include/identity.php:980 ../../mod/profiles.php:669 +#: ../../include/identity.php:1004 ../../mod/profiles.php:669 #: ../../mod/profiles.php:790 msgid "Edit visibility" msgstr "" -#: ../../include/identity.php:996 ../../include/identity.php:1236 +#: ../../include/identity.php:1020 ../../include/identity.php:1260 msgid "Gender:" msgstr "" -#: ../../include/identity.php:997 ../../include/identity.php:1280 +#: ../../include/identity.php:1021 ../../include/identity.php:1304 msgid "Status:" msgstr "" -#: ../../include/identity.php:998 ../../include/identity.php:1291 +#: ../../include/identity.php:1022 ../../include/identity.php:1315 msgid "Homepage:" msgstr "" -#: ../../include/identity.php:999 +#: ../../include/identity.php:1023 msgid "Online Now" msgstr "" -#: ../../include/identity.php:1083 ../../include/identity.php:1161 +#: ../../include/identity.php:1107 ../../include/identity.php:1185 #: ../../mod/ping.php:318 msgid "g A l F d" msgstr "" -#: ../../include/identity.php:1084 ../../include/identity.php:1162 +#: ../../include/identity.php:1108 ../../include/identity.php:1186 msgid "F d" msgstr "" -#: ../../include/identity.php:1129 ../../include/identity.php:1201 +#: ../../include/identity.php:1153 ../../include/identity.php:1225 #: ../../mod/ping.php:341 msgid "[today]" msgstr "" -#: ../../include/identity.php:1140 +#: ../../include/identity.php:1164 msgid "Birthday Reminders" msgstr "" -#: ../../include/identity.php:1141 +#: ../../include/identity.php:1165 msgid "Birthdays this week:" msgstr "" -#: ../../include/identity.php:1194 +#: ../../include/identity.php:1218 msgid "[No description]" msgstr "" -#: ../../include/identity.php:1212 +#: ../../include/identity.php:1236 msgid "Event Reminders" msgstr "" -#: ../../include/identity.php:1213 +#: ../../include/identity.php:1237 msgid "Events this week:" msgstr "" -#: ../../include/identity.php:1234 ../../mod/settings.php:1026 +#: ../../include/identity.php:1258 ../../mod/settings.php:1026 msgid "Full Name:" msgstr "" -#: ../../include/identity.php:1241 +#: ../../include/identity.php:1265 msgid "Like this channel" msgstr "" -#: ../../include/identity.php:1265 +#: ../../include/identity.php:1289 msgid "j F, Y" msgstr "" -#: ../../include/identity.php:1266 +#: ../../include/identity.php:1290 msgid "j F" msgstr "" -#: ../../include/identity.php:1273 +#: ../../include/identity.php:1297 msgid "Birthday:" msgstr "" -#: ../../include/identity.php:1277 ../../mod/directory.php:297 +#: ../../include/identity.php:1301 ../../mod/directory.php:297 msgid "Age:" msgstr "" -#: ../../include/identity.php:1286 +#: ../../include/identity.php:1310 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/identity.php:1289 ../../mod/profiles.php:691 +#: ../../include/identity.php:1313 ../../mod/profiles.php:691 msgid "Sexual Preference:" msgstr "" -#: ../../include/identity.php:1293 ../../mod/directory.php:313 +#: ../../include/identity.php:1317 ../../mod/directory.php:313 #: ../../mod/profiles.php:693 msgid "Hometown:" msgstr "" -#: ../../include/identity.php:1295 +#: ../../include/identity.php:1319 msgid "Tags:" msgstr "" -#: ../../include/identity.php:1297 ../../mod/profiles.php:694 +#: ../../include/identity.php:1321 ../../mod/profiles.php:694 msgid "Political Views:" msgstr "" -#: ../../include/identity.php:1299 +#: ../../include/identity.php:1323 msgid "Religion:" msgstr "" -#: ../../include/identity.php:1301 ../../mod/directory.php:315 +#: ../../include/identity.php:1325 ../../mod/directory.php:315 msgid "About:" msgstr "" -#: ../../include/identity.php:1303 +#: ../../include/identity.php:1327 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/identity.php:1305 ../../mod/profiles.php:697 +#: ../../include/identity.php:1329 ../../mod/profiles.php:697 msgid "Likes:" msgstr "" -#: ../../include/identity.php:1307 ../../mod/profiles.php:698 +#: ../../include/identity.php:1331 ../../mod/profiles.php:698 msgid "Dislikes:" msgstr "" -#: ../../include/identity.php:1309 +#: ../../include/identity.php:1333 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/identity.php:1311 +#: ../../include/identity.php:1335 msgid "My other channels:" msgstr "" -#: ../../include/identity.php:1313 +#: ../../include/identity.php:1337 msgid "Musical interests:" msgstr "" -#: ../../include/identity.php:1315 +#: ../../include/identity.php:1339 msgid "Books, literature:" msgstr "" -#: ../../include/identity.php:1317 +#: ../../include/identity.php:1341 msgid "Television:" msgstr "" -#: ../../include/identity.php:1319 +#: ../../include/identity.php:1343 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/identity.php:1321 +#: ../../include/identity.php:1345 msgid "Love/Romance:" msgstr "" -#: ../../include/identity.php:1323 +#: ../../include/identity.php:1347 msgid "Work/employment:" msgstr "" -#: ../../include/identity.php:1325 +#: ../../include/identity.php:1349 msgid "School/education:" msgstr "" -#: ../../include/identity.php:1345 +#: ../../include/identity.php:1369 msgid "Like this thing" msgstr "" -#: ../../include/message.php:18 -msgid "No recipient provided." +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" msgstr "" -#: ../../include/message.php:23 -msgid "[no subject]" +#: ../../include/taxonomy.php:294 +msgid "Keywords" msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." +#: ../../include/taxonomy.php:315 +msgid "have" msgstr "" -#: ../../include/message.php:203 -msgid "Stored post could not be verified." +#: ../../include/taxonomy.php:315 +msgid "has" msgstr "" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" +#: ../../include/taxonomy.php:316 +msgid "want" msgstr "" -#: ../../include/ItemObject.php:151 -msgid "I will attend" +#: ../../include/taxonomy.php:316 +msgid "wants" msgstr "" -#: ../../include/ItemObject.php:151 -msgid "I will not attend" +#: ../../include/taxonomy.php:317 +msgid "likes" msgstr "" -#: ../../include/ItemObject.php:151 -msgid "I might attend" +#: ../../include/taxonomy.php:318 +msgid "dislikes" msgstr "" -#: ../../include/ItemObject.php:161 -msgid "I agree" +#: ../../include/zot.php:683 +msgid "Invalid data packet" msgstr "" -#: ../../include/ItemObject.php:161 -msgid "I disagree" +#: ../../include/zot.php:699 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:987 -msgid "I like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:988 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "" - -#: ../../include/ItemObject.php:276 +#: ../../include/zot.php:2235 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" +msgid "Unable to verify site signature for %s" +msgstr "" -#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 +#: ../../include/zot.php:3549 +msgid "invalid target signature" +msgstr "" + +#: ../../include/attach.php:243 ../../include/attach.php:329 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:493 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:511 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:529 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:664 #, php-format -msgid "View %s's profile - %s" +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/ItemObject.php:299 -msgid "to" +#: ../../include/attach.php:678 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/ItemObject.php:300 -msgid "via" +#: ../../include/attach.php:828 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/ItemObject.php:301 -msgid "Wall-to-Wall" +#: ../../include/attach.php:841 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/ItemObject.php:302 -msgid "via Wall-To-Wall:" +#: ../../include/attach.php:889 ../../include/attach.php:905 +msgid "Path not available." msgstr "" -#: ../../include/ItemObject.php:305 -msgid "Delivery Report" +#: ../../include/attach.php:951 ../../include/attach.php:1103 +msgid "Empty pathname" msgstr "" -#: ../../include/ItemObject.php:339 -msgid "Save Bookmarks" +#: ../../include/attach.php:977 +msgid "duplicate filename or path" msgstr "" -#: ../../include/ItemObject.php:340 -msgid "Add to Calendar" +#: ../../include/attach.php:999 +msgid "Path not found." msgstr "" -#: ../../include/ItemObject.php:349 -msgid "Mark all seen" +#: ../../include/attach.php:1057 +msgid "mkdir failed." msgstr "" -#: ../../include/ItemObject.php:355 ../../mod/photos.php:1173 -msgctxt "noun" +#: ../../include/attach.php:1061 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1109 +msgid "Empty path" +msgstr "" + +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "" + +#: ../../include/conversation.php:164 ../../mod/like.php:410 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:167 ../../mod/like.php:412 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "" + +#: ../../include/conversation.php:574 ../../mod/photos.php:1051 +msgctxt "title" msgid "Likes" msgstr "" -#: ../../include/ItemObject.php:356 ../../mod/photos.php:1174 -msgctxt "noun" +#: ../../include/conversation.php:574 ../../mod/photos.php:1051 +msgctxt "title" msgid "Dislikes" msgstr "" -#: ../../include/ItemObject.php:671 ../../mod/photos.php:1006 -#: ../../mod/photos.php:1124 -msgid "This is you" +#: ../../include/conversation.php:575 ../../mod/photos.php:1052 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../include/ItemObject.php:680 -msgid "Image" +#: ../../include/conversation.php:575 ../../mod/photos.php:1052 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../include/ItemObject.php:681 -msgid "Insert Link" +#: ../../include/conversation.php:575 ../../mod/photos.php:1052 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../include/ItemObject.php:682 -msgid "Video" +#: ../../include/conversation.php:576 ../../mod/photos.php:1053 +msgctxt "title" +msgid "Attending" 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" +#: ../../include/conversation.php:576 ../../mod/photos.php:1053 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../include/items.php:1128 ../../include/items.php:1174 -msgid "(Unknown)" +#: ../../include/conversation.php:576 ../../mod/photos.php:1053 +msgctxt "title" +msgid "Might attend" 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 +#: ../../include/conversation.php:692 #, php-format -msgid "Visible to anybody on %s." +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/items.php:1381 -msgid "Visible to all connections." +#: ../../include/conversation.php:709 +msgid "Categories:" msgstr "" -#: ../../include/items.php:1383 -msgid "Visible to approved connections." +#: ../../include/conversation.php:710 +msgid "Filed under:" msgstr "" -#: ../../include/items.php:1385 -msgid "Visible to specific connections." +#: ../../include/conversation.php:737 +msgid "View in context" 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." +#: ../../include/conversation.php:850 +msgid "remove" msgstr "" -#: ../../include/items.php:4772 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Collection not found." +#: ../../include/conversation.php:854 ../../include/nav.php:241 +msgid "Loading..." msgstr "" -#: ../../include/items.php:4788 -msgid "Collection is empty." +#: ../../include/conversation.php:855 +msgid "Delete Selected Items" msgstr "" -#: ../../include/items.php:4795 +#: ../../include/conversation.php:943 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:944 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:945 +msgid "View Status" +msgstr "" + +#: ../../include/conversation.php:946 ../../include/nav.php:86 +#: ../../mod/connedit.php:494 +msgid "View Profile" +msgstr "" + +#: ../../include/conversation.php:947 +msgid "View Photos" +msgstr "" + +#: ../../include/conversation.php:948 +msgid "Activity/Posts" +msgstr "" + +#: ../../include/conversation.php:950 +msgid "Edit Connection" +msgstr "" + +#: ../../include/conversation.php:951 +msgid "Send PM" +msgstr "" + +#: ../../include/conversation.php:1066 #, php-format -msgid "Collection: %s" +msgid "%s likes this." msgstr "" -#: ../../include/items.php:4805 ../../mod/connedit.php:658 +#: ../../include/conversation.php:1066 #, php-format -msgid "Connection: %s" +msgid "%s doesn't like this." msgstr "" -#: ../../include/items.php:4807 -msgid "Connection not found." +#: ../../include/conversation.php:1070 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1072 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1078 +msgid "and" msgstr "" +#: ../../include/conversation.php:1081 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1082 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1082 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1145 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/conversation.php:1146 ../../mod/mail.php:194 +#: ../../mod/mail.php:308 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../include/conversation.php:1147 +msgid "Please enter a video link/URL:" +msgstr "" + +#: ../../include/conversation.php:1148 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: ../../include/conversation.php:1149 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1150 ../../mod/filer.php:48 +msgid "Save to Folder:" +msgstr "" + +#: ../../include/conversation.php:1151 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1152 ../../mod/mail.php:195 +#: ../../mod/mail.php:309 ../../mod/editpost.php:54 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../include/conversation.php:1179 ../../mod/layouts.php:184 +#: ../../mod/photos.php:1016 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 +msgid "Share" +msgstr "" + +#: ../../include/conversation.php:1181 +msgid "Page link name" +msgstr "" + +#: ../../include/conversation.php:1184 +msgid "Post as" +msgstr "" + +#: ../../include/conversation.php:1191 ../../mod/editpost.php:119 +#: ../../mod/editblock.php:142 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:182 +msgid "Upload photo" +msgstr "" + +#: ../../include/conversation.php:1192 +msgid "upload photo" +msgstr "" + +#: ../../include/conversation.php:1193 ../../mod/mail.php:240 +#: ../../mod/mail.php:369 ../../mod/editpost.php:120 +#: ../../mod/editblock.php:143 ../../mod/editlayout.php:141 +#: ../../mod/editwebpage.php:183 +msgid "Attach file" +msgstr "" + +#: ../../include/conversation.php:1194 +msgid "attach file" +msgstr "" + +#: ../../include/conversation.php:1195 ../../mod/mail.php:241 +#: ../../mod/mail.php:370 ../../mod/editpost.php:121 +#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 +#: ../../mod/editwebpage.php:184 +msgid "Insert web link" +msgstr "" + +#: ../../include/conversation.php:1196 +msgid "web link" +msgstr "" + +#: ../../include/conversation.php:1197 +msgid "Insert video link" +msgstr "" + +#: ../../include/conversation.php:1198 +msgid "video link" +msgstr "" + +#: ../../include/conversation.php:1199 +msgid "Insert audio link" +msgstr "" + +#: ../../include/conversation.php:1200 +msgid "audio link" +msgstr "" + +#: ../../include/conversation.php:1201 ../../mod/editpost.php:125 +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:188 +msgid "Set your location" +msgstr "" + +#: ../../include/conversation.php:1202 +msgid "set location" +msgstr "" + +#: ../../include/conversation.php:1203 ../../mod/editpost.php:127 +msgid "Toggle voting" +msgstr "" + +#: ../../include/conversation.php:1206 ../../mod/editpost.php:126 +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:189 +msgid "Clear browser location" +msgstr "" + +#: ../../include/conversation.php:1207 +msgid "clear location" +msgstr "" + +#: ../../include/conversation.php:1209 ../../mod/editpost.php:142 +#: ../../mod/editblock.php:162 ../../mod/editwebpage.php:205 +msgid "Title (optional)" +msgstr "" + +#: ../../include/conversation.php:1213 ../../mod/editpost.php:144 +#: ../../mod/editblock.php:165 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:207 +msgid "Categories (optional, comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1215 ../../mod/editpost.php:131 +#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:191 +msgid "Permission settings" +msgstr "" + +#: ../../include/conversation.php:1216 +msgid "permissions" +msgstr "" + +#: ../../include/conversation.php:1224 ../../mod/editpost.php:139 +#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:200 +msgid "Public post" +msgstr "" + +#: ../../include/conversation.php:1226 ../../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 "" + +#: ../../include/conversation.php:1239 ../../mod/mail.php:245 +#: ../../mod/mail.php:374 ../../mod/editpost.php:156 +#: ../../mod/editblock.php:176 ../../mod/editlayout.php:173 +#: ../../mod/editwebpage.php:217 +msgid "Set expiration date" +msgstr "" + +#: ../../include/conversation.php:1243 ../../mod/editpost.php:160 +#: ../../mod/events.php:691 +msgid "OK" +msgstr "" + +#: ../../include/conversation.php:1244 ../../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 "" + +#: ../../include/conversation.php:1487 +msgid "Discover" +msgstr "" + +#: ../../include/conversation.php:1490 +msgid "Imported public streams" +msgstr "" + +#: ../../include/conversation.php:1495 +msgid "Commented Order" +msgstr "" + +#: ../../include/conversation.php:1498 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../include/conversation.php:1502 +msgid "Posted Order" +msgstr "" + +#: ../../include/conversation.php:1505 +msgid "Sort by Post Date" +msgstr "" + +#: ../../include/conversation.php:1510 ../../include/widgets.php:94 +msgid "Personal" +msgstr "" + +#: ../../include/conversation.php:1513 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../include/conversation.php:1519 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" +msgstr "" + +#: ../../include/conversation.php:1522 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../include/conversation.php:1528 +msgid "Starred" +msgstr "" + +#: ../../include/conversation.php:1531 +msgid "Favourite Posts" +msgstr "" + +#: ../../include/conversation.php:1538 +msgid "Spam" +msgstr "" + +#: ../../include/conversation.php:1541 +msgid "Posts flagged as SPAM" +msgstr "" + +#: ../../include/conversation.php:1585 ../../mod/admin.php:947 +msgid "Channel" +msgstr "" + +#: ../../include/conversation.php:1588 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../include/conversation.php:1597 +msgid "About" +msgstr "" + +#: ../../include/conversation.php:1600 +msgid "Profile Details" +msgstr "" + +#: ../../include/conversation.php:1616 +msgid "Files and Storage" +msgstr "" + +#: ../../include/conversation.php:1626 ../../include/conversation.php:1629 +msgid "Chatrooms" +msgstr "" + +#: ../../include/conversation.php:1642 +msgid "Saved Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1652 +msgid "Manage Webpages" +msgstr "" + +#: ../../include/conversation.php:1711 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1714 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1717 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1720 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1723 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1726 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + #: ../../include/widgets.php:91 ../../include/nav.php:157 #: ../../mod/apps.php:36 msgid "Apps" @@ -3790,174 +3775,153 @@ msgid "Private Mail Menu" msgstr "" #: ../../include/widgets.php:569 -msgid "Check Mail" -msgstr "" - -#: ../../include/widgets.php:575 msgid "Combined View" msgstr "" -#: ../../include/widgets.php:580 ../../include/nav.php:191 +#: ../../include/widgets.php:574 ../../include/nav.php:191 msgid "Inbox" msgstr "" -#: ../../include/widgets.php:585 ../../include/nav.php:192 +#: ../../include/widgets.php:579 ../../include/nav.php:192 msgid "Outbox" msgstr "" -#: ../../include/widgets.php:590 ../../include/nav.php:193 +#: ../../include/widgets.php:584 ../../include/nav.php:193 msgid "New Message" msgstr "" -#: ../../include/widgets.php:609 ../../include/widgets.php:621 +#: ../../include/widgets.php:603 ../../include/widgets.php:615 msgid "Conversations" msgstr "" -#: ../../include/widgets.php:613 +#: ../../include/widgets.php:607 msgid "Received Messages" msgstr "" -#: ../../include/widgets.php:617 +#: ../../include/widgets.php:611 msgid "Sent Messages" msgstr "" -#: ../../include/widgets.php:631 +#: ../../include/widgets.php:625 msgid "No messages." msgstr "" -#: ../../include/widgets.php:648 +#: ../../include/widgets.php:643 msgid "Delete conversation" msgstr "" -#: ../../include/widgets.php:650 +#: ../../include/widgets.php:645 msgid "D, d M Y - g:i A" msgstr "" -#: ../../include/widgets.php:738 +#: ../../include/widgets.php:734 msgid "Chat Rooms" msgstr "" -#: ../../include/widgets.php:758 +#: ../../include/widgets.php:754 msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/widgets.php:778 +#: ../../include/widgets.php:774 msgid "Suggested Chatrooms" msgstr "" -#: ../../include/widgets.php:905 ../../include/widgets.php:963 +#: ../../include/widgets.php:901 ../../include/widgets.php:959 msgid "photo/image" msgstr "" -#: ../../include/widgets.php:1058 ../../include/widgets.php:1060 +#: ../../include/widgets.php:1054 ../../include/widgets.php:1056 msgid "Rate Me" msgstr "" -#: ../../include/widgets.php:1064 +#: ../../include/widgets.php:1060 msgid "View Ratings" msgstr "" -#: ../../include/widgets.php:1075 +#: ../../include/widgets.php:1071 msgid "Public Hubs" msgstr "" -#: ../../include/widgets.php:1123 +#: ../../include/widgets.php:1119 msgid "Forums" msgstr "" -#: ../../include/widgets.php:1150 +#: ../../include/widgets.php:1146 msgid "Tasks" msgstr "" -#: ../../include/widgets.php:1159 +#: ../../include/widgets.php:1155 msgid "Documentation" msgstr "" -#: ../../include/widgets.php:1161 +#: ../../include/widgets.php:1157 msgid "Project/Site Information" msgstr "" -#: ../../include/widgets.php:1162 +#: ../../include/widgets.php:1158 msgid "For Members" msgstr "" -#: ../../include/widgets.php:1163 +#: ../../include/widgets.php:1159 msgid "For Administrators" msgstr "" -#: ../../include/widgets.php:1164 +#: ../../include/widgets.php:1160 msgid "For Developers" msgstr "" -#: ../../include/widgets.php:1189 ../../mod/admin.php:410 +#: ../../include/widgets.php:1185 ../../mod/admin.php:410 msgid "Site" msgstr "" -#: ../../include/widgets.php:1190 +#: ../../include/widgets.php:1186 msgid "Accounts" msgstr "" -#: ../../include/widgets.php:1191 ../../mod/admin.php:939 +#: ../../include/widgets.php:1187 ../../mod/admin.php:939 msgid "Channels" msgstr "" -#: ../../include/widgets.php:1192 ../../mod/admin.php:1031 +#: ../../include/widgets.php:1188 ../../mod/admin.php:1031 #: ../../mod/admin.php:1071 msgid "Plugins" msgstr "" -#: ../../include/widgets.php:1193 ../../mod/admin.php:1231 +#: ../../include/widgets.php:1189 ../../mod/admin.php:1231 #: ../../mod/admin.php:1265 msgid "Themes" msgstr "" -#: ../../include/widgets.php:1194 +#: ../../include/widgets.php:1190 msgid "Inspect queue" msgstr "" -#: ../../include/widgets.php:1195 +#: ../../include/widgets.php:1191 msgid "Profile Config" msgstr "" -#: ../../include/widgets.php:1196 +#: ../../include/widgets.php:1192 msgid "DB updates" msgstr "" -#: ../../include/widgets.php:1214 ../../include/widgets.php:1220 +#: ../../include/widgets.php:1210 ../../include/widgets.php:1216 #: ../../mod/admin.php:1350 msgid "Logs" msgstr "" -#: ../../include/widgets.php:1218 ../../include/nav.php:210 +#: ../../include/widgets.php:1214 ../../include/nav.php:210 msgid "Admin" msgstr "" -#: ../../include/widgets.php:1219 +#: ../../include/widgets.php:1215 msgid "Plugin Features" msgstr "" -#: ../../include/widgets.php:1221 +#: ../../include/widgets.php:1217 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 +3994,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 "" @@ -4054,10 +4018,6 @@ msgstr "" msgid "Channel Directory" msgstr "" -#: ../../include/nav.php:174 -msgid "Grid" -msgstr "" - #: ../../include/nav.php:174 msgid "Your grid" msgstr "" @@ -4138,6 +4098,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:616 ../../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:616 ../../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 "" @@ -4160,7 +4159,7 @@ msgid "Suggest a friend for %s" msgstr "" #: ../../mod/directory.php:59 ../../mod/display.php:13 ../../mod/search.php:13 -#: ../../mod/photos.php:453 ../../mod/ratings.php:82 +#: ../../mod/photos.php:480 ../../mod/ratings.php:82 #: ../../mod/viewconnections.php:17 msgid "Public access denied." msgstr "" @@ -5069,6 +5068,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,12 +5192,108 @@ msgstr "" msgid "Search results for: %s" msgstr "" -#: ../../mod/message.php:34 +#: ../../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/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:132 +msgid "Messages" +msgstr "" + +#: ../../mod/mail.php:167 +msgid "Message recalled." +msgstr "" + +#: ../../mod/mail.php:180 msgid "Conversation removed." msgstr "" -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../mod/mail.php:223 +msgid "Requested channel is not in this network" +msgstr "" + +#: ../../mod/mail.php:231 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/mail.php:232 ../../mod/mail.php:361 +msgid "To:" +msgstr "" + +#: ../../mod/mail.php:235 ../../mod/mail.php:363 +msgid "Subject:" +msgstr "" + +#: ../../mod/mail.php:238 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "" + +#: ../../mod/mail.php:242 +msgid "Send" +msgstr "" + +#: ../../mod/mail.php:333 +msgid "Delete message" +msgstr "" + +#: ../../mod/mail.php:334 +msgid "Delivery report" +msgstr "" + +#: ../../mod/mail.php:335 +msgid "Recall message" +msgstr "" + +#: ../../mod/mail.php:337 +msgid "Message has been recalled." +msgstr "" + +#: ../../mod/mail.php:354 +msgid "Delete Conversation" +msgstr "" + +#: ../../mod/mail.php:356 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/mail.php:360 +msgid "Send Reply" +msgstr "" + +#: ../../mod/mail.php:365 +#, php-format +msgid "Your message for %s (%s):" msgstr "" #: ../../mod/editpost.php:20 ../../mod/editblock.php:78 @@ -5230,47 +5329,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 +5407,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 +6446,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:86 ../../boot.php:1505 +#: ../../mod/lostpass.php:86 ../../boot.php:1511 msgid "Password Reset" msgstr "" @@ -6392,150 +6507,150 @@ msgstr "" msgid "Delete Album" msgstr "" -#: ../../mod/photos.php:170 ../../mod/photos.php:970 +#: ../../mod/photos.php:171 ../../mod/photos.php:997 msgid "Delete Photo" msgstr "" -#: ../../mod/photos.php:464 +#: ../../mod/photos.php:491 msgid "No photos selected" msgstr "" -#: ../../mod/photos.php:513 +#: ../../mod/photos.php:540 msgid "Access to this item is restricted." msgstr "" -#: ../../mod/photos.php:552 +#: ../../mod/photos.php:579 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../mod/photos.php:555 +#: ../../mod/photos.php:582 #, php-format msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../mod/photos.php:583 +#: ../../mod/photos.php:610 msgid "Upload Photos" msgstr "" -#: ../../mod/photos.php:587 +#: ../../mod/photos.php:614 msgid "Enter an album name" msgstr "" -#: ../../mod/photos.php:588 +#: ../../mod/photos.php:615 msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../mod/photos.php:589 +#: ../../mod/photos.php:616 msgid "Create a status post for this upload" msgstr "" -#: ../../mod/photos.php:616 +#: ../../mod/photos.php:643 msgid "Album name could not be decoded" msgstr "" -#: ../../mod/photos.php:660 ../../mod/photos.php:1197 -#: ../../mod/photos.php:1214 +#: ../../mod/photos.php:687 ../../mod/photos.php:1224 +#: ../../mod/photos.php:1241 msgid "Contact Photos" msgstr "" -#: ../../mod/photos.php:688 +#: ../../mod/photos.php:715 msgid "Show Newest First" msgstr "" -#: ../../mod/photos.php:690 +#: ../../mod/photos.php:717 msgid "Show Oldest First" msgstr "" -#: ../../mod/photos.php:714 ../../mod/photos.php:1247 +#: ../../mod/photos.php:741 ../../mod/photos.php:1274 msgid "View Photo" msgstr "" -#: ../../mod/photos.php:743 +#: ../../mod/photos.php:770 msgid "Edit Album" msgstr "" -#: ../../mod/photos.php:788 +#: ../../mod/photos.php:815 msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/photos.php:790 +#: ../../mod/photos.php:817 msgid "Photo not available" msgstr "" -#: ../../mod/photos.php:848 +#: ../../mod/photos.php:875 msgid "Use as profile photo" msgstr "" -#: ../../mod/photos.php:855 +#: ../../mod/photos.php:882 msgid "Private Photo" msgstr "" -#: ../../mod/photos.php:866 ../../mod/events.php:528 +#: ../../mod/photos.php:893 ../../mod/events.php:528 msgid "Previous" msgstr "" -#: ../../mod/photos.php:870 +#: ../../mod/photos.php:897 msgid "View Full Size" msgstr "" -#: ../../mod/photos.php:875 ../../mod/events.php:529 ../../mod/setup.php:285 +#: ../../mod/photos.php:902 ../../mod/events.php:529 ../../mod/setup.php:285 msgid "Next" msgstr "" -#: ../../mod/photos.php:915 ../../mod/tagrm.php:133 +#: ../../mod/photos.php:942 ../../mod/tagrm.php:133 msgid "Remove" msgstr "" -#: ../../mod/photos.php:949 +#: ../../mod/photos.php:976 msgid "Edit photo" msgstr "" -#: ../../mod/photos.php:951 +#: ../../mod/photos.php:978 msgid "Rotate CW (right)" msgstr "" -#: ../../mod/photos.php:952 +#: ../../mod/photos.php:979 msgid "Rotate CCW (left)" msgstr "" -#: ../../mod/photos.php:955 +#: ../../mod/photos.php:982 msgid "Enter a new album name" msgstr "" -#: ../../mod/photos.php:956 +#: ../../mod/photos.php:983 msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../mod/photos.php:959 +#: ../../mod/photos.php:986 msgid "Caption" msgstr "" -#: ../../mod/photos.php:961 +#: ../../mod/photos.php:988 msgid "Add a Tag" msgstr "" -#: ../../mod/photos.php:965 +#: ../../mod/photos.php:992 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../mod/photos.php:968 +#: ../../mod/photos.php:995 msgid "Flag as adult in album view" msgstr "" -#: ../../mod/photos.php:1160 +#: ../../mod/photos.php:1187 msgid "In This Photo:" msgstr "" -#: ../../mod/photos.php:1165 +#: ../../mod/photos.php:1192 msgid "Map" msgstr "" -#: ../../mod/photos.php:1253 +#: ../../mod/photos.php:1280 msgid "View Album" msgstr "" -#: ../../mod/photos.php:1276 +#: ../../mod/photos.php:1303 msgid "Recent Photos" msgstr "" @@ -6543,23 +6658,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 +6916,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 +7042,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 +7150,8 @@ msgstr "" msgid "Authenticate" msgstr "" -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" #: ../../mod/siteinfo.php:111 @@ -7167,7 +7191,7 @@ msgstr "" #: ../../mod/siteinfo.php:168 msgid "" -"Please visit redmatrix.me to learn more " +"Please visit hubzilla.org to learn more " "about $Projectname." msgstr "" @@ -7214,42 +7238,42 @@ msgstr "" msgid "No channel. Import failed." msgstr "" -#: ../../mod/import.php:493 +#: ../../mod/import.php:499 msgid "You must be logged in to use this feature." msgstr "" -#: ../../mod/import.php:498 +#: ../../mod/import.php:504 msgid "Import Channel" msgstr "" -#: ../../mod/import.php:499 +#: ../../mod/import.php:505 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 "" -#: ../../mod/import.php:500 ../../mod/import_items.php:121 +#: ../../mod/import.php:506 ../../mod/import_items.php:121 msgid "File to Upload" msgstr "" -#: ../../mod/import.php:501 +#: ../../mod/import.php:507 msgid "Or provide the old server/hub details" msgstr "" -#: ../../mod/import.php:502 +#: ../../mod/import.php:508 msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../mod/import.php:503 +#: ../../mod/import.php:509 msgid "Your old login email address" msgstr "" -#: ../../mod/import.php:504 +#: ../../mod/import.php:510 msgid "Your old login password" msgstr "" -#: ../../mod/import.php:505 +#: ../../mod/import.php:511 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 " @@ -7257,16 +7281,16 @@ msgid "" "location for files, photos, and media." msgstr "" -#: ../../mod/import.php:506 +#: ../../mod/import.php:512 msgid "Make this hub my primary location" msgstr "" -#: ../../mod/import.php:507 +#: ../../mod/import.php:513 msgid "" "Import existing posts if possible (experimental - limited by available memory" msgstr "" -#: ../../mod/import.php:508 +#: ../../mod/import.php:514 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." @@ -9120,51 +9144,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 "" diff --git a/util/messages.po b/util/messages.po index 341c042bb..6380cdfac 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2015-09-25.1166\n" +"Project-Id-Version: 2015-10-17.1188\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-25 00:05-0700\n" +"POT-Creation-Date: 2015-10-17 16:47-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -416,7 +416,7 @@ msgstr "" msgid "Edited" msgstr "" -#: ../../include/api.php:1234 +#: ../../include/api.php:1267 msgid "Public Timeline" msgstr "" @@ -828,7 +828,8 @@ msgstr "" msgid "April" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/text.php:1201 ../../mod/uexport.php:58 +#: ../../mod/uexport.php:59 msgid "May" msgstr "" @@ -1374,7 +1375,7 @@ msgstr "" #: ../../include/widgets.php:136 ../../include/widgets.php:175 #: ../../include/Contact.php:107 ../../include/conversation.php:956 -#: ../../include/identity.php:933 ../../mod/directory.php:316 +#: ../../include/identity.php:956 ../../mod/directory.php:316 #: ../../mod/match.php:64 ../../mod/suggest.php:52 msgid "Connect" msgstr "" @@ -1551,7 +1552,7 @@ msgid "Finishes:" msgstr "" #: ../../include/event.php:50 ../../include/bb2diaspora.php:481 -#: ../../include/identity.php:984 ../../mod/directory.php:302 +#: ../../include/identity.php:1007 ../../mod/directory.php:302 #: ../../mod/events.php:684 msgid "Location:" msgstr "" @@ -1855,7 +1856,7 @@ msgid "View all" msgstr "" #: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 -#: ../../include/conversation.php:1712 ../../include/identity.php:1243 +#: ../../include/conversation.php:1712 ../../include/identity.php:1266 #: ../../mod/photos.php:1019 msgctxt "noun" msgid "Like" @@ -2107,7 +2108,7 @@ msgstr "" msgid "Manage/Edit profiles" msgstr "" -#: ../../include/nav.php:95 ../../include/identity.php:956 +#: ../../include/nav.php:95 ../../include/identity.php:979 msgid "Edit Profile" msgstr "" @@ -3037,14 +3038,14 @@ msgstr "" msgid "Visible to specific connections." msgstr "" -#: ../../include/items.php:4286 ../../mod/thing.php:74 +#: ../../include/items.php:4310 ../../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 "" -#: ../../include/items.php:4359 ../../include/attach.php:137 +#: ../../include/items.php:4383 ../../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 @@ -3087,38 +3088,38 @@ msgstr "" msgid "Permission denied." msgstr "" -#: ../../include/items.php:4763 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../include/items.php:4787 ../../mod/group.php:38 ../../mod/group.php:140 #: ../../mod/bulksetclose.php:51 msgid "Collection not found." msgstr "" -#: ../../include/items.php:4779 +#: ../../include/items.php:4803 msgid "Collection is empty." msgstr "" -#: ../../include/items.php:4786 +#: ../../include/items.php:4810 #, php-format msgid "Collection: %s" msgstr "" -#: ../../include/items.php:4796 ../../mod/connedit.php:674 +#: ../../include/items.php:4820 ../../mod/connedit.php:674 #, php-format msgid "Connection: %s" msgstr "" -#: ../../include/items.php:4798 +#: ../../include/items.php:4822 msgid "Connection not found." msgstr "" -#: ../../include/zot.php:678 +#: ../../include/zot.php:684 msgid "Invalid data packet" msgstr "" -#: ../../include/zot.php:694 +#: ../../include/zot.php:700 msgid "Unable to verify channel signature" msgstr "" -#: ../../include/zot.php:2184 +#: ../../include/zot.php:2208 #, php-format msgid "Unable to verify site signature for %s" msgstr "" @@ -3316,11 +3317,11 @@ msgstr "" msgid "Default Profile" msgstr "" -#: ../../include/identity.php:736 +#: ../../include/identity.php:759 msgid "Requested channel is not available." msgstr "" -#: ../../include/identity.php:783 ../../mod/profile.php:16 +#: ../../include/identity.php:806 ../../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 @@ -3329,193 +3330,193 @@ msgstr "" msgid "Requested profile is not available." msgstr "" -#: ../../include/identity.php:946 ../../mod/profiles.php:774 +#: ../../include/identity.php:969 ../../mod/profiles.php:774 msgid "Change profile photo" msgstr "" -#: ../../include/identity.php:952 +#: ../../include/identity.php:975 msgid "Profiles" msgstr "" -#: ../../include/identity.php:952 +#: ../../include/identity.php:975 msgid "Manage/edit profiles" msgstr "" -#: ../../include/identity.php:953 ../../mod/profiles.php:775 +#: ../../include/identity.php:976 ../../mod/profiles.php:775 msgid "Create New Profile" msgstr "" -#: ../../include/identity.php:968 ../../mod/profiles.php:786 +#: ../../include/identity.php:991 ../../mod/profiles.php:786 msgid "Profile Image" msgstr "" -#: ../../include/identity.php:971 +#: ../../include/identity.php:994 msgid "visible to everybody" msgstr "" -#: ../../include/identity.php:972 ../../mod/profiles.php:669 +#: ../../include/identity.php:995 ../../mod/profiles.php:669 #: ../../mod/profiles.php:790 msgid "Edit visibility" msgstr "" -#: ../../include/identity.php:988 ../../include/identity.php:1227 +#: ../../include/identity.php:1011 ../../include/identity.php:1250 msgid "Gender:" msgstr "" -#: ../../include/identity.php:989 ../../include/identity.php:1271 +#: ../../include/identity.php:1012 ../../include/identity.php:1294 msgid "Status:" msgstr "" -#: ../../include/identity.php:990 ../../include/identity.php:1282 +#: ../../include/identity.php:1013 ../../include/identity.php:1305 msgid "Homepage:" msgstr "" -#: ../../include/identity.php:991 +#: ../../include/identity.php:1014 msgid "Online Now" msgstr "" -#: ../../include/identity.php:1074 ../../include/identity.php:1152 +#: ../../include/identity.php:1097 ../../include/identity.php:1175 #: ../../mod/ping.php:324 msgid "g A l F d" msgstr "" -#: ../../include/identity.php:1075 ../../include/identity.php:1153 +#: ../../include/identity.php:1098 ../../include/identity.php:1176 msgid "F d" msgstr "" -#: ../../include/identity.php:1120 ../../include/identity.php:1192 +#: ../../include/identity.php:1143 ../../include/identity.php:1215 #: ../../mod/ping.php:346 msgid "[today]" msgstr "" -#: ../../include/identity.php:1131 +#: ../../include/identity.php:1154 msgid "Birthday Reminders" msgstr "" -#: ../../include/identity.php:1132 +#: ../../include/identity.php:1155 msgid "Birthdays this week:" msgstr "" -#: ../../include/identity.php:1185 +#: ../../include/identity.php:1208 msgid "[No description]" msgstr "" -#: ../../include/identity.php:1203 +#: ../../include/identity.php:1226 msgid "Event Reminders" msgstr "" -#: ../../include/identity.php:1204 +#: ../../include/identity.php:1227 msgid "Events this week:" msgstr "" -#: ../../include/identity.php:1217 ../../include/identity.php:1334 +#: ../../include/identity.php:1240 ../../include/identity.php:1357 #: ../../include/apps.php:138 ../../mod/profperm.php:112 msgid "Profile" msgstr "" -#: ../../include/identity.php:1225 ../../mod/settings.php:1056 +#: ../../include/identity.php:1248 ../../mod/settings.php:1056 msgid "Full Name:" msgstr "" -#: ../../include/identity.php:1232 +#: ../../include/identity.php:1255 msgid "Like this channel" msgstr "" -#: ../../include/identity.php:1256 +#: ../../include/identity.php:1279 msgid "j F, Y" msgstr "" -#: ../../include/identity.php:1257 +#: ../../include/identity.php:1280 msgid "j F" msgstr "" -#: ../../include/identity.php:1264 +#: ../../include/identity.php:1287 msgid "Birthday:" msgstr "" -#: ../../include/identity.php:1268 ../../mod/directory.php:297 +#: ../../include/identity.php:1291 ../../mod/directory.php:297 msgid "Age:" msgstr "" -#: ../../include/identity.php:1277 +#: ../../include/identity.php:1300 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/identity.php:1280 ../../mod/profiles.php:691 +#: ../../include/identity.php:1303 ../../mod/profiles.php:691 msgid "Sexual Preference:" msgstr "" -#: ../../include/identity.php:1284 ../../mod/directory.php:313 +#: ../../include/identity.php:1307 ../../mod/directory.php:313 #: ../../mod/profiles.php:693 msgid "Hometown:" msgstr "" -#: ../../include/identity.php:1286 +#: ../../include/identity.php:1309 msgid "Tags:" msgstr "" -#: ../../include/identity.php:1288 ../../mod/profiles.php:694 +#: ../../include/identity.php:1311 ../../mod/profiles.php:694 msgid "Political Views:" msgstr "" -#: ../../include/identity.php:1290 +#: ../../include/identity.php:1313 msgid "Religion:" msgstr "" -#: ../../include/identity.php:1292 ../../mod/directory.php:315 +#: ../../include/identity.php:1315 ../../mod/directory.php:315 msgid "About:" msgstr "" -#: ../../include/identity.php:1294 +#: ../../include/identity.php:1317 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/identity.php:1296 ../../mod/profiles.php:697 +#: ../../include/identity.php:1319 ../../mod/profiles.php:697 msgid "Likes:" msgstr "" -#: ../../include/identity.php:1298 ../../mod/profiles.php:698 +#: ../../include/identity.php:1321 ../../mod/profiles.php:698 msgid "Dislikes:" msgstr "" -#: ../../include/identity.php:1300 +#: ../../include/identity.php:1323 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/identity.php:1302 +#: ../../include/identity.php:1325 msgid "My other channels:" msgstr "" -#: ../../include/identity.php:1304 +#: ../../include/identity.php:1327 msgid "Musical interests:" msgstr "" -#: ../../include/identity.php:1306 +#: ../../include/identity.php:1329 msgid "Books, literature:" msgstr "" -#: ../../include/identity.php:1308 +#: ../../include/identity.php:1331 msgid "Television:" msgstr "" -#: ../../include/identity.php:1310 +#: ../../include/identity.php:1333 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/identity.php:1312 +#: ../../include/identity.php:1335 msgid "Love/Romance:" msgstr "" -#: ../../include/identity.php:1314 +#: ../../include/identity.php:1337 msgid "Work/employment:" msgstr "" -#: ../../include/identity.php:1316 +#: ../../include/identity.php:1339 msgid "School/education:" msgstr "" -#: ../../include/identity.php:1336 +#: ../../include/identity.php:1359 msgid "Like this thing" msgstr "" @@ -4602,7 +4603,7 @@ msgstr "" msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:64 +#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:66 msgid "$Projectname" msgstr "" @@ -6521,30 +6522,6 @@ msgstr "" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/uexport.php:45 ../../mod/uexport.php:46 -msgid "Export Channel" -msgstr "" - -#: ../../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 " -"be used to import your data to a new hub, but\tdoes not contain your content." -msgstr "" - -#: ../../mod/uexport.php:48 -msgid "Export Content" -msgstr "" - -#: ../../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 " -"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 "" - #: ../../mod/viewconnections.php:62 msgid "No connections." msgstr "" @@ -8155,6 +8132,113 @@ msgstr "" msgid "D, d M Y - g:i A" msgstr "" +#: ../../mod/uexport.php:50 ../../mod/uexport.php:51 +msgid "Export Channel" +msgstr "" + +#: ../../mod/uexport.php:52 +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 "" + +#: ../../mod/uexport.php:53 +msgid "Export Content" +msgstr "" + +#: ../../mod/uexport.php:54 +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 "" + +#: ../../mod/uexport.php:55 +msgid "Export your posts from a given year or month:" +msgstr "" + +#: ../../mod/uexport.php:57 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Click on one of the recent years or months below." +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Jan" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Feb" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Mar" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Apr" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Jun" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Jul" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Aug" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Sep" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Oct" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Nov" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Dec" +msgstr "" + +#: ../../mod/uexport.php:60 +msgid "" +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "" + +#: ../../mod/uexport.php:61 +#, php-format +msgid "" +"Or adjust the date in your browser location bar to select other dates. For " +"example the year 2013; %1$s/2013 or the month " +"September 2013; %1$s/2013/9" +msgstr "" + +#: ../../mod/uexport.php:62 +msgid "Please visit" +msgstr "" + +#: ../../mod/uexport.php:62 +msgid "on another hub to import the backup files(s)." +msgstr "" + +#: ../../mod/uexport.php:63 +msgid "" +"We advise you to clone the channel on the new hub first and than to import " +"the backup file(s) (from the same channel) in chronological order. Importing " +"the backup files into another channel will certainly give permission issues." +msgstr "" + #: ../../mod/mood.php:131 msgid "Set your current mood and tell your friends" msgstr "" @@ -8672,7 +8756,7 @@ msgstr "" msgid "Download PDL file" msgstr "" -#: ../../mod/home.php:73 +#: ../../mod/home.php:75 #, php-format msgid "Welcome to %s" msgstr "" diff --git a/version.inc b/version.inc index 80d66264c..6b5ede616 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-09-28.1169 +2015-10-17.1188 diff --git a/view/css/conversation.css b/view/css/conversation.css index e409cf4cf..df89eb7d1 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -77,21 +77,17 @@ code { /* conv_item */ +.wall-photo-item img { + width: 100% !important; + max-width: 100% !important; +} + .wall-item-info { display: block; float: left; margin-right: 10px; } -.wall-item-photo-wrapper { - margin-top: 0px; - margin-bottom: 20px; -} - -.comment .wall-item-photo-wrapper { - margin-bottom: 15px; -} - .wall-item-wrapper { margin-left:10px; } @@ -153,27 +149,8 @@ a.wall-item-name-link { word-wrap: break-word; } -.body-tag, .filesavetags, .categorytags { - opacity: 0.5; - filter:alpha(opacity=50); -} - -.body-tag:hover, .filesavetags:hover, .categorytags:hover { - opacity: 1.0 !important; - filter:alpha(opacity=100) !important; -} - -.body-tag { - margin-top: 10px; -} - -.categorytags { - margin-top: 10px; -} - -.wall-item-tools { - width: 100%; - margin-top: 10px; +.body-tags { + margin-top: 5px; } .item-tool { diff --git a/view/css/mod_chat.css b/view/css/mod_chat.css index 58680baec..99037aeef 100644 --- a/view/css/mod_chat.css +++ b/view/css/mod_chat.css @@ -6,7 +6,7 @@ #chatTopBar { float: left; height: 400px; - width: 650px; + width: 400px; overflow-y: auto; } diff --git a/view/css/mod_directory.css b/view/css/mod_directory.css index 8e55ac3be..5a2b8d443 100644 --- a/view/css/mod_directory.css +++ b/view/css/mod_directory.css @@ -29,3 +29,6 @@ margin-top: -2px; } +.directory-collapse { + overflow: auto; +} diff --git a/view/css/mod_mail.css b/view/css/mod_mail.css index f0f4458fa..5fd646765 100644 --- a/view/css/mod_mail.css +++ b/view/css/mod_mail.css @@ -1,50 +1,26 @@ -/* 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-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%; +} + +#prvmail-rotator { + margin: 15px; } 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,1251 +1,157 @@ -# 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 -# Einer von Vielen , 2013 -# Ettore Atalan , 2014-2015 -# Frank Dieckmann , 2013 -# Frank Dieckmann , 2013 -# Kai , 2015 -# Oliver , 2013-2014 -# Phellmes , 2014 -# Steff , 2015 -# bavatar , 2013-2014 # do.t , 2014 -# zottel , 2013-2015 +# Einer von Vielen , 2013 +# Ettore Atalan , 2015 +# Frank Dieckmann , 2013 +# JooBee , 2014 +# Kai , 2015 +# Oliver , 2015 +# Phellmes , 2014 # 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/photos.php:112 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" - -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "Foto speichern schlug fehl" - -#: ../../include/photos.php:355 ../../include/conversation.php:1589 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../include/photos.php:359 -msgid "Upload New Photos" -msgstr "Lade neue Fotos hoch" - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" - -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" - -#: ../../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/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Ansicht" - -#: ../../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/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Aktionen" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Seiten-Link" - -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Titel" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Erstellt" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Geändert" - -#: ../../include/widgets.php:35 ../../include/taxonomy.php:255 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorien" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apps" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1494 -msgid "Personal" -msgstr "Persönlich" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persönliche App erstellen" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persönliche App bearbeiten" - -#: ../../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/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" - -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../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/widgets.php:172 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notizen" - -#: ../../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/widgets.php:264 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../include/widgets.php:272 ../../include/features.php:72 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../include/widgets.php:273 ../../include/group.php:303 -msgid "add" -msgstr "hinzufügen" - -#: ../../include/widgets.php:302 ../../include/features.php:84 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:347 -msgid "Archives" -msgstr "Archive" - -#: ../../include/widgets.php:425 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:426 ../../mod/connedit.php:563 -msgid "Me" -msgstr "Ich" - -#: ../../include/widgets.php:427 ../../mod/connedit.php:566 -msgid "Best Friends" -msgstr "Beste Freunde" - -#: ../../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/widgets.php:429 -msgid "Co-workers" -msgstr "Kollegen" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:568 -msgid "Former Friends" -msgstr "ehem. Freunde" - -#: ../../include/widgets.php:431 ../../mod/connedit.php:569 -msgid "Acquaintances" -msgstr "Bekannte" - -#: ../../include/widgets.php:432 -msgid "Everybody" -msgstr "Jeder" - -#: ../../include/widgets.php:466 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../include/widgets.php:472 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../include/widgets.php:478 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:484 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" - -#: ../../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/widgets.php:511 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "Standardzugriffsrechte für neue Verbindungen:" - -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../include/widgets.php:527 ../../include/features.php:61 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanal-Quellen" - -#: ../../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/widgets.php:548 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../include/widgets.php:551 -msgid "Check Mail" -msgstr "E-Mails abrufen" - -#: ../../include/widgets.php:556 ../../include/nav.php:201 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/widgets.php:634 -msgid "Chat Rooms" -msgstr "Chaträume" - -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" -msgstr "Foto/Bild" - -#: ../../include/widgets.php:954 ../../include/widgets.php:956 -msgid "Rate Me" -msgstr "Bewerte mich" - -#: ../../include/widgets.php:960 -msgid "View Ratings" -msgstr "Bewertungen ansehen" - -#: ../../include/widgets.php:971 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Red Matrix Benachrichtigung" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Danke." - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" - -#: ../../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/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "eine private Nachricht" - -#: ../../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/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/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/enotify.php:161 -#, 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/enotify.php:172 -#, 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/enotify.php:173 -#, 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/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/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" - -#: ../../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/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/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" - -#: ../../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/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/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" - -#: ../../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/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/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" - -#: ../../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/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/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Benachrichtigung] Vorstellung erhalten" - -#: ../../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/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/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/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/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" - -#: ../../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/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 hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Name:" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" - -#: ../../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/enotify.php:499 -msgid "[Red:Notify]" -msgstr "[Red:Benachrichtigung]" - -#: ../../include/text.php:320 -msgid "prev" -msgstr "vorherige" - -#: ../../include/text.php:322 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:351 -msgid "last" -msgstr "letzte" - -#: ../../include/text.php:354 -msgid "next" -msgstr "nächste" - -#: ../../include/text.php:366 -msgid "older" -msgstr "älter" - -#: ../../include/text.php:368 -msgid "newer" -msgstr "neuer" - -#: ../../include/text.php:751 -msgid "No connections" -msgstr "Keine Verbindungen" - -#: ../../include/text.php:767 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Verbindung" -msgstr[1] "%d Verbindungen" - -#: ../../include/text.php:780 ../../mod/viewconnections.php:86 -msgid "View Connections" -msgstr "Verbindungen anzeigen" - -#: ../../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/text.php:916 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:916 ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" - -#: ../../include/text.php:917 -msgid "ping" -msgstr "anpingen" - -#: ../../include/text.php:917 -msgid "pinged" -msgstr "pingte" - -#: ../../include/text.php:918 -msgid "prod" -msgstr "knuffen" - -#: ../../include/text.php:918 -msgid "prodded" -msgstr "knuffte" - -#: ../../include/text.php:919 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:919 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:920 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:920 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:921 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:921 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:931 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:932 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:933 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:934 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:935 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:936 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:937 -msgid "stupified" -msgstr "verblüfft" - -#: ../../include/text.php:938 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:939 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:940 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:941 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:942 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:943 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:944 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:945 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:946 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:947 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:948 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:949 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:950 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:951 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1117 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1117 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1117 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../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 -msgid "everybody" -msgstr "alle" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "geheime Passphrase" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hinweis zur Passphrase" - -#: ../../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/js_strings.php:17 -msgid "close all" -msgstr "Alle schließen" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nichts Neues hier" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" - -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -msgid "Rating" -msgstr "Bewertung" - -#: ../../include/js_strings.php:21 -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 -msgid "Submit" -msgstr "Bestätigen" - -#: ../../include/js_strings.php:24 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:25 -msgid "timeago.prefixFromNow" -msgstr " " - -#: ../../include/js_strings.php:26 -msgid "ago" -msgstr "her" - -#: ../../include/js_strings.php:27 -msgid "from now" -msgstr "von jetzt" - -#: ../../include/js_strings.php:28 -msgid "less than a minute" -msgstr "weniger als eine Minute" - -#: ../../include/js_strings.php:29 -msgid "about a minute" -msgstr "ungefähr eine Minute" - -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d minutes" -msgstr "%d Minuten" - -#: ../../include/js_strings.php:31 -msgid "about an hour" -msgstr "ungefähr eine Stunde" - -#: ../../include/js_strings.php:32 -#, php-format -msgid "about %d hours" -msgstr "ungefähr %d Stunden" - -#: ../../include/js_strings.php:33 -msgid "a day" -msgstr "ein Tag" - -#: ../../include/js_strings.php:34 -#, php-format -msgid "%d days" -msgstr "%d Tage" - -#: ../../include/js_strings.php:35 -msgid "about a month" -msgstr "ungefähr ein Monat" - -#: ../../include/js_strings.php:36 -#, php-format -msgid "%d months" -msgstr "%d Monate" - -#: ../../include/js_strings.php:37 -msgid "about a year" -msgstr "ungefähr ein Jahr" - -#: ../../include/js_strings.php:38 -#, php-format -msgid "%d years" -msgstr "%d Jahre" - -#: ../../include/js_strings.php:39 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:40 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:266 +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:265 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../include/RedDAV/RedBrowser.php:133 +#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2497 +msgid "Collection" +msgstr "Ordner" + +#: ../../include/RedDAV/RedBrowser.php:134 msgid "Principal" msgstr "Prinzipal" -#: ../../include/RedDAV/RedBrowser.php:136 +#: ../../include/RedDAV/RedBrowser.php:137 msgid "Addressbook" msgstr "Adressbuch" -#: ../../include/RedDAV/RedBrowser.php:139 +#: ../../include/RedDAV/RedBrowser.php:140 msgid "Calendar" msgstr "Kalender" -#: ../../include/RedDAV/RedBrowser.php:142 +#: ../../include/RedDAV/RedBrowser.php:143 msgid "Schedule Inbox" msgstr "Posteingang für überwachte Kalender" -#: ../../include/RedDAV/RedBrowser.php:145 +#: ../../include/RedDAV/RedBrowser.php:146 msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../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 +#: ../../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/RedDAV/RedBrowser.php:225 +#: ../../include/RedDAV/RedBrowser.php:227 #, php-format msgid "%1$s used" msgstr "%1$s verwendet" -#: ../../include/RedDAV/RedBrowser.php:230 +#: ../../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/RedDAV/RedBrowser.php:249 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1595 +#: ../../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/RedDAV/RedBrowser.php:251 +#: ../../include/RedDAV/RedBrowser.php:253 msgid "Total" msgstr "Summe" -#: ../../include/RedDAV/RedBrowser.php:253 +#: ../../include/RedDAV/RedBrowser.php:255 msgid "Shared" msgstr "Geteilt" -#: ../../include/RedDAV/RedBrowser.php:254 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:100 -#: ../../mod/mitem.php:169 ../../mod/new_channel.php:121 +#: ../../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/RedDAV/RedBrowser.php:255 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1228 +#: ../../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/RedDAV/RedBrowser.php:262 ../../mod/settings.php:585 -#: ../../mod/settings.php:611 ../../mod/admin.php:871 -#: ../../mod/sharedwithme.php:100 +#: ../../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/RedDAV/RedBrowser.php:263 +#: ../../include/RedDAV/RedBrowser.php:262 msgid "Type" msgstr "Typ" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 msgid "Size" msgstr "Größe" -#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 msgid "Last Modified" msgstr "Zuletzt geändert" -#: ../../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 +#: ../../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/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" @@ -1257,59 +163,292 @@ msgstr "Neuen Ordner anlegen" msgid "Upload file" msgstr "Datei hochladen" -#: ../../include/bookmarks.php:35 +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kann meine Datei- und Bilderordner sehen" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" + +#: ../../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/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../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/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" + +#: ../../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/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner schreiben" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" + +#: ../../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/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" + +#: ../../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/permissions.php:867 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" +msgstr "Weitgehend öffentlich" + +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" +msgstr "Beschränkt" + +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" +msgstr "Privat" + +#: ../../include/permissions.php:868 +msgid "Community Forum" +msgstr "Forum" + +#: ../../include/permissions.php:869 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../include/permissions.php:870 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" +msgstr "Mitteilungs-Kanal (keine Kommentare)" + +#: ../../include/permissions.php:870 +msgid "Group Repository" +msgstr "Gruppenarchiv" + +#: ../../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/permissions.php:871 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Der Chatraum hat keinen Namen" + +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Name des Chatraums bereits vergeben" + +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Ungültiger Raumbezeichner." + +#: ../../include/chat.php:122 +msgid "Room not found." +msgstr "Chatraum konnte nicht gefunden werden." + +#: ../../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/chat.php:143 +msgid "Room is full" +msgstr "Der Raum ist voll" + +#: ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: ../../include/datetime.php:132 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" + +#: ../../include/datetime.php:235 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 ../../mod/events.php:689 +msgid "Required" +msgstr "Benötigt" + +#: ../../include/datetime.php:262 ../../boot.php:2306 +msgid "never" +msgstr "Nie" + +#: ../../include/datetime.php:268 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" + +#: ../../include/datetime.php:271 +msgid "year" +msgstr "Jahr" + +#: ../../include/datetime.php:271 +msgid "years" +msgstr "Jahre" + +#: ../../include/datetime.php:272 +msgid "month" +msgstr "Monat" + +#: ../../include/datetime.php:272 +msgid "months" +msgstr "Monate" + +#: ../../include/datetime.php:273 +msgid "week" +msgstr "Woche" + +#: ../../include/datetime.php:273 +msgid "weeks" +msgstr "Wochen" + +#: ../../include/datetime.php:274 +msgid "day" +msgstr "Tag" + +#: ../../include/datetime.php:274 +msgid "days" +msgstr "Tage" + +#: ../../include/datetime.php:275 +msgid "hour" +msgstr "Stunde" + +#: ../../include/datetime.php:275 +msgid "hours" +msgstr "Stunden" + +#: ../../include/datetime.php:276 +msgid "minute" +msgstr "Minute" + +#: ../../include/datetime.php:276 +msgid "minutes" +msgstr "Minuten" + +#: ../../include/datetime.php:277 +msgid "second" +msgstr "Sekunde" + +#: ../../include/datetime.php:277 +msgid "seconds" +msgstr "Sekunden" + +#: ../../include/datetime.php:285 #, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" -#: ../../include/taxonomy.php:215 ../../include/taxonomy.php:234 -msgid "Tags" -msgstr "Schlagwörter" +#: ../../include/datetime.php:519 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" -#: ../../include/taxonomy.php:274 -msgid "Keywords" -msgstr "Schlüsselwörter" - -#: ../../include/taxonomy.php:299 -msgid "have" -msgstr "habe" - -#: ../../include/taxonomy.php:299 -msgid "has" -msgstr "hat" - -#: ../../include/taxonomy.php:300 -msgid "want" -msgstr "will" - -#: ../../include/taxonomy.php:300 -msgid "wants" -msgstr "will" - -#: ../../include/taxonomy.php:301 ../../include/ItemObject.php:254 -msgid "like" -msgstr "mag" - -#: ../../include/taxonomy.php:301 -msgid "likes" -msgstr "gefällt" - -#: ../../include/taxonomy.php:302 ../../include/ItemObject.php:255 -msgid "dislike" -msgstr "verurteile" - -#: ../../include/taxonomy.php:302 -msgid "dislikes" -msgstr "missfällt" - -#: ../../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/datetime.php:520 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" #: ../../include/features.php:38 msgid "General Features" @@ -1371,200 +510,555 @@ msgstr "Kanal-Auswahl in der Navigationsleiste" msgid "Change channels directly from within the navigation dropdown menu" msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" -#: ../../include/features.php:50 -msgid "Extended Identity Sharing" -msgstr "Erweitertes Teilen von Identitäten" +#: ../../include/features.php:47 +msgid "Photo Location" +msgstr "Aufnahmeort" -#: ../../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/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/features.php:51 +#: ../../include/features.php:49 msgid "Expert Mode" msgstr "Expertenmodus" -#: ../../include/features.php:51 +#: ../../include/features.php:49 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" -#: ../../include/features.php:52 +#: ../../include/features.php:50 msgid "Premium Channel" msgstr "Premium-Kanal" -#: ../../include/features.php:52 +#: ../../include/features.php:50 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/features.php:57 +#: ../../include/features.php:55 msgid "Post Composition Features" msgstr "Nachbearbeitungsfunktionen" -#: ../../include/features.php:59 +#: ../../include/features.php:57 msgid "Use Markdown" msgstr "Markdown benutzen" -#: ../../include/features.php:59 +#: ../../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/features.php:60 +#: ../../include/features.php:58 msgid "Large Photos" msgstr "Große Fotos" -#: ../../include/features.php:60 +#: ../../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/features.php:61 +#: ../../include/features.php:59 ../../include/widgets.php:545 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanal-Quellen" + +#: ../../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/features.php:62 +#: ../../include/features.php:60 msgid "Even More Encryption" msgstr "Noch mehr Verschlüsselung" -#: ../../include/features.php:62 +#: ../../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/features.php:63 +#: ../../include/features.php:61 msgid "Enable voting tools" msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/features.php:63 +#: ../../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/features.php:64 -msgid "Flag Adult Photos" -msgstr "Nicht jugendfreie Fotos markieren" - -#: ../../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/features.php:69 +#: ../../include/features.php:67 msgid "Network and Stream Filtering" msgstr "Netzwerk- und Stream-Filter" -#: ../../include/features.php:70 +#: ../../include/features.php:68 msgid "Search by Date" msgstr "Suche nach Datum" -#: ../../include/features.php:70 +#: ../../include/features.php:68 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/features.php:71 +#: ../../include/features.php:69 msgid "Collections Filter" msgstr "Filter für Sammlung" -#: ../../include/features.php:71 +#: ../../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/features.php:72 +#: ../../include/features.php:70 ../../include/widgets.php:273 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../include/features.php:70 msgid "Save search terms for re-use" msgstr "Suchbegriffe zur Wiederverwendung abspeichern" -#: ../../include/features.php:73 +#: ../../include/features.php:71 msgid "Network Personal Tab" msgstr "Persönlicher Netzwerkreiter" -#: ../../include/features.php:73 +#: ../../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/features.php:74 +#: ../../include/features.php:72 msgid "Network New Tab" msgstr "Netzwerkreiter Neu" -#: ../../include/features.php:74 +#: ../../include/features.php:72 msgid "Enable tab to display all new Network activity" msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" -#: ../../include/features.php:75 +#: ../../include/features.php:73 msgid "Affinity Tool" msgstr "Beziehungs-Tool" -#: ../../include/features.php:75 +#: ../../include/features.php:73 msgid "Filter stream activity by depth of relationships" msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" -#: ../../include/features.php:76 +#: ../../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 "Filtert eingehende Beiträge anhand von Schlüsselwörtern." + +#: ../../include/features.php:75 msgid "Suggest Channels" msgstr "Kanäle vorschlagen" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Show channel suggestions" msgstr "Kanalvorschläge anzeigen" -#: ../../include/features.php:81 +#: ../../include/features.php:80 msgid "Post/Comment Tools" msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Tagging" msgstr "Verschlagworten" -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Ability to tag existing posts" msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Add categories to your posts" msgstr "Kategorien für Beiträge" -#: ../../include/features.php:84 +#: ../../include/features.php:83 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/features.php:83 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht Beiträge" -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Ability to dislike posts/comments" msgstr "„Gefällt mir nicht“ ermöglichen" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:86 +#: ../../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:87 +#: ../../include/features.php:86 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:87 +#: ../../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/auth.php:130 -msgid "Logged out." -msgstr "Ausgeloggt." +#: ../../include/comanche.php:34 ../../mod/admin.php:348 +msgid "Default" +msgstr "Standard" -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dieses Element löschen?" -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Login fehlgeschlagen." +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:673 +#: ../../mod/photos.php:1008 ../../mod/photos.php:1126 +msgid "Comment" +msgstr "Kommentar" + +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:390 +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:41 +msgid "everybody" +msgstr "alle" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "geheime Passphrase" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Hinweis zur Passphrase" + +#: ../../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/js_strings.php:17 +msgid "close all" +msgstr "Alle schließen" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nichts Neues hier" + +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" + +#: ../../include/js_strings.php:20 ../../mod/connedit.php:667 +#: ../../mod/rate.php:156 +msgid "Rating" +msgstr "Bewertung" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Beschreibung (optional)" + +#: ../../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:27 +msgid "timeago.prefixFromNow" +msgstr " " + +#: ../../include/js_strings.php:28 +msgid "ago" +msgstr "her" + +#: ../../include/js_strings.php:29 +msgid "from now" +msgstr "von jetzt" + +#: ../../include/js_strings.php:30 +msgid "less than a minute" +msgstr "weniger als eine Minute" + +#: ../../include/js_strings.php:31 +msgid "about a minute" +msgstr "ungefähr eine Minute" + +#: ../../include/js_strings.php:32 +#, php-format +msgid "%d minutes" +msgstr "%d Minuten" + +#: ../../include/js_strings.php:33 +msgid "about an hour" +msgstr "ungefähr eine Stunde" + +#: ../../include/js_strings.php:34 +#, php-format +msgid "about %d hours" +msgstr "ungefähr %d Stunden" + +#: ../../include/js_strings.php:35 +msgid "a day" +msgstr "ein Tag" + +#: ../../include/js_strings.php:36 +#, php-format +msgid "%d days" +msgstr "%d Tage" + +#: ../../include/js_strings.php:37 +msgid "about a month" +msgstr "ungefähr ein Monat" + +#: ../../include/js_strings.php:38 +#, php-format +msgid "%d months" +msgstr "%d Monate" + +#: ../../include/js_strings.php:39 +msgid "about a year" +msgstr "ungefähr ein Jahr" + +#: ../../include/js_strings.php:40 +#, php-format +msgid "%d years" +msgstr "%d Jahre" + +#: ../../include/js_strings.php:41 +msgid " " +msgstr " " + +#: ../../include/js_strings.php:42 +msgid "timeago.numbers" +msgstr "timeago.numbers" + +#: ../../include/js_strings.php:44 ../../include/text.php:1144 +msgid "January" +msgstr "Januar" + +#: ../../include/js_strings.php:45 ../../include/text.php:1144 +msgid "February" +msgstr "Februar" + +#: ../../include/js_strings.php:46 ../../include/text.php:1144 +msgid "March" +msgstr "März" + +#: ../../include/js_strings.php:47 ../../include/text.php:1144 +msgid "April" +msgstr "April" + +#: ../../include/js_strings.php:48 +msgctxt "long" +msgid "May" +msgstr "Mai" + +#: ../../include/js_strings.php:49 ../../include/text.php:1144 +msgid "June" +msgstr "Juni" + +#: ../../include/js_strings.php:50 ../../include/text.php:1144 +msgid "July" +msgstr "Juli" + +#: ../../include/js_strings.php:51 ../../include/text.php:1144 +msgid "August" +msgstr "August" + +#: ../../include/js_strings.php:52 ../../include/text.php:1144 +msgid "September" +msgstr "September" + +#: ../../include/js_strings.php:53 ../../include/text.php:1144 +msgid "October" +msgstr "Oktober" + +#: ../../include/js_strings.php:54 ../../include/text.php:1144 +msgid "November" +msgstr "November" + +#: ../../include/js_strings.php:55 ../../include/text.php:1144 +msgid "December" +msgstr "Dezember" + +#: ../../include/js_strings.php:56 +msgid "Jan" +msgstr "Jan" + +#: ../../include/js_strings.php:57 +msgid "Feb" +msgstr "Feb" + +#: ../../include/js_strings.php:58 +msgid "Mar" +msgstr "Mär" + +#: ../../include/js_strings.php:59 +msgid "Apr" +msgstr "Apr" + +#: ../../include/js_strings.php:60 +msgctxt "short" +msgid "May" +msgstr "Mai" + +#: ../../include/js_strings.php:61 +msgid "Jun" +msgstr "Jun" + +#: ../../include/js_strings.php:62 +msgid "Jul" +msgstr "Jul" + +#: ../../include/js_strings.php:63 +msgid "Aug" +msgstr "Aug" + +#: ../../include/js_strings.php:64 +msgid "Sep" +msgstr "Sep" + +#: ../../include/js_strings.php:65 +msgid "Oct" +msgstr "Okt" + +#: ../../include/js_strings.php:66 +msgid "Nov" +msgstr "Nov" + +#: ../../include/js_strings.php:67 +msgid "Dec" +msgstr "Dez" + +#: ../../include/js_strings.php:68 ../../include/text.php:1140 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/js_strings.php:69 ../../include/text.php:1140 +msgid "Monday" +msgstr "Montag" + +#: ../../include/js_strings.php:70 ../../include/text.php:1140 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/js_strings.php:71 ../../include/text.php:1140 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/js_strings.php:72 ../../include/text.php:1140 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/js_strings.php:73 ../../include/text.php:1140 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/js_strings.php:74 ../../include/text.php:1140 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/js_strings.php:75 +msgid "Sun" +msgstr "So" + +#: ../../include/js_strings.php:76 +msgid "Mon" +msgstr "Mp" + +#: ../../include/js_strings.php:77 +msgid "Tue" +msgstr "Di" + +#: ../../include/js_strings.php:78 +msgid "Wed" +msgstr "Mi" + +#: ../../include/js_strings.php:79 +msgid "Thu" +msgstr "Do" + +#: ../../include/js_strings.php:80 +msgid "Fri" +msgstr "Fr" + +#: ../../include/js_strings.php:81 +msgid "Sat" +msgstr "Sa" + +#: ../../include/js_strings.php:82 +msgctxt "calendar" +msgid "today" +msgstr "heute" + +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "month" +msgstr "Monat" + +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "week" +msgstr "Woche" + +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "day" +msgstr "Tag" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "All day" +msgstr "Ganztägig" #: ../../include/contact_selectors.php:56 msgid "Frequently" @@ -1602,8 +1096,9 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 -#: ../../mod/admin.php:740 ../../boot.php:1554 +#: ../../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" @@ -1631,1255 +1126,1328 @@ msgstr "XMPP/IM" msgid "MySpace" msgstr "MySpace" -#: ../../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/activities.php:42 +msgid " and " +msgstr "und" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standard-Sammlung für neue Kontakte" +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "öffentliches Profil" -#: ../../include/group.php:254 ../../mod/admin.php:740 -msgid "All Channels" -msgstr "Alle Kanäle" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "Bearbeiten" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Sammlungen" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Sammlung bearbeiten" - -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Neue Sammlung erzeugen" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" - -#: ../../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/identity.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Name ist zu lang" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Keine Account-Kennung" - -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." - -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." - -#: ../../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/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standard-Profil" - -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." - -#: ../../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/identity.php:854 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Profilfoto ändern" - -#: ../../include/identity.php:861 -msgid "Profiles" -msgstr "Profile" - -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/bearbeiten" - -#: ../../include/identity.php:862 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" - -#: ../../include/identity.php:865 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Profile bearbeiten" - -#: ../../include/identity.php:878 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profilfoto:" - -#: ../../include/identity.php:881 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: ../../include/identity.php:882 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: ../../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/identity.php:898 ../../include/identity.php:1139 -msgid "Gender:" -msgstr "Geschlecht:" - -#: ../../include/identity.php:899 ../../include/identity.php:1183 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:900 ../../include/identity.php:1194 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../include/identity.php:901 -msgid "Online Now" -msgstr "gerade online" - -#: ../../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/identity.php:984 ../../include/identity.php:1064 -msgid "F d" -msgstr "d. F" - -#: ../../include/identity.php:1029 ../../include/identity.php:1104 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[Heute]" - -#: ../../include/identity.php:1041 -msgid "Birthday Reminders" -msgstr "Geburtstags Erinnerungen" - -#: ../../include/identity.php:1042 -msgid "Birthdays this week:" -msgstr "Geburtstage in dieser Woche:" - -#: ../../include/identity.php:1097 -msgid "[No description]" -msgstr "[Keine Beschreibung]" - -#: ../../include/identity.php:1115 -msgid "Event Reminders" -msgstr "Termin-Erinnerungen" - -#: ../../include/identity.php:1116 -msgid "Events this week:" -msgstr "Termine in dieser Woche:" - -#: ../../include/identity.php:1129 ../../include/identity.php:1246 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/identity.php:1137 ../../mod/settings.php:1044 -msgid "Full Name:" -msgstr "Voller Name:" - -#: ../../include/identity.php:1144 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" - -#: ../../include/identity.php:1168 -msgid "j F, Y" -msgstr "j. F Y" - -#: ../../include/identity.php:1169 -msgid "j F" -msgstr "j. F" - -#: ../../include/identity.php:1176 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/identity.php:1180 -msgid "Age:" -msgstr "Alter:" - -#: ../../include/identity.php:1189 +#: ../../include/activities.php:59 #, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" -#: ../../include/identity.php:1192 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" -#: ../../include/identity.php:1196 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Heimatstadt:" +#: ../../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/identity.php:1198 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../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/identity.php:1200 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/Contact.php:118 +msgid "New window" +msgstr "Neues Fenster" -#: ../../include/identity.php:1202 -msgid "Religion:" -msgstr "Religion:" +#: ../../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/identity.php:1204 -msgid "About:" -msgstr "Über:" +#: ../../include/Contact.php:237 +#, php-format +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" -#: ../../include/identity.php:1206 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../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/identity.php:1208 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../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/identity.php:1210 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../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/identity.php:1212 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "Kanal" -#: ../../include/identity.php:1214 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../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/identity.php:1216 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/conversation.php:150 ../../include/text.php:1840 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "Kommentar" -#: ../../include/identity.php:1218 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../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/identity.php:1220 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../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/identity.php:1222 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../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/identity.php:1224 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" -#: ../../include/identity.php:1226 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/conversation.php:243 ../../include/text.php:933 +msgid "poked" +msgstr "stupste" -#: ../../include/identity.php:1228 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../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/identity.php:1248 -msgid "Like this thing" +#: ../../include/conversation.php:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Likes" msgstr "Gefällt mir" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[no subject]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." - -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." - -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" - -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "Lokales Konto nicht gefunden." - -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." - -#: ../../include/comanche.php:35 ../../mod/admin.php:357 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" - -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" - -#: ../../include/datetime.php:212 ../../mod/events.php:633 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Benötigt" - -#: ../../include/datetime.php:231 -msgid "never" -msgstr "Nie" - -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../include/datetime.php:240 -msgid "year" -msgstr "Jahr" - -#: ../../include/datetime.php:240 -msgid "years" -msgstr "Jahre" - -#: ../../include/datetime.php:241 -msgid "month" -msgstr "Monat" - -#: ../../include/datetime.php:241 -msgid "months" -msgstr "Monate" - -#: ../../include/datetime.php:242 -msgid "week" -msgstr "Woche" - -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "Wochen" - -#: ../../include/datetime.php:243 -msgid "day" -msgstr "Tag" - -#: ../../include/datetime.php:243 -msgid "days" -msgstr "Tage" - -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "Stunde" - -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "Stunden" - -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "Minute" - -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "Minuten" - -#: ../../include/datetime.php:246 -msgid "second" -msgstr "Sekunde" - -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "Sekunden" - -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" - -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" - -#: ../../include/bb2diaspora.php:349 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" - -#: ../../include/bb2diaspora.php:430 -msgid "Redmatrix event notification:" -msgstr "RedMatrix Termin-Benachrichtigung:" - -#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Der Chatraum hat keinen Namen" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Name des Chatraums bereits vergeben" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ungültiger Raumbezeichner." - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatraum konnte nicht gefunden werden." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Der Raum ist voll" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 -msgid "Logout" -msgstr "Abmelden" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:91 ../../include/conversation.php:937 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "Profil ansehen" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1586 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Deine Bilder" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Deine Dateien" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Deine Chaträume" - -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1621 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" - -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1632 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webseiten" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Deine Webseiten" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 -msgid "Login" -msgstr "Anmelden" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 -msgid "Register" -msgstr "Registrieren" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 -msgid "Help" -msgstr "Hilfe" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Durchsuche Seiten-Inhalt" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:334 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" - -#: ../../include/nav.php:182 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/nav.php:182 -msgid "Your matrix" -msgstr "Deine Matrix" - -#: ../../include/nav.php:183 -msgid "Mark all matrix notifications seen" -msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:185 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:185 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:186 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:189 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Verbindungen" - -#: ../../include/nav.php:192 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:192 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:193 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:194 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../include/nav.php:196 ../../include/apps.php:143 -msgid "Mail" -msgstr "Mail" - -#: ../../include/nav.php:196 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:197 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:198 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:199 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:200 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:204 ../../include/apps.php:140 -#: ../../mod/events.php:472 -msgid "Events" -msgstr "Termine" - -#: ../../include/nav.php:204 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:205 -msgid "See all events" -msgstr "Alle Termine ansehen" - -#: ../../include/nav.php:206 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../include/nav.php:208 ../../include/apps.php:132 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" - -#: ../../include/nav.php:218 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:249 ../../include/conversation.php:842 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, content" -msgstr "@Name, #Schlagwort, Text" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Bitte warten..." - -#: ../../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/ItemObject.php:89 ../../include/conversation.php:652 -msgid "Private Message" -msgstr "Private Nachricht" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:644 +#: ../../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/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In Ordner speichern" +#: ../../include/conversation.php:669 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Private Nachricht" -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Ich werde teilnehmen" +#: ../../include/conversation.php:676 ../../include/ItemObject.php:227 +msgid "Message signature validated" +msgstr "Signatur überprüft" -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Ich werde nicht teilnehmen" +#: ../../include/conversation.php:677 ../../include/ItemObject.php:228 +msgid "Message signature incorrect" +msgstr "Signatur nicht korrekt" -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Ich werde vielleicht teilnehmen" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Ich stimme zu" +#: ../../include/conversation.php:709 +msgid "Categories:" +msgstr "Kategorien:" -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Ich lehne ab" +#: ../../include/conversation.php:710 +msgid "Filed under:" +msgstr "Gespeichert unter:" -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Ich enthalte mich" +#: ../../include/conversation.php:718 ../../include/ItemObject.php:314 +#, php-format +msgid "from %s" +msgstr "via %s" -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1667 ../../mod/photos.php:997 -#: ../../mod/photos.php:1009 +#: ../../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/conversation.php:1241 ../../mod/editpost.php:160 +#: ../../mod/events.php:691 +msgid "OK" +msgstr "Ok" + +#: ../../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/conversation.php:1485 +msgid "Discover" +msgstr "Entdecken" + +#: ../../include/conversation.php:1488 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" + +#: ../../include/conversation.php:1493 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: ../../include/conversation.php:1496 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" + +#: ../../include/conversation.php:1500 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: ../../include/conversation.php:1503 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" + +#: ../../include/conversation.php:1508 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Persönlich" + +#: ../../include/conversation.php:1511 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" + +#: ../../include/conversation.php:1517 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" +msgstr "Neu" + +#: ../../include/conversation.php:1520 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" + +#: ../../include/conversation.php:1526 +msgid "Starred" +msgstr "Markiert" + +#: ../../include/conversation.php:1529 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" + +#: ../../include/conversation.php:1536 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1539 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" + +#: ../../include/conversation.php:1583 ../../mod/admin.php:947 +msgid "Channel" +msgstr "Kanal" + +#: ../../include/conversation.php:1586 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: ../../include/conversation.php:1595 +msgid "About" +msgstr "Über" + +#: ../../include/conversation.php:1598 +msgid "Profile Details" +msgstr "Profil-Details" + +#: ../../include/conversation.php:1604 ../../include/apps.php:139 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" + +#: ../../include/conversation.php:1607 ../../include/photos.php:422 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/conversation.php:1614 +msgid "Files and Storage" +msgstr "Dateien und Speicher" + +#: ../../include/conversation.php:1624 ../../include/conversation.php:1627 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../../include/conversation.php:1637 ../../include/apps.php:129 +#: ../../include/nav.php:103 +msgid "Bookmarks" +msgstr "Lesezeichen" + +#: ../../include/conversation.php:1640 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" + +#: ../../include/conversation.php:1647 ../../include/apps.php:136 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Webseiten" + +#: ../../include/conversation.php:1650 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" + +#: ../../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/ItemObject.php:184 ../../include/conversation.php:1695 -#: ../../mod/photos.php:1006 +#: ../../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/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/ItemObject.php:212 -msgid "Add Star" -msgstr "Stern hinzufügen" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Stern entfernen" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Markierungsstatus (Stern) umschalten" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "markiert" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:659 -msgid "Message signature validated" -msgstr "Signatur überprüft" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:660 -msgid "Message signature incorrect" -msgstr "Signatur nicht korrekt" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Tag hinzufügen" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:941 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:942 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Teilen" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "Teilen" - -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Schaue Dir %ss Profil an – %s" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "an" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: ../../include/ItemObject.php:312 ../../include/conversation.php:704 -#, php-format -msgid " from %s" -msgstr "von %s" - -#: ../../include/ItemObject.php:315 ../../include/conversation.php:707 -#, php-format -msgid "last edited: %s" -msgstr "zuletzt bearbeitet: %s" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:708 -#, php-format -msgid "Expires: %s" -msgstr "Verfällt: %s" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Favoriten speichern" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Zum Kalender hinzufügen" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Alle als gelesen markieren" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1125 +#: ../../include/conversation.php:1709 msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Zusage" +msgstr[1] "Zusagen" -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1126 +#: ../../include/conversation.php:1712 msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1131 -msgid "Close" -msgstr "Schließen" - -#: ../../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/ItemObject.php:665 ../../mod/photos.php:960 -#: ../../mod/photos.php:1078 -msgid "This is you" -msgstr "Das bist Du" - -#: ../../include/ItemObject.php:669 -msgid "Bold" -msgstr "Fett" - -#: ../../include/ItemObject.php:670 -msgid "Italic" -msgstr "Kursiv" - -#: ../../include/ItemObject.php:671 -msgid "Underline" -msgstr "Unterstrichen" - -#: ../../include/ItemObject.php:672 -msgid "Quote" -msgstr "Zitat" - -#: ../../include/ItemObject.php:673 -msgid "Code" -msgstr "Code" - -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Bild" - -#: ../../include/ItemObject.php:675 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Video" - -#: ../../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/activities.php:39 -msgid " and " -msgstr "und" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "öffentliches Profil" - -#: ../../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/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" - -#: ../../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/dir_fns.php:96 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" - -#: ../../include/dir_fns.php:97 -msgid "Alphabetic" -msgstr "alphabetisch" - -#: ../../include/dir_fns.php:98 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" - -#: ../../include/dir_fns.php:99 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" - -#: ../../include/dir_fns.php:100 -msgid "Oldest to Newest" -msgstr "Älteste zuerst" - -#: ../../include/dir_fns.php:101 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" - -#: ../../include/dir_fns.php:103 -msgid "Sort" -msgstr "Sortieren" - -#: ../../include/dir_fns.php:119 -msgid "Enable Safe Search" -msgstr "Sichere Suche einschalten" - -#: ../../include/dir_fns.php:121 -msgid "Disable Safe Search" -msgstr "Sichere Suche ausschalten" - -#: ../../include/dir_fns.php:123 -msgid "Safe Mode" -msgstr "Sicherer Modus" - -#: ../../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/items.php:979 ../../include/items.php:1024 -msgid "(Unknown)" -msgstr "(Unbekannt)" - -#: ../../include/items.php:1181 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." - -#: ../../include/items.php:1183 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." - -#: ../../include/items.php:1185 -msgid "Visible to anybody in this network." -msgstr "Für jedes Mitglied der RedMatrix sichtbar." - -#: ../../include/items.php:1187 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." - -#: ../../include/items.php:1189 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." - -#: ../../include/items.php:1191 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." - -#: ../../include/items.php:1193 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." - -#: ../../include/items.php:1195 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." - -#: ../../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/items.php:4455 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Sammlung nicht gefunden" - -#: ../../include/items.php:4470 -msgid "Collection is empty." -msgstr "Sammlung ist leer." - -#: ../../include/items.php:4477 -#, php-format -msgid "Collection: %s" -msgstr "Sammlung: %s" - -#: ../../include/items.php:4488 -#, php-format -msgid "Connection: %s" -msgstr "Verbindung: %s" - -#: ../../include/items.php:4491 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." - -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Neues Fenster" - -#: ../../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/Contact.php:215 ../../mod/admin.php:651 -#, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" - -#: ../../include/network.php:613 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" - -#: ../../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/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/bbcode.php:150 ../../include/bbcode.php:744 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/bbcode.php:168 -msgid "Install design element: " -msgstr "Design-Element installieren:" - -#: ../../include/bbcode.php:174 -msgid "QR code" -msgstr "QR-Code" - -#: ../../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/bbcode.php:225 -msgid "post" -msgstr "Beitrag" - -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" - -#: ../../include/bbcode.php:662 -msgid "$1 spoiler" -msgstr "$1 Spoiler" - -#: ../../include/bbcode.php:682 -msgid "$1 wrote:" -msgstr "$1 schrieb:" - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -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 -msgid "Advanced" -msgstr "Fortgeschritten" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Finde Kanäle" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: ../../include/contact_widgets.php:25 -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 -msgid "Find" -msgstr "Finde" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:334 -msgid "Channel Suggestions" -msgstr "Kanal-Vorschläge" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Zufallsprofil" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Lade Freunde ein" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" - -#: ../../include/contact_widgets.php:125 -#, 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 -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/api.php:1081 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Absage" +msgstr[1] "Absagen" + +#: ../../include/conversation.php:1715 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] " Unentschlossen" +msgstr[1] "Unentschlossene" + +#: ../../include/conversation.php:1718 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Zustimmung" +msgstr[1] "Zustimmungen" + +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Ablehnung" +msgstr[1] "Ablehnungen" + +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Enthaltung" +msgstr[1] "Enthaltungen" + +#: ../../include/api.php:1290 msgid "Public Timeline" msgstr "Öffentliche Zeitleiste" -#: ../../include/zot.php:673 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" - -#: ../../include/zot.php:689 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" - -#: ../../include/zot.php:1961 +#: ../../include/photos.php:109 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" + +#: ../../include/photos.php:116 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 +msgid "Unable to process image" +msgstr "Kann Bild nicht verarbeiten" + +#: ../../include/photos.php:219 +msgid "Photo storage failed." +msgstr "Foto speichern schlug fehl" + +#: ../../include/photos.php:426 +msgid "Upload New Photos" +msgstr "Lade neue Fotos hoch" + +#: ../../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/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." + +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "eine private Nachricht" + +#: ../../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/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/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/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/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/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/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/enotify.php:196 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" + +#: ../../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/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/enotify.php:224 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" + +#: ../../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/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/enotify.php:238 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" + +#: ../../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/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/enotify.php:256 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" + +#: ../../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/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/enotify.php:270 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Benachrichtigung] Vorstellung erhalten" + +#: ../../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/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/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/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/enotify.php:285 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" + +#: ../../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/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/enotify.php:293 +msgid "Name:" +msgstr "Name:" + +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: ../../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/enotify.php:508 +msgid "[Red:Notify]" +msgstr "[Red:Benachrichtigung]" + +#: ../../include/network.php:635 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" + +#: ../../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 "Kein Betreff" + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" + +#: ../../include/text.php:391 +msgid "prev" +msgstr "vorherige" + +#: ../../include/text.php:393 +msgid "first" +msgstr "erste" + +#: ../../include/text.php:422 +msgid "last" +msgstr "letzte" + +#: ../../include/text.php:425 +msgid "next" +msgstr "nächste" + +#: ../../include/text.php:435 +msgid "older" +msgstr "älter" + +#: ../../include/text.php:437 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:775 +msgid "No connections" +msgstr "Keine Verbindungen" + +#: ../../include/text.php:787 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d Verbindung" +msgstr[1] "%d Verbindungen" + +#: ../../include/text.php:800 ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "Verbindungen anzeigen" + +#: ../../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/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/text.php:933 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:934 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:934 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:935 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:935 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:936 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:936 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:937 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:937 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:938 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:938 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:948 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:949 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:950 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:951 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:952 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:953 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:954 +msgid "stupified" +msgstr "verblüfft" + +#: ../../include/text.php:955 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:956 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:957 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:958 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:959 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:960 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:961 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:962 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:963 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:964 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:965 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:966 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:967 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:968 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1144 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1247 +msgid "unknown.???" +msgstr "unbekannt.???" + +#: ../../include/text.php:1248 +msgid "bytes" +msgstr "Bytes" + +#: ../../include/text.php:1284 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1359 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1443 ../../include/text.php:1454 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" + +#: ../../include/text.php:1609 ../../mod/events.php:497 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../include/text.php:1630 ../../include/text.php:1701 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1638 +msgid "Page layout" +msgstr "Seiten-Layout" + +#: ../../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/text.php:1679 +msgid "Page content type" +msgstr "Art des Seiteninhalts" + +#: ../../include/text.php:1713 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../include/text.php:1845 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2140 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" + +#: ../../include/text.php:2143 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../include/text.php:2144 ../../mod/menu.php:103 +msgid "Menus" +msgstr "Menüs" + +#: ../../include/text.php:2145 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Layouts" + +#: ../../include/text.php:2146 +msgid "Pages" +msgstr "Seiten" + +#: ../../include/acl_selectors.php:239 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit" + +#: ../../include/acl_selectors.php:240 +msgid "Show" +msgstr "Anzeigen" + +#: ../../include/acl_selectors.php:241 +msgid "Don't show" +msgstr "Nicht anzeigen" + +#: ../../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/acl_selectors.php:248 ../../include/ItemObject.php:361 +#: ../../mod/photos.php:1179 +msgid "Close" +msgstr "Schließen" + +#: ../../include/attach.php:243 ../../include/attach.php:329 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." + +#: ../../include/attach.php:471 +msgid "No source file." +msgstr "Keine Quelldatei." + +#: ../../include/attach.php:489 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:507 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:632 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" + +#: ../../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/attach.php:793 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:806 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." + +#: ../../include/attach.php:854 ../../include/attach.php:870 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:916 ../../include/attach.php:1069 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:942 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:965 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:1023 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:1027 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + +#: ../../include/attach.php:1075 +msgid "Empty path" +msgstr "Leere Pfadangabe" + +#: ../../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/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." + +#: ../../include/import.php:80 ../../mod/import.php:138 +msgid "Cloned channel not found. Import failed." +msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." + +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "Neuer Beitrag wurde erzeugt" + +#: ../../include/notify.php:21 +#, php-format +msgid "commented on %s's post" +msgstr "hat %s's Beitrag kommentiert" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Neue Seite" + +#: ../../include/page_widgets.php:39 ../../mod/layouts.php:188 +#: ../../mod/webpages.php:187 ../../mod/blocks.php:159 +msgid "View" +msgstr "Ansicht" + +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Aktionen" + +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Seiten-Link" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" + +#: ../../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/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/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/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 msgid "Male" msgstr "Männlich" #: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 msgid "Female" msgstr "Weiblich" @@ -2923,13 +2491,6 @@ msgstr "Geschlechtslos" msgid "Non-specific" msgstr "unklar" -#: ../../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/profile_selectors.php:6 msgid "Undecided" msgstr "Unentschieden" @@ -3026,6 +2587,15 @@ msgstr "Treulos" msgid "Sex Addict" msgstr "Sexabhängig" +#: ../../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/profile_selectors.php:80 msgid "Friends/Benefits" msgstr "Freunde/Begünstigte" @@ -3116,6 +2686,56 @@ msgstr "Interessiert mich nicht" msgid "Ask me" msgstr "Frag mich mal" +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" + +#: ../../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/event.php:50 ../../include/bb2diaspora.php:481 +#: ../../include/identity.php:992 ../../mod/directory.php:302 +#: ../../mod/events.php:701 +msgid "Location:" +msgstr "Ort:" + +#: ../../include/event.php:766 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" + +#: ../../include/event.php:953 +msgid "Not specified" +msgstr "Keine Angabe" + +#: ../../include/event.php:954 +msgid "Needs Action" +msgstr "Aktion erforderlich" + +#: ../../include/event.php:955 +msgid "Completed" +msgstr "Abgeschlossen" + +#: ../../include/event.php:956 +msgid "In Process" +msgstr "In Bearbeitung" + +#: ../../include/event.php:957 +msgid "Cancelled" +msgstr "gestrichen" + #: ../../include/apps.php:128 msgid "Site Admin" msgstr "Hub-Administration" @@ -3124,13 +2744,58 @@ msgstr "Hub-Administration" msgid "Address Book" msgstr "Adressbuch" -#: ../../include/apps.php:144 ../../mod/mood.php:130 +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1497 +msgid "Login" +msgstr "Anmelden" + +#: ../../include/apps.php:132 ../../include/nav.php:200 +#: ../../mod/manage.php:160 +msgid "Channel Manager" +msgstr "Kanal-Manager" + +#: ../../include/apps.php:133 +msgid "Matrix" +msgstr "Matrix" + +#: ../../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/apps.php:137 ../../include/nav.php:177 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../include/apps.php:138 ../../include/identity.php:1226 +#: ../../include/identity.php:1343 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" + +#: ../../include/apps.php:140 ../../include/nav.php:196 +#: ../../mod/events.php:526 +msgid "Events" +msgstr "Termine" + +#: ../../include/apps.php:141 ../../include/nav.php:162 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../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/apps.php:143 ../../include/nav.php:188 +msgid "Mail" +msgstr "Mail" + +#: ../../include/apps.php:144 ../../mod/mood.php:131 msgid "Mood" msgstr "Laune" -#: ../../include/apps.php:145 ../../include/conversation.php:943 -msgid "Poke" -msgstr "Anstupsen" +#: ../../include/apps.php:146 ../../include/nav.php:97 +msgid "Chat" +msgstr "Chat" #: ../../include/apps.php:148 msgid "Probe" @@ -3152,7 +2817,7 @@ msgstr "Einladen" msgid "Features" msgstr "Funktionen" -#: ../../include/apps.php:153 +#: ../../include/apps.php:153 ../../mod/id.php:28 msgid "Language" msgstr "Sprache" @@ -3160,11 +2825,12 @@ msgstr "Sprache" msgid "Post" msgstr "Beitrag" -#: ../../include/apps.php:155 +#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 +#: ../../mod/id.php:19 msgid "Profile Photo" msgstr "Profilfoto" -#: ../../include/apps.php:247 ../../mod/settings.php:81 +#: ../../include/apps.php:247 ../../mod/settings.php:84 #: ../../mod/settings.php:609 msgid "Update" msgstr "Aktualisieren" @@ -3177,1433 +2843,2159 @@ msgstr "Installieren" msgid "Purchase" msgstr "Kaufen" -#: ../../include/account.php:23 +#: ../../include/auth.php:131 +msgid "Logged out." +msgstr "Ausgeloggt." + +#: ../../include/auth.php:272 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" + +#: ../../include/auth.php:286 ../../mod/openid.php:189 +msgid "Login failed." +msgstr "Login fehlgeschlagen." + +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../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/bbcode.php:162 ../../include/bbcode.php:843 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: ../../include/bbcode.php:179 +#, php-format +msgid "Install %s element: " +msgstr "Element %s installieren: " + +#: ../../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/bbcode.php:193 ../../mod/impel.php:37 +msgid "webpage" +msgstr "Webseite" + +#: ../../include/bbcode.php:196 ../../mod/impel.php:47 +msgid "layout" +msgstr "Layout" + +#: ../../include/bbcode.php:199 ../../mod/impel.php:42 +msgid "block" +msgstr "Block" + +#: ../../include/bbcode.php:202 ../../mod/impel.php:54 +msgid "menu" +msgstr "Menü" + +#: ../../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/bbcode.php:259 ../../mod/tagger.php:51 +msgid "post" +msgstr "Beitrag" + +#: ../../include/bbcode.php:547 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" + +#: ../../include/bbcode.php:754 +msgid "$1 spoiler" +msgstr "$1 Spoiler" + +#: ../../include/bbcode.php:781 +msgid "$1 wrote:" +msgstr "$1 schrieb:" + +#: ../../include/account.php:27 msgid "Not a valid email address" msgstr "Ungültige E-Mail-Adresse" -#: ../../include/account.php:25 +#: ../../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/account.php:31 +#: ../../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/account.php:64 +#: ../../include/account.php:67 msgid "An invitation is required." msgstr "Eine Einladung wird benötigt" -#: ../../include/account.php:68 +#: ../../include/account.php:71 msgid "Invitation could not be verified." msgstr "Die Einladung konnte nicht bestätigt werden" -#: ../../include/account.php:119 +#: ../../include/account.php:121 msgid "Please enter the required information." msgstr "Bitte gib die benötigten Informationen ein." -#: ../../include/account.php:187 +#: ../../include/account.php:188 msgid "Failed to store account information." msgstr "Speichern der Account-Informationen fehlgeschlagen" -#: ../../include/account.php:245 +#: ../../include/account.php:246 #, php-format msgid "Registration confirmation for %s" msgstr "Registrierungsbestätigung für %s" -#: ../../include/account.php:313 +#: ../../include/account.php:312 #, php-format msgid "Registration request at %s" msgstr "Registrierungsanfrage auf %s" -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/account.php:337 +#: ../../include/account.php:336 msgid "your registration password" msgstr "Dein Registrierungspasswort" -#: ../../include/account.php:340 ../../include/account.php:397 +#: ../../include/account.php:339 ../../include/account.php:399 #, php-format msgid "Registration details for %s" msgstr "Registrierungsdetails für %s" -#: ../../include/account.php:406 +#: ../../include/account.php:408 msgid "Account approved." msgstr "Account bestätigt." -#: ../../include/account.php:440 +#: ../../include/account.php:447 #, php-format msgid "Registration revoked for %s" msgstr "Registrierung für %s widerrufen" -#: ../../include/account.php:486 +#: ../../include/account.php:492 msgid "Account verified. Please login." msgstr "Konto geprüft. Bitte melde Dich an!" -#: ../../include/account.php:674 ../../include/account.php:676 +#: ../../include/account.php:705 ../../include/account.php:707 msgid "Click here to upgrade." msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/account.php:682 +#: ../../include/account.php:713 msgid "This action exceeds the limits set by your subscription plan." msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../include/account.php:687 +#: ../../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/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "Kanal" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " -#: ../../include/conversation.php:167 ../../mod/like.php:385 +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." + +#: ../../include/follow.php:154 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." + +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" + +#: ../../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 -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s nicht" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../include/conversation.php:204 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:415 +msgid "Advanced" +msgstr "Fortgeschritten" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Finde Kanäle" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" + +#: ../../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/directory.php:383 +#: ../../mod/suggest.php:60 +msgid "Channel Suggestions" +msgstr "Kanal-Vorschläge" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Zufallsprofil" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Lade Freunde ein" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" + +#: ../../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 "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" -#: ../../include/conversation.php:239 +#: ../../include/contact_widgets.php:133 +msgid "show more" +msgstr "mehr zeigen" + +#: ../../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/group.php:232 +msgid "Add new connections to this collection (privacy group)" +msgstr "Neue Verbindungen zu dieser Sammlung (Privatsphäre-Gruppe) hinzufügen" + +#: ../../include/group.php:251 ../../mod/admin.php:788 +msgid "All Channels" +msgstr "Alle Kanäle" + +#: ../../include/group.php:273 +msgid "edit" +msgstr "Bearbeiten" + +#: ../../include/group.php:295 +msgid "Collections" +msgstr "Sammlungen" + +#: ../../include/group.php:296 +msgid "Edit collection" +msgstr "Sammlung bearbeiten" + +#: ../../include/group.php:297 +msgid "Add new collection" +msgstr "Neue Sammlung hinzufügen" + +#: ../../include/group.php:298 +msgid "Channels not in any collection" +msgstr "Kanäle, die nicht in einer Sammlung sind" + +#: ../../include/group.php:300 ../../include/widgets.php:274 +msgid "add" +msgstr "hinzufügen" + +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" +msgstr "Schlagwörter" + +#: ../../include/taxonomy.php:294 +msgid "Keywords" +msgstr "Schlüsselwörter" + +#: ../../include/taxonomy.php:315 +msgid "have" +msgstr "habe" + +#: ../../include/taxonomy.php:315 +msgid "has" +msgstr "hat" + +#: ../../include/taxonomy.php:316 +msgid "want" +msgstr "will" + +#: ../../include/taxonomy.php:316 +msgid "wants" +msgstr "will" + +#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 +msgid "like" +msgstr "mag" + +#: ../../include/taxonomy.php:317 +msgid "likes" +msgstr "gefällt" + +#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "verurteile" + +#: ../../include/taxonomy.php:318 +msgid "dislikes" +msgstr "missfällt" + +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Sicherer Modus" + +#: ../../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/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/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Nur dieser Hub" + +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Namensfeld leer" + +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Name ist zu lang" + +#: ../../include/identity.php:181 +msgid "No account identifier" +msgstr "Keine Account-Kennung" + +#: ../../include/identity.php:193 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." + +#: ../../include/identity.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." + +#: ../../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/identity.php:288 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" + +#: ../../include/identity.php:346 +msgid "Default Profile" +msgstr "Standard-Profil" + +#: ../../include/identity.php:745 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal 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/identity.php:954 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Profilfoto ändern" + +#: ../../include/identity.php:960 +msgid "Profiles" +msgstr "Profile" + +#: ../../include/identity.php:960 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/bearbeiten" + +#: ../../include/identity.php:961 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" + +#: ../../include/identity.php:964 ../../include/nav.php:90 +msgid "Edit Profile" +msgstr "Profile bearbeiten" + +#: ../../include/identity.php:976 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Profilfoto:" + +#: ../../include/identity.php:979 +msgid "visible to everybody" +msgstr "sichtbar für jeden" + +#: ../../include/identity.php:980 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" + +#: ../../include/identity.php:996 ../../include/identity.php:1236 +msgid "Gender:" +msgstr "Geschlecht:" + +#: ../../include/identity.php:997 ../../include/identity.php:1280 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:998 ../../include/identity.php:1291 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../include/identity.php:999 +msgid "Online Now" +msgstr "gerade online" + +#: ../../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/identity.php:1084 ../../include/identity.php:1162 +msgid "F d" +msgstr "d. F" + +#: ../../include/identity.php:1129 ../../include/identity.php:1201 +#: ../../mod/ping.php:341 +msgid "[today]" +msgstr "[Heute]" + +#: ../../include/identity.php:1140 +msgid "Birthday Reminders" +msgstr "Geburtstags Erinnerungen" + +#: ../../include/identity.php:1141 +msgid "Birthdays this week:" +msgstr "Geburtstage in dieser Woche:" + +#: ../../include/identity.php:1194 +msgid "[No description]" +msgstr "[Keine Beschreibung]" + +#: ../../include/identity.php:1212 +msgid "Event Reminders" +msgstr "Termin-Erinnerungen" + +#: ../../include/identity.php:1213 +msgid "Events this week:" +msgstr "Termine in dieser Woche:" + +#: ../../include/identity.php:1234 ../../mod/settings.php:1026 +msgid "Full Name:" +msgstr "Voller Name:" + +#: ../../include/identity.php:1241 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" + +#: ../../include/identity.php:1265 +msgid "j F, Y" +msgstr "j. F Y" + +#: ../../include/identity.php:1266 +msgid "j F" +msgstr "j. F" + +#: ../../include/identity.php:1273 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/identity.php:1277 ../../mod/directory.php:297 +msgid "Age:" +msgstr "Alter:" + +#: ../../include/identity.php:1286 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" -#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#: ../../include/identity.php:1289 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" + +#: ../../include/identity.php:1293 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Heimatstadt:" + +#: ../../include/identity.php:1295 +msgid "Tags:" +msgstr "Schlagworte:" + +#: ../../include/identity.php:1297 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: ../../include/identity.php:1299 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/identity.php:1301 ../../mod/directory.php:315 +msgid "About:" +msgstr "Über:" + +#: ../../include/identity.php:1303 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" + +#: ../../include/identity.php:1305 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Gefällt:" + +#: ../../include/identity.php:1307 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Gefällt nicht:" + +#: ../../include/identity.php:1309 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" + +#: ../../include/identity.php:1311 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" + +#: ../../include/identity.php:1313 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: ../../include/identity.php:1315 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" + +#: ../../include/identity.php:1317 +msgid "Television:" +msgstr "Fernsehen:" + +#: ../../include/identity.php:1319 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" + +#: ../../include/identity.php:1321 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" + +#: ../../include/identity.php:1323 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" + +#: ../../include/identity.php:1325 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: ../../include/identity.php:1345 +msgid "Like this thing" +msgstr "Gefällt mir" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[no subject]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." + +#: ../../include/message.php:203 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In Ordner speichern" + +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Ich werde teilnehmen" + +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "Ich werde nicht teilnehmen" + +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Ich werde vielleicht teilnehmen" + +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Ich stimme zu" + +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "Ich lehne ab" + +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Ich enthalte mich" + +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Stern hinzufügen" + +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Stern entfernen" + +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Markierungsstatus (Stern) umschalten" + +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "markiert" + +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Tag hinzufügen" + +#: ../../include/ItemObject.php:254 ../../mod/photos.php:987 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" + +#: ../../include/ItemObject.php:255 ../../mod/photos.php:988 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" + +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Teilen" + +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "Teilen" + +#: ../../include/ItemObject.php:276 #, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" +#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 +#, php-format +msgid "View %s's profile - %s" +msgstr "Schaue Dir %ss Profil an – %s" + +#: ../../include/ItemObject.php:299 +msgid "to" +msgstr "an" + +#: ../../include/ItemObject.php:300 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:301 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: ../../include/ItemObject.php:302 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: ../../include/ItemObject.php:305 +msgid "Delivery Report" +msgstr "Zustellungsbericht" + +#: ../../include/ItemObject.php:339 +msgid "Save Bookmarks" +msgstr "Favoriten speichern" + +#: ../../include/ItemObject.php:340 +msgid "Add to Calendar" +msgstr "Zum Kalender hinzufügen" + +#: ../../include/ItemObject.php:349 +msgid "Mark all seen" +msgstr "Alle als gelesen markieren" + +#: ../../include/ItemObject.php:355 ../../mod/photos.php:1173 +msgctxt "noun" msgid "Likes" msgstr "Gefällt mir" -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" +#: ../../include/ItemObject.php:356 ../../mod/photos.php:1174 +msgctxt "noun" msgid "Dislikes" -msgstr "Gefällt mir nicht" +msgstr "Gefällt nicht" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" +#: ../../include/ItemObject.php:671 ../../mod/photos.php:1006 +#: ../../mod/photos.php:1124 +msgid "This is you" +msgstr "Das bist Du" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" +#: ../../include/ItemObject.php:680 +msgid "Image" +msgstr "Bild" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" - -#: ../../include/conversation.php:680 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" - -#: ../../include/conversation.php:695 -msgid "Categories:" -msgstr "Kategorien:" - -#: ../../include/conversation.php:696 -msgid "Filed under:" -msgstr "Gespeichert unter:" - -#: ../../include/conversation.php:723 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "lösche" - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Quelle anzeigen" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Status ansehen" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Fotos ansehen" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Matrix-Aktivität" - -#: ../../include/conversation.php:941 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: ../../include/conversation.php:942 -msgid "Send PM" -msgstr "Sende PN" - -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." - -#: ../../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/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 gefällt das nicht." -msgstr[1] "%2$d Leuten gefällt das nicht." - -#: ../../include/conversation.php:1073 -msgid "and" -msgstr "und" - -#: ../../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/conversation.php:1077 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1136 -msgid "Visible to everybody" -msgstr "Sichtbar für jeden" - -#: ../../include/conversation.php:1137 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" - -#: ../../include/conversation.php:1138 -msgid "Please enter a video link/URL:" -msgstr "Gib einen Video-Link/URL ein:" - -#: ../../include/conversation.php:1139 -msgid "Please enter an audio link/URL:" -msgstr "Gib einen Audio-Link/URL ein:" - -#: ../../include/conversation.php:1140 -msgid "Tag term:" -msgstr "Schlagwort:" - -#: ../../include/conversation.php:1141 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" - -#: ../../include/conversation.php:1142 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" - -#: ../../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/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/conversation.php:1172 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Seitentitel-Link" - -#: ../../include/conversation.php:1175 -msgid "Post as" -msgstr "Veröffentlichen als" - -#: ../../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/conversation.php:1177 -msgid "upload photo" -msgstr "Foto hochladen" - -#: ../../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/conversation.php:1179 -msgid "attach file" -msgstr "Datei anfügen" - -#: ../../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" +#: ../../include/ItemObject.php:681 +msgid "Insert Link" msgstr "Link einfügen" -#: ../../include/conversation.php:1181 -msgid "web link" -msgstr "Web-Link" +#: ../../include/ItemObject.php:682 +msgid "Video" +msgstr "Video" -#: ../../include/conversation.php:1182 -msgid "Insert video link" -msgstr "Video-Link einfügen" +#: ../../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:1183 -msgid "video link" -msgstr "Video-Link" +#: ../../include/items.php:1128 ../../include/items.php:1174 +msgid "(Unknown)" +msgstr "(Unbekannt)" -#: ../../include/conversation.php:1184 -msgid "Insert audio link" -msgstr "Audio-Link einfügen" +#: ../../include/items.php:1371 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." -#: ../../include/conversation.php:1185 -msgid "audio link" -msgstr "Audio-Link" +#: ../../include/items.php:1373 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." -#: ../../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/items.php:1375 +msgid "Visible to anybody in this network." +msgstr "Für jedes Mitglied der RedMatrix sichtbar." -#: ../../include/conversation.php:1187 -msgid "set location" -msgstr "Standort" +#: ../../include/items.php:1377 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/conversation.php:1188 ../../mod/editpost.php:122 -msgid "Toggle voting" -msgstr "Umfragewerkzeug aktivieren" +#: ../../include/items.php:1379 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." -#: ../../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/items.php:1381 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." -#: ../../include/conversation.php:1192 -msgid "clear location" -msgstr "Standort löschen" +#: ../../include/items.php:1383 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../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/items.php:1385 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../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/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:1199 ../../mod/editblock.php:153 -#: ../../mod/editpost.php:126 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" +#: ../../include/items.php:4772 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Sammlung nicht gefunden" -#: ../../include/conversation.php:1200 -msgid "permissions" -msgstr "Berechtigungen" +#: ../../include/items.php:4788 +msgid "Collection is empty." +msgstr "Sammlung ist leer." -#: ../../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/items.php:4795 +#, php-format +msgid "Collection: %s" +msgstr "Sammlung: %s" -#: ../../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/items.php:4805 ../../mod/connedit.php:658 +#, php-format +msgid "Connection: %s" +msgstr "Verbindung: %s" -#: ../../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/items.php:4807 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/conversation.php:1226 ../../mod/editpost.php:154 -#: ../../mod/events.php:635 -msgid "OK" -msgstr "Ok" +#: ../../include/widgets.php:91 ../../include/nav.php:157 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Apps" -#: ../../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:92 +msgid "System" +msgstr "System" -#: ../../include/conversation.php:1471 -msgid "Discover" -msgstr "Entdecken" +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Persönliche App erstellen" -#: ../../include/conversation.php:1474 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Persönliche App bearbeiten" -#: ../../include/conversation.php:1479 -msgid "Commented Order" -msgstr "Neueste Kommentare" +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" -#: ../../include/conversation.php:1482 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" +#: ../../include/widgets.php:143 ../../mod/connections.php:125 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../include/conversation.php:1486 -msgid "Posted Order" -msgstr "Neueste Beiträge" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Mehr anzeigen …" -#: ../../include/conversation.php:1489 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" +#: ../../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:1497 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" +#: ../../include/widgets.php:171 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" -#: ../../include/conversation.php:1503 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "Neu" +#: ../../include/widgets.php:172 +msgid "Enter the channel address" +msgstr "Adresse des Kanals eingeben" -#: ../../include/conversation.php:1506 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" +#: ../../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:1512 -msgid "Starred" -msgstr "Markiert" +#: ../../include/widgets.php:189 +msgid "Notes" +msgstr "Notizen" -#: ../../include/conversation.php:1515 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" +#: ../../include/widgets.php:265 +msgid "Remove term" +msgstr "Eintrag löschen" -#: ../../include/conversation.php:1522 -msgid "Spam" -msgstr "Spam" +#: ../../include/widgets.php:348 +msgid "Archives" +msgstr "Archive" -#: ../../include/conversation.php:1525 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" +#: ../../include/widgets.php:427 ../../mod/connedit.php:567 +msgid "Me" +msgstr "Ich" -#: ../../include/conversation.php:1565 ../../mod/admin.php:870 -msgid "Channel" -msgstr "Kanal" +#: ../../include/widgets.php:428 ../../mod/connedit.php:568 +msgid "Family" +msgstr "Familie" -#: ../../include/conversation.php:1568 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" +#: ../../include/widgets.php:430 ../../mod/connedit.php:570 +msgid "Acquaintances" +msgstr "Bekannte" -#: ../../include/conversation.php:1577 -msgid "About" -msgstr "Über" +#: ../../include/widgets.php:431 ../../mod/connedit.php:571 +#: ../../mod/connections.php:88 ../../mod/connections.php:103 +msgid "All" +msgstr "Alle" -#: ../../include/conversation.php:1580 -msgid "Profile Details" -msgstr "Profil-Details" +#: ../../include/widgets.php:450 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../include/conversation.php:1598 -msgid "Files and Storage" -msgstr "Dateien und Speicher" +#: ../../include/widgets.php:484 +msgid "Account settings" +msgstr "Konto-Einstellungen" -#: ../../include/conversation.php:1608 ../../include/conversation.php:1611 -msgid "Chatrooms" +#: ../../include/widgets.php:490 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" + +#: ../../include/widgets.php:496 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" + +#: ../../include/widgets.php:502 +msgid "Feature/Addon settings" +msgstr "Plugin-Einstellungen" + +#: ../../include/widgets.php:508 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" + +#: ../../include/widgets.php:514 +msgid "Connected apps" +msgstr "Verbundene Apps" + +#: ../../include/widgets.php:520 +msgid "Export channel" +msgstr "Kanal exportieren" + +#: ../../include/widgets.php:529 ../../mod/connedit.php:658 +msgid "Connection Default Permissions" +msgstr "Standardzugriffsrechte für neue Verbindungen:" + +#: ../../include/widgets.php:537 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" + +#: ../../include/widgets.php:567 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" + +#: ../../include/widgets.php:569 +msgid "Check Mail" +msgstr "Nachrichten abrufen" + +#: ../../include/widgets.php:575 +msgid "Combined View" +msgstr "Kombinierte Anzeige" + +#: ../../include/widgets.php:580 ../../include/nav.php:191 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/widgets.php:585 ../../include/nav.php:192 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/widgets.php:590 ../../include/nav.php:193 +msgid "New Message" +msgstr "Neue Nachricht" + +#: ../../include/widgets.php:609 ../../include/widgets.php:621 +msgid "Conversations" +msgstr "Konversationen" + +#: ../../include/widgets.php:613 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" + +#: ../../include/widgets.php:617 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" + +#: ../../include/widgets.php:631 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: ../../include/widgets.php:648 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: ../../include/widgets.php:650 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - G:i" + +#: ../../include/widgets.php:738 +msgid "Chat Rooms" msgstr "Chaträume" -#: ../../include/conversation.php:1624 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" +#: ../../include/widgets.php:758 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" -#: ../../include/conversation.php:1635 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" +#: ../../include/widgets.php:778 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" -#: ../../include/conversation.php:1698 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Zusage" -msgstr[1] "Zusagen" +#: ../../include/widgets.php:905 ../../include/widgets.php:963 +msgid "photo/image" +msgstr "Foto/Bild" -#: ../../include/conversation.php:1701 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Absage" -msgstr[1] "Absagen" +#: ../../include/widgets.php:1058 ../../include/widgets.php:1060 +msgid "Rate Me" +msgstr "Bewerte mich" -#: ../../include/conversation.php:1704 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] " Unentschlossen" -msgstr[1] "Unentschlossene" +#: ../../include/widgets.php:1064 +msgid "View Ratings" +msgstr "Bewertungen ansehen" -#: ../../include/conversation.php:1707 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Zustimmung" -msgstr[1] "Zustimmungen" +#: ../../include/widgets.php:1075 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" -#: ../../include/conversation.php:1710 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Ablehnung" -msgstr[1] "Ablehnungen" +#: ../../include/widgets.php:1123 +msgid "Forums" +msgstr "Foren" -#: ../../include/conversation.php:1713 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Enthaltung" -msgstr[1] "Enthaltungen" +#: ../../include/widgets.php:1150 +msgid "Tasks" +msgstr "Aufgaben" -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" +#: ../../include/widgets.php:1159 +msgid "Documentation" +msgstr "Dokumentation" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" +#: ../../include/widgets.php:1161 +msgid "Project/Site Information" +msgstr "Informationen über das Projekt und diesen Hub" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" +#: ../../include/widgets.php:1162 +msgid "For Members" +msgstr "Für Mitglieder" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" +#: ../../include/widgets.php:1163 +msgid "For Administrators" +msgstr "Für Administratoren" -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kann meine Fotoalben betrachten" +#: ../../include/widgets.php:1164 +msgid "For Developers" +msgstr "Für Entwickler" -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" +#: ../../include/widgets.php:1189 ../../mod/admin.php:410 +msgid "Site" +msgstr "Seite" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kann meine Dateiordner lesen" +#: ../../include/widgets.php:1190 +msgid "Accounts" +msgstr "Konten" -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" +#: ../../include/widgets.php:1191 ../../mod/admin.php:939 +msgid "Channels" +msgstr "Kanäle" -#: ../../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/widgets.php:1192 ../../mod/admin.php:1031 +#: ../../mod/admin.php:1071 +msgid "Plugins" +msgstr "Plug-Ins" -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" +#: ../../include/widgets.php:1193 ../../mod/admin.php:1231 +#: ../../mod/admin.php:1265 +msgid "Themes" +msgstr "Themes" -#: ../../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/widgets.php:1194 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" +#: ../../include/widgets.php:1195 +msgid "Profile Config" +msgstr "Profilkonfiguration" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" +#: ../../include/widgets.php:1196 +msgid "DB updates" +msgstr "DB-Aktualisierungen" -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" +#: ../../include/widgets.php:1214 ../../include/widgets.php:1220 +#: ../../mod/admin.php:1350 +msgid "Logs" +msgstr "Protokolle" -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" +#: ../../include/widgets.php:1218 ../../include/nav.php:210 +msgid "Admin" +msgstr "Administration" -#: ../../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/widgets.php:1219 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" +#: ../../include/widgets.php:1221 +msgid "User registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" +#: ../../include/zot.php:677 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kann in meine Dateiordner schreiben" +#: ../../include/zot.php:693 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" +#: ../../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:46 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" +#: ../../include/zot.php:3511 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1496 +msgid "Logout" +msgstr "Abmelden" -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" +#: ../../include/nav.php:82 ../../include/nav.php:114 +msgid "End this session" +msgstr "Beende diese Sitzung" -#: ../../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:85 ../../include/nav.php:145 +msgid "Home" +msgstr "Home" -#: ../../include/permissions.php:810 -msgid "Social Networking" -msgstr "Soziales Netzwerk" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Weitgehend öffentlich" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Deine Profilseite" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Beschränkt" +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Profile bearbeiten" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Privat" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" -#: ../../include/permissions.php:811 -msgid "Community Forum" -msgstr "Forum" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Profil bearbeiten" -#: ../../include/permissions.php:812 -msgid "Feed Republish" -msgstr "Teilen von Feeds" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Deine Bilder" -#: ../../include/permissions.php:813 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Deine Dateien" -#: ../../include/permissions.php:813 -msgid "Celebrity/Soapbox" -msgstr "Mitteilungs-Kanal (keine Kommentare)" +#: ../../include/nav.php:97 +msgid "Your chatrooms" +msgstr "Deine Chaträume" -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Gruppenarchiv" +#: ../../include/nav.php:103 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" -#: ../../include/permissions.php:814 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" +#: ../../include/nav.php:107 +msgid "Your webpages" +msgstr "Deine Webseiten" + +#: ../../include/nav.php:111 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:128 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" + +#: ../../include/nav.php:131 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../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/nav.php:149 ../../mod/register.php:224 ../../boot.php:1473 +msgid "Register" +msgstr "Registrieren" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Erzeuge ein Konto" + +#: ../../include/nav.php:154 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:157 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" + +#: ../../include/nav.php:159 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:162 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" + +#: ../../include/nav.php:174 +msgid "Grid" +msgstr "Grid" + +#: ../../include/nav.php:174 +msgid "Your grid" +msgstr "Dein Grid" + +#: ../../include/nav.php:175 +msgid "Mark all grid notifications seen" +msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" + +#: ../../include/nav.php:177 +msgid "Channel home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:178 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:181 ../../mod/connections.php:260 +msgid "Connections" +msgstr "Verbindungen" + +#: ../../include/nav.php:184 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:184 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:185 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" + +#: ../../include/nav.php:186 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" + +#: ../../include/nav.php:188 +msgid "Private mail" +msgstr "Persönliche Mail" + +#: ../../include/nav.php:189 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" + +#: ../../include/nav.php:190 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" + +#: ../../include/nav.php:196 +msgid "Event Calendar" +msgstr "Terminkalender" + +#: ../../include/nav.php:197 +msgid "See all events" +msgstr "Alle Termine ansehen" + +#: ../../include/nav.php:198 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" + +#: ../../include/nav.php:200 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" + +#: ../../include/nav.php:202 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" + +#: ../../include/nav.php:210 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:246 +msgid "@name, #tag, ?doc, content" +msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:247 +msgid "Please wait..." +msgstr "Bitte warten..." #: ../../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/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" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden" -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Block bearbeiten" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Freundschaftsempfehlung senden." -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Block löschen?" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Block löschen" - -#: ../../mod/manage.php:136 +#: ../../mod/fsuggest.php:99 #, 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." +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" +#: ../../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/manage.php:149 -msgid "Current Channel" -msgstr "Aktueller Kanal" - -#: ../../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." - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Standard Kanal" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "Zum Standard machen" - -#: ../../mod/manage.php:156 +#: ../../mod/directory.php:234 #, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d Bewertung" +msgstr[1] "%d Bewertungen" -#: ../../mod/manage.php:157 +#: ../../mod/directory.php:245 +msgid "Gender: " +msgstr "Geschlecht:" + +#: ../../mod/directory.php:247 +msgid "Status: " +msgstr "Status:" + +#: ../../mod/directory.php:249 +msgid "Homepage: " +msgstr "Webseite:" + +#: ../../mod/directory.php:308 ../../mod/events.php:699 +msgid "Description:" +msgstr "Beschreibung:" + +#: ../../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/bookmarks.php:40 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" + +#: ../../mod/bookmarks.php:62 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" + +#: ../../mod/bookmarks.php:73 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: ../../mod/openid.php:72 ../../mod/openid.php:179 ../../mod/post.php:285 #, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" +msgid "Welcome %s. Remote authentication successful." +msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Xchan-Suche" +#: ../../mod/block.php:27 ../../mod/page.php:36 +msgid "Invalid item." +msgstr "Ungültiges Element." -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" +#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." -#: ../../mod/xchan.php:37 ../../mod/menu.php:136 ../../mod/mitem.php:111 +#: ../../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/id.php:11 +msgid "First Name" +msgstr "Vorname" + +#: ../../mod/id.php:12 +msgid "Last Name" +msgstr "Nachname" + +#: ../../mod/id.php:13 +msgid "Nickname" +msgstr "Spitzname" + +#: ../../mod/id.php:14 +msgid "Full Name" +msgstr "Voller Name" + +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" +msgstr "Profilfoto 16 px" + +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" +msgstr "Profilfoto 32 px" + +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" +msgstr "Profilfoto 48 px" + +#: ../../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/id.php:25 +msgid "Profile Photo 128px" +msgstr "Profilfoto 128 px" + +#: ../../mod/id.php:26 +msgid "Timezone" +msgstr "Zeitzone" + +#: ../../mod/id.php:27 +msgid "Homepage URL" +msgstr "Homepage-URL" + +#: ../../mod/id.php:29 +msgid "Birth Year" +msgstr "Geburtsjahr" + +#: ../../mod/id.php:30 +msgid "Birth Month" +msgstr "Geburtsmonat" + +#: ../../mod/id.php:31 +msgid "Birth Day" +msgstr "Geburtstag" + +#: ../../mod/id.php:32 +msgid "Birthdate" +msgstr "Geburtsdatum" + +#: ../../mod/id.php:33 ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Geschlecht" + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." + +#: ../../mod/like.php:21 +msgid "" +"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/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165 +msgid "Invalid request." +msgstr "Ungültige Anfrage." + +#: ../../mod/like.php:142 +msgid "thing" +msgstr "Sache" + +#: ../../mod/like.php:188 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." + +#: ../../mod/like.php:236 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." + +#: ../../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/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/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/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/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/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/like.php:520 +msgid "Action completed." +msgstr "Aktion durchgeführt." + +#: ../../mod/like.php:521 +msgid "Thank you." +msgstr "Vielen Dank." + +#: ../../mod/uexport.php:51 ../../mod/uexport.php:52 +msgid "Export Channel" +msgstr "Kanal exportieren" + +#: ../../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/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 "" +"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/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/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/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 "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/chatsvc.php:111 +msgid "Away" +msgstr "Abwesend" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../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/common.php:10 +msgid "No channel." +msgstr "Kein Kanal." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." + +#: ../../mod/ping.php:260 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" + +#: ../../mod/ping.php:308 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" + +#: ../../mod/ping.php:350 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" + +#: ../../mod/help.php:147 +msgid "Documentation Search" +msgstr "Suche in der Dokumentation" + +#: ../../mod/help.php:184 ../../mod/help.php:190 ../../mod/help.php:196 +msgid "Help:" +msgstr "Hilfe:" + +#: ../../mod/help.php:211 ../../index.php:234 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: ../../mod/help.php:235 +msgid "$Projectname Documentation" +msgstr "$Projectname-Dokumentation" + +#: ../../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/removeme.php:57 +msgid "Remove This Channel" +msgstr "Diesen Kanal löschen" + +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "WARNING: " +msgstr "WARNUNG: " + +#: ../../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/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/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" + +#: ../../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/removeme.php:60 +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" + +#: ../../mod/removeme.php:61 ../../mod/settings.php:1109 +msgid "Remove Channel" +msgstr "Kanal löschen" + +#: ../../mod/filer.php:48 +msgid "- select -" +msgstr "– auswählen –" + +#: ../../mod/mitem.php:24 ../../mod/menu.php:140 +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:116 ../../mod/menu.php:162 ../../mod/xchan.php:37 msgid "Not found." msgstr "Nicht gefunden." -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" +#: ../../mod/mitem.php:149 ../../mod/mitem.php:222 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" +#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1053 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." +#: ../../mod/mitem.php:152 ../../mod/mitem.php:168 +msgid "Link Name" +msgstr "Name des Links" -#: ../../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/mitem.php:153 ../../mod/mitem.php:227 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" -#: ../../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/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/api.php:106 ../../mod/settings.php:974 ../../mod/settings.php:979 -#: ../../mod/settings.php:1064 ../../mod/admin.php:394 -msgid "No" -msgstr "Nein" +#: ../../mod/mitem.php:154 ../../mod/mitem.php:228 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Block-Name" +#: ../../mod/mitem.php:155 ../../mod/mitem.php:229 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" -#: ../../mod/connedit.php:75 ../../mod/connections.php:37 +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" + +#: ../../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/mitem.php:157 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" + +#: ../../mod/mitem.php:158 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" + +#: ../../mod/mitem.php:166 +msgid "Menu:" +msgstr "Menü:" + +#: ../../mod/mitem.php:169 +msgid "Link Target" +msgstr "Ziel des Links" + +#: ../../mod/mitem.php:172 +msgid "Edit menu" +msgstr "Menü bearbeiten" + +#: ../../mod/mitem.php:175 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" + +#: ../../mod/mitem.php:176 +msgid "Drop element" +msgstr "Bestandteil löschen" + +#: ../../mod/mitem.php:177 +msgid "New element" +msgstr "Neues Bestandteil" + +#: ../../mod/mitem.php:178 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" + +#: ../../mod/mitem.php:179 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" + +#: ../../mod/mitem.php:180 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" + +#: ../../mod/mitem.php:181 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" + +#: ../../mod/mitem.php:198 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." + +#: ../../mod/mitem.php:211 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." + +#: ../../mod/mitem.php:213 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." + +#: ../../mod/mitem.php:220 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" + +#: ../../mod/mitem.php:226 +msgid "Link text" +msgstr "Link Text" + +#: ../../mod/connedit.php:75 msgid "Could not access contact record." msgstr "Konnte nicht auf den Kontakteintrag zugreifen." -#: ../../mod/connedit.php:99 ../../mod/connections.php:51 +#: ../../mod/connedit.php:99 msgid "Could not locate selected profile." msgstr "Gewähltes Profil nicht gefunden." -#: ../../mod/connedit.php:204 ../../mod/connections.php:94 +#: ../../mod/connedit.php:219 msgid "Connection updated." msgstr "Verbindung aktualisiert." -#: ../../mod/connedit.php:206 ../../mod/connections.php:96 +#: ../../mod/connedit.php:221 msgid "Failed to update connection record." msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../mod/connedit.php:252 +#: ../../mod/connedit.php:268 msgid "is now connected to" msgstr "ist jetzt verbunden mit" -#: ../../mod/connedit.php:365 +#: ../../mod/connedit.php:391 msgid "Could not access address book record." msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../mod/connedit.php:379 +#: ../../mod/connedit.php:405 msgid "Refresh failed - channel is currently unavailable." msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" -msgstr "Kanal nicht mehr blockiert" - -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" -msgstr "Kanal blockiert" - -#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 -#: ../../mod/connedit.php:443 +#: ../../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/connedit.php:398 -msgid "Channel has been unignored" -msgstr "Kanal wird nicht mehr ignoriert" - -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" -msgstr "Kanal wird ignoriert" - -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" -msgstr "Kanal wurde aus dem Archiv zurück geholt" - -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" -msgstr "Kanal wurde archiviert" - -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" -msgstr "Kanal wird nicht mehr versteckt" - -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" -msgstr "Kanal wurde versteckt" - -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" -msgstr "Kanal wurde zugelassen" - -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" -msgstr "Zulassung des Kanals entfernt" - -#: ../../mod/connedit.php:467 +#: ../../mod/connedit.php:478 msgid "Connection has been removed." msgstr "Verbindung wurde gelöscht." -#: ../../mod/connedit.php:487 +#: ../../mod/connedit.php:497 #, php-format msgid "View %s's profile" msgstr "%ss Profil ansehen" -#: ../../mod/connedit.php:491 +#: ../../mod/connedit.php:501 msgid "Refresh Permissions" msgstr "Zugriffsrechte neu laden" -#: ../../mod/connedit.php:494 +#: ../../mod/connedit.php:504 msgid "Fetch updated permissions" msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../mod/connedit.php:498 +#: ../../mod/connedit.php:508 msgid "Recent Activity" msgstr "Kürzliche Aktivitäten" -#: ../../mod/connedit.php:501 +#: ../../mod/connedit.php:511 msgid "View recent posts and comments" msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:737 +#: ../../mod/connedit.php:515 ../../mod/admin.php:785 msgid "Unblock" msgstr "Freigeben" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:736 +#: ../../mod/connedit.php:515 ../../mod/admin.php:784 msgid "Block" msgstr "Blockieren" -#: ../../mod/connedit.php:510 +#: ../../mod/connedit.php:518 msgid "Block (or Unblock) all communications with this connection" msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +#: ../../mod/connedit.php:519 +msgid "This connection is blocked!" +msgstr "Die Verbindung ist geblockt!" + +#: ../../mod/connedit.php:523 msgid "Unignore" msgstr "Nicht ignorieren" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 +#: ../../mod/connedit.php:523 ../../mod/notifications.php:51 msgid "Ignore" msgstr "Ignorieren" -#: ../../mod/connedit.php:517 +#: ../../mod/connedit.php:526 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" -#: ../../mod/connedit.php:520 +#: ../../mod/connedit.php:527 +msgid "This connection is ignored!" +msgstr "Die Verbindung wird ignoriert!" + +#: ../../mod/connedit.php:531 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: ../../mod/connedit.php:520 +#: ../../mod/connedit.php:531 msgid "Archive" msgstr "Archivieren" -#: ../../mod/connedit.php:523 +#: ../../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/connedit.php:526 +#: ../../mod/connedit.php:535 +msgid "This connection is archived!" +msgstr "Die Verbindung ist archiviert!" + +#: ../../mod/connedit.php:539 msgid "Unhide" msgstr "Wieder sichtbar machen" -#: ../../mod/connedit.php:526 +#: ../../mod/connedit.php:539 msgid "Hide" msgstr "Verstecken" -#: ../../mod/connedit.php:529 +#: ../../mod/connedit.php:542 msgid "Hide or Unhide this connection from your other connections" msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../mod/connedit.php:536 +#: ../../mod/connedit.php:543 +msgid "This connection is hidden!" +msgstr "Die Verbindung ist versteckt!" + +#: ../../mod/connedit.php:550 msgid "Delete this connection" msgstr "Verbindung löschen" -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 +#: ../../mod/connedit.php:631 msgid "Approve this connection" msgstr "Verbindung genehmigen" -#: ../../mod/connedit.php:611 +#: ../../mod/connedit.php:631 msgid "Accept connection to allow communication" msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../mod/connedit.php:627 -#, php-format -msgid "Connections: settings for %s" -msgstr "Verbindungseinstellungen für %s" +#: ../../mod/connedit.php:636 +msgid "Set Affinity" +msgstr "Beziehung festlegen" -#: ../../mod/connedit.php:628 +#: ../../mod/connedit.php:639 +msgid "Set Profile" +msgstr "Profil festlegen" + +#: ../../mod/connedit.php:642 +msgid "Set Affinity & Profile" +msgstr "Beziehung und Profile festlegen" + +#: ../../mod/connedit.php:659 msgid "Apply these permissions automatically" msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../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/connedit.php:661 +msgid "This connection's address is" +msgstr "Die Adresse dieses Kontakts ist" -#: ../../mod/connedit.php:636 +#: ../../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/connedit.php:666 msgid "Slide to adjust your degree of friendship" msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../mod/connedit.php:637 ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" +#: ../../mod/connedit.php:668 +msgid "Slide to adjust your rating" +msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../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/connedit.php:669 ../../mod/connedit.php:674 +msgid "Optionally explain your rating" +msgstr "Optional kannst Du Deine Bewertung begründen" -#: ../../mod/connedit.php:645 +#: ../../mod/connedit.php:671 +msgid "Custom Filter" +msgstr "Benutzerdefinierter Filter" + +#: ../../mod/connedit.php:672 +msgid "Only import posts with this text" +msgstr "Nur Beiträge mit diesem Text importieren" + +#: ../../mod/connedit.php:672 ../../mod/connedit.php:673 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." +"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/connedit.php:648 +#: ../../mod/connedit.php:673 +msgid "Do not import posts with this text" +msgstr "Beiträge mit diesem Text nicht importieren" + +#: ../../mod/connedit.php:675 +msgid "This information is public!" +msgstr "Diese Information ist öffentlich!" + +#: ../../mod/connedit.php:680 +msgid "Connection Pending Approval" +msgstr "Verbindung wartet auf Bestätigung" + +#: ../../mod/connedit.php:681 +msgid "Connection Request" +msgstr "Verbindungsanfrage" + +#: ../../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/connedit.php:683 ../../mod/admin.php:781 +msgid "Approve" +msgstr "Genehmigen" + +#: ../../mod/connedit.php:684 +msgid "Approve Later" +msgstr "Später genehmigen" + +#: ../../mod/connedit.php:687 msgid "inherited" msgstr "geerbt" -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" -msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" - -#: ../../mod/connedit.php:652 -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." - -#: ../../mod/connedit.php:654 -msgid "Profile Visibility" -msgstr "Sichtbarkeit des Profils" - -#: ../../mod/connedit.php:655 +#: ../../mod/connedit.php:689 #, 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:656 -msgid "Contact Information / Notes" -msgstr "Kontaktinformationen / Notizen" - -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" -msgstr "Kontaktnotizen bearbeiten" - -#: ../../mod/connedit.php:659 +#: ../../mod/connedit.php:691 msgid "Their Settings" msgstr "Deren Einstellungen" -#: ../../mod/connedit.php:660 +#: ../../mod/connedit.php:692 msgid "My Settings" msgstr "Meine Einstellungen" -#: ../../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/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" -msgstr "Automatische Berechtigungen abschalten/entfernen" - -#: ../../mod/connedit.php:664 -msgid "Forum Members" -msgstr "Forum Mitglieder" - -#: ../../mod/connedit.php:665 -msgid "Soapbox" -msgstr "Marktschreier" - -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" -msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" - -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " -msgstr "Vorsichtiges Teilen" - -#: ../../mod/connedit.php:668 -msgid "Follow Only" -msgstr "Nur folgen" - -#: ../../mod/connedit.php:669 +#: ../../mod/connedit.php:694 msgid "Individual Permissions" msgstr "Individuelle Zugriffsrechte" -#: ../../mod/connedit.php:670 +#: ../../mod/connedit.php:695 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." +"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/connedit.php:671 -msgid "Advanced Permissions" -msgstr "Zugriffsrechte für Fortgeschrittene" +#: ../../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/connedit.php:672 -msgid "Simple Permissions (select one and submit)" -msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" - -#: ../../mod/connedit.php:676 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "%ss Profil besuchen - %s" - -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freigeben" - -#: ../../mod/connedit.php:678 -msgid "Ignore contact" -msgstr "Kontakt ignorieren" - -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" -msgstr "URL-Einstellungen reparieren" - -#: ../../mod/connedit.php:680 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" - -#: ../../mod/connedit.php:682 -msgid "Delete contact" -msgstr "Kontakt löschen" - -#: ../../mod/connedit.php:686 +#: ../../mod/connedit.php:697 msgid "Last update:" msgstr "Letzte Aktualisierung:" -#: ../../mod/connedit.php:688 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" +#: ../../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/connedit.php:690 -msgid "Update now" -msgstr "Jetzt aktualisieren" +#: ../../mod/magic.php:69 +msgid "Hub not found." +msgstr "Server nicht gefunden." -#: ../../mod/connedit.php:696 -msgid "Currently blocked" -msgstr "Derzeit blockiert" +#: ../../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/connedit.php:697 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" -#: ../../mod/connedit.php:698 -msgid "Currently archived" -msgstr "Derzeit archiviert" - -#: ../../mod/connedit.php:699 -msgid "Currently pending" -msgstr "Derzeit anstehend" - -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix – "Das Netzwerk"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Fortfahren" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" - -#: ../../mod/connect.php:88 +#: ../../mod/pconfig.php:50 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/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/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/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/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." - -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" -msgstr "Bearbeite Beitrag" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eintrag löschen?" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Element nicht verfügbar." - -#: ../../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/dav.php:121 -msgid "RedMatrix channel" -msgstr "RedMatrix-Kanal" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Bild-Anpassung fehlgeschlagen." - -#: ../../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/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bild ist größer als das Limit von %d" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Kann Bild nicht verarbeiten." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto nicht verfügbar." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Wähle ein Profil:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" - -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 -msgid "or" -msgstr "oder" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "ein Foto aus meinen Fotoalben" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Bild zuschneiden" - -#: ../../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/profile_photo.php:385 -msgid "Done Editing" -msgstr "Bearbeitung fertigstellen" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Hochladen des Bilds fehlgeschlagen." - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ungültiges Element." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." - -#: ../../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/network.php:84 -msgid "No such group" -msgstr "Sammlung nicht gefunden" - -#: ../../mod/network.php:122 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" - -#: ../../mod/network.php:176 -msgid "Collection is empty" -msgstr "Sammlung ist leer" - -#: ../../mod/network.php:184 -msgid "Collection: " -msgstr "Sammlung:" - -#: ../../mod/network.php:197 -msgid "Connection: " -msgstr "Verbindung:" - -#: ../../mod/network.php:200 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." - -#: ../../mod/events.php:87 -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 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." - -#: ../../mod/events.php:96 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." - -#: ../../mod/events.php:114 -msgid "Event not found." -msgstr "Termin nicht gefunden." - -#: ../../mod/events.php:396 -msgid "l, F j" -msgstr "l, j. F" - -#: ../../mod/events.php:418 -msgid "Edit event" -msgstr "Termin bearbeiten" - -#: ../../mod/events.php:419 -msgid "Delete event" -msgstr "Termin löschen" - -#: ../../mod/events.php:473 -msgid "Create New Event" -msgstr "Neuen Termin erstellen" - -#: ../../mod/events.php:474 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Voriges" - -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 -msgid "Next" -msgstr "Nächste" - -#: ../../mod/events.php:476 -msgid "Export" -msgstr "Exportieren" - -#: ../../mod/events.php:504 -msgid "Event removed" -msgstr "Termin gelöscht" - -#: ../../mod/events.php:507 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" - -#: ../../mod/events.php:625 -msgid "Event details" -msgstr "Termin-Details" - -#: ../../mod/events.php:626 -msgid "Starting date and Title are required." -msgstr "Startdatum und Titel sind erforderlich." - -#: ../../mod/events.php:628 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" - -#: ../../mod/events.php:630 -msgid "Event Starts:" -msgstr "Termin beginnt:" - -#: ../../mod/events.php:637 -msgid "Finish date/time is not known or not relevant" -msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" - -#: ../../mod/events.php:639 -msgid "Event Finishes:" -msgstr "Termin endet:" - -#: ../../mod/events.php:641 ../../mod/events.php:642 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" - -#: ../../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/events.php:643 -msgid "Description:" -msgstr "Beschreibung:" - -#: ../../mod/events.php:647 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:649 -msgid "Share this event" -msgstr "Den Termin teilen" - -#: ../../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" +"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/pubsites.php:16 msgid "Public Sites" @@ -4611,12 +5003,12 @@ msgstr "Öffentliche Server" #: ../../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." +"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/pubsites.php:25 msgid "Rate this hub" @@ -4650,47 +5042,2423 @@ msgstr "Bewerten" msgid "View ratings" msgstr "Bewertungen ansehen" -#: ../../mod/settings.php:73 +#: ../../mod/filestorage.php:82 +msgid "Permission Denied." +msgstr "Zugriff verweigert." + +#: ../../mod/filestorage.php:98 +msgid "File not found." +msgstr "Datei nicht gefunden." + +#: ../../mod/filestorage.php:141 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" + +#: ../../mod/filestorage.php:150 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" + +#: ../../mod/filestorage.php:151 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" + +#: ../../mod/filestorage.php:152 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" + +#: ../../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/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/filestorage.php:157 +msgid "Share this file" +msgstr "Diese Datei freigeben" + +#: ../../mod/filestorage.php:158 +msgid "Show URL to this file" +msgstr "URL zu dieser Datei anzeigen" + +#: ../../mod/filestorage.php:159 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" + +#: ../../mod/layouts.php:121 ../../mod/layouts.php:179 +#: ../../mod/editlayout.php:161 +msgid "Layout Name" +msgstr "Layout-Name" + +#: ../../mod/layouts.php:124 ../../mod/editlayout.php:159 +msgid "Layout Description (Optional)" +msgstr "Layout-Beschreibung (optional)" + +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" +msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" + +#: ../../mod/layouts.php:180 +msgid "Layout Description" +msgstr "Layout-Beschreibung" + +#: ../../mod/layouts.php:185 +msgid "Download PDL file" +msgstr "PDL-Datei herunterladen" + +#: ../../mod/poke.php:164 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" + +#: ../../mod/poke.php:165 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" + +#: ../../mod/poke.php:166 +msgid "Recipient" +msgstr "Empfänger" + +#: ../../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/poke.php:170 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: ../../mod/network.php:91 +msgid "No such group" +msgstr "Sammlung nicht gefunden" + +#: ../../mod/network.php:131 +msgid "No such channel" +msgstr "Kanal nicht gefunden" + +#: ../../mod/network.php:136 +msgid "forum" +msgstr "Forum" + +#: ../../mod/network.php:148 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" + +#: ../../mod/network.php:207 +msgid "Collection is empty" +msgstr "Sammlung ist leer" + +#: ../../mod/network.php:216 +msgid "Collection: " +msgstr "Sammlung:" + +#: ../../mod/network.php:242 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." + +#: ../../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/chat.php:171 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" + +#: ../../mod/chat.php:182 +msgid "Leave Room" +msgstr "Raum verlassen" + +#: ../../mod/chat.php:183 +msgid "Delete This Room" +msgstr "Diesen Raum löschen" + +#: ../../mod/chat.php:184 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" + +#: ../../mod/chat.php:185 +msgid "I am online" +msgstr "Ich bin online" + +#: ../../mod/chat.php:187 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" + +#: ../../mod/chat.php:205 ../../mod/chat.php:227 +msgid "New Chatroom" +msgstr "Neuer Chatraum" + +#: ../../mod/chat.php:206 +msgid "Chatroom Name" +msgstr "Name des Chatraums" + +#: ../../mod/chat.php:223 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" + +#: ../../mod/search.php:209 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge mit Schlagwort: %s" + +#: ../../mod/search.php:211 +#, php-format +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" + +#: ../../mod/message.php:34 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." + +#: ../../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/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/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/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/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/editpost.php:165 ../../mod/rpost.php:128 +msgid "Edit post" +msgstr "Bearbeite Beitrag" + +#: ../../mod/dreport.php:15 +msgid "Invalid message" +msgstr "Ungültige Beitrags-ID (mid)" + +#: ../../mod/dreport.php:25 +msgid "no results" +msgstr "keine Ergebnisse" + +#: ../../mod/dreport.php:30 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Zustellungsbericht für %1$s" + +#: ../../mod/dreport.php:39 +msgid "channel sync processed" +msgstr "Kanal-Sync verarbeitet" + +#: ../../mod/dreport.php:43 +msgid "queued" +msgstr "zur Warteschlange hinzugefügt" + +#: ../../mod/dreport.php:47 +msgid "posted" +msgstr "zugestellt" + +#: ../../mod/dreport.php:51 +msgid "accepted for delivery" +msgstr "für Zustellung akzeptiert" + +#: ../../mod/dreport.php:55 +msgid "updated" +msgstr "aktualisiert" + +#: ../../mod/dreport.php:58 +msgid "update ignored" +msgstr "Aktualisierung ignoriert" + +#: ../../mod/dreport.php:61 +msgid "permission denied" +msgstr "Zugriff verweigert" + +#: ../../mod/editblock.php:118 +msgid "Delete block?" +msgstr "Block löschen?" + +#: ../../mod/editblock.php:180 +msgid "Edit Block" +msgstr "Block bearbeiten" + +#: ../../mod/home.php:57 ../../mod/home.php:63 ../../mod/siteinfo.php:157 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../mod/home.php:73 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" + +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." + +#: ../../mod/item.php:407 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." + +#: ../../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/item.php:896 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." + +#: ../../mod/item.php:1163 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." + +#: ../../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/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/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Theme-Einstellungen aktualisiert." + +#: ../../mod/admin.php:160 +msgid "# Accounts" +msgstr "Anzahl der Konten" + +#: ../../mod/admin.php:161 +msgid "# blocked accounts" +msgstr "Anzahl der blockierten Konten" + +#: ../../mod/admin.php:162 +msgid "# expired accounts" +msgstr "Anzahl der abgelaufenen Konten" + +#: ../../mod/admin.php:163 +msgid "# expiring accounts" +msgstr "Anzahl der ablaufenden Konten" + +#: ../../mod/admin.php:174 +msgid "# Channels" +msgstr "Anzahl der Kanäle" + +#: ../../mod/admin.php:175 +msgid "# primary" +msgstr "Anzahl der primären Kanäle" + +#: ../../mod/admin.php:176 +msgid "# clones" +msgstr "Anzahl der Klone" + +#: ../../mod/admin.php:182 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" + +#: ../../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/admin.php:199 +msgid "Summary" +msgstr "Zusammenfassung" + +#: ../../mod/admin.php:202 +msgid "Registered accounts" +msgstr "Registrierte Konten" + +#: ../../mod/admin.php:203 ../../mod/admin.php:510 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" + +#: ../../mod/admin.php:204 +msgid "Registered channels" +msgstr "Registrierte Kanäle" + +#: ../../mod/admin.php:205 ../../mod/admin.php:511 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" + +#: ../../mod/admin.php:206 +msgid "Version" +msgstr "Version" + +#: ../../mod/admin.php:321 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." + +#: ../../mod/admin.php:358 ../../mod/settings.php:790 +msgid "mobile" +msgstr "mobil" + +#: ../../mod/admin.php:360 +msgid "experimental" +msgstr "experimentell" + +#: ../../mod/admin.php:362 +msgid "unsupported" +msgstr "nicht unterstützt" + +#: ../../mod/admin.php:387 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" + +#: ../../mod/admin.php:393 +msgid "My site is not a public server" +msgstr "Mein Server ist kein öffentlicher Server" + +#: ../../mod/admin.php:394 +msgid "My site has paid access only" +msgstr "Mein Server erlaubt nur bezahlten Zugang" + +#: ../../mod/admin.php:395 +msgid "My site has free access only" +msgstr "Mein Server erlaubt ausschließlich freien Zugang" + +#: ../../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/admin.php:412 ../../mod/register.php:207 +msgid "Registration" +msgstr "Registrierung" + +#: ../../mod/admin.php:413 +msgid "File upload" +msgstr "Dateiupload" + +#: ../../mod/admin.php:414 +msgid "Policies" +msgstr "Richtlinien" + +#: ../../mod/admin.php:419 +msgid "Site name" +msgstr "Seitenname" + +#: ../../mod/admin.php:420 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:421 +msgid "Administrator Information" +msgstr "Administrator-Informationen" + +#: ../../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/admin.php:422 +msgid "System language" +msgstr "System-Sprache" + +#: ../../mod/admin.php:423 +msgid "System theme" +msgstr "System-Theme" + +#: ../../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/admin.php:424 +msgid "Mobile system theme" +msgstr "Mobile System-Theme:" + +#: ../../mod/admin.php:424 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" + +#: ../../mod/admin.php:426 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" + +#: ../../mod/admin.php:426 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" + +#: ../../mod/admin.php:427 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" + +#: ../../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/admin.php:428 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" + +#: ../../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/admin.php:430 +msgid "Register text" +msgstr "Registrierungstext" + +#: ../../mod/admin.php:430 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." + +#: ../../mod/admin.php:431 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" + +#: ../../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/admin.php:432 +msgid "Preserve site homepage URL" +msgstr "Homepage-URL schützen" + +#: ../../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/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" + +#: ../../mod/admin.php:433 +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/admin.php:434 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" + +#: ../../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/admin.php:435 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" + +#: ../../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 "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/admin.php:436 +msgid "Not allowed email domains" +msgstr "Nicht erlaubte Domains für E-Mails" + +#: ../../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 "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/admin.php:437 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: ../../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/admin.php:438 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" + +#: ../../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/admin.php:439 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" + +#: ../../mod/admin.php:439 +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/admin.php:440 +msgid "Disable discovery tab" +msgstr "Den „Entdecken“-Reiter ausblenden" + +#: ../../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/admin.php:441 +msgid "" +"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/admin.php:443 +msgid "Proxy user" +msgstr "Proxy Benutzer" + +#: ../../mod/admin.php:444 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: ../../mod/admin.php:445 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" + +#: ../../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/admin.php:446 +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/admin.php:447 +msgid "Deliveries per process" +msgstr "Zustellungen pro Prozess" + +#: ../../mod/admin.php:447 +msgid "" +"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/admin.php:448 +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/admin.php:449 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" + +#: ../../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/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/admin.php:450 +msgid "0 for no expiration of imported content" +msgstr "0 = keine Löschung importierter Inhalte" + +#: ../../mod/admin.php:498 +msgid "No server found" +msgstr "Kein Server gefunden" + +#: ../../mod/admin.php:505 ../../mod/admin.php:788 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:505 +msgid "for channel" +msgstr "für Kanal" + +#: ../../mod/admin.php:505 +msgid "on server" +msgstr "auf Server" + +#: ../../mod/admin.php:505 +msgid "Status" +msgstr "Status" + +#: ../../mod/admin.php:507 +msgid "Server" +msgstr "Server" + +#: ../../mod/admin.php:524 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" + +#: ../../mod/admin.php:534 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." + +#: ../../mod/admin.php:537 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s wurde erfolgreich ausgeführt." + +#: ../../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/admin.php:544 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-Funktion %s konnte nicht gefunden werden." + +#: ../../mod/admin.php:560 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." + +#: ../../mod/admin.php:564 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Aktualisierungen" + +#: ../../mod/admin.php:566 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" + +#: ../../mod/admin.php:567 +msgid "Attempt to execute this update step automatically" +msgstr "Versuche, diesen Updateschritt automatisch auszuführen" + +#: ../../mod/admin.php:599 +msgid "Queue Statistics" +msgstr "Warteschlangenstatistiken" + +#: ../../mod/admin.php:600 +msgid "Total Entries" +msgstr "Einträge insgesamt" + +#: ../../mod/admin.php:601 +msgid "Priority" +msgstr "Priorität" + +#: ../../mod/admin.php:602 +msgid "Destination URL" +msgstr "Ziel-URL" + +#: ../../mod/admin.php:603 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markieren" + +#: ../../mod/admin.php:604 +msgid "Empty queue for this hub" +msgstr "Warteschlange für diesen Hub leeren" + +#: ../../mod/admin.php:605 +msgid "Last known contact" +msgstr "Letzter Kontakt" + +#: ../../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/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/admin.php:685 +msgid "Account not found" +msgstr "Konto nicht gefunden" + +#: ../../mod/admin.php:697 +#, php-format +msgid "Account '%s' deleted" +msgstr "Konto '%s' gelöscht" + +#: ../../mod/admin.php:705 +#, php-format +msgid "Account '%s' blocked" +msgstr "Konto '%s' blockiert" + +#: ../../mod/admin.php:713 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Konto '%s' freigegeben" + +#: ../../mod/admin.php:775 ../../mod/admin.php:787 +msgid "Users" +msgstr "Benutzer" + +#: ../../mod/admin.php:777 ../../mod/admin.php:941 +msgid "select all" +msgstr "Alle auswählen" + +#: ../../mod/admin.php:778 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" + +#: ../../mod/admin.php:779 +msgid "Request date" +msgstr "Antragsdatum" + +#: ../../mod/admin.php:780 +msgid "No registrations." +msgstr "Keine Registrierungen." + +#: ../../mod/admin.php:782 +msgid "Deny" +msgstr "Verweigern" + +#: ../../mod/admin.php:788 +msgid "Register date" +msgstr "Registrierungs-Datum" + +#: ../../mod/admin.php:788 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: ../../mod/admin.php:788 +msgid "Expires" +msgstr "Verfällt" + +#: ../../mod/admin.php:788 +msgid "Service Class" +msgstr "Service-Klasse" + +#: ../../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 "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/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 "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/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/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/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/admin.php:874 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanal '%s' gelöscht" + +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' gesperrt" + +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" + +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Code für Kanal '%s' freigegeben" + +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Code für Kanal '%s' gesperrt" + +#: ../../mod/admin.php:943 +msgid "Censor" +msgstr "Sperren" + +#: ../../mod/admin.php:944 +msgid "Uncensor" +msgstr "Freigeben" + +#: ../../mod/admin.php:945 +msgid "Allow Code" +msgstr "Code erlauben" + +#: ../../mod/admin.php:946 +msgid "Disallow Code" +msgstr "Code sperren" + +#: ../../mod/admin.php:948 +msgid "UID" +msgstr "UID" + +#: ../../mod/admin.php:948 ../../mod/profiles.php:447 +msgid "Address" +msgstr "Adresse" + +#: ../../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 "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/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 "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/admin.php:991 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-In %s deaktiviert." + +#: ../../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/admin.php:1032 ../../mod/admin.php:1232 +msgid "Toggle" +msgstr "Umschalten" + +#: ../../mod/admin.php:1040 ../../mod/admin.php:1242 +msgid "Author: " +msgstr "Autor: " + +#: ../../mod/admin.php:1041 ../../mod/admin.php:1243 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: ../../mod/admin.php:1168 +msgid "No themes found." +msgstr "Keine Theme gefunden." + +#: ../../mod/admin.php:1224 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: ../../mod/admin.php:1270 +msgid "[Experimental]" +msgstr "[Experimentell]" + +#: ../../mod/admin.php:1271 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" + +#: ../../mod/admin.php:1295 +msgid "Log settings updated." +msgstr "Protokoll-Einstellungen aktualisiert." + +#: ../../mod/admin.php:1352 +msgid "Clear" +msgstr "Leeren" + +#: ../../mod/admin.php:1358 +msgid "Debugging" +msgstr "Debugging" + +#: ../../mod/admin.php:1359 +msgid "Log file" +msgstr "Protokolldatei" + +#: ../../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/admin.php:1360 +msgid "Log level" +msgstr "Protokollstufe" + +#: ../../mod/admin.php:1406 +msgid "New Profile Field" +msgstr "Neues Profilfeld" + +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "Field nickname" +msgstr "Kurzname für das Feld" + +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "System name of field" +msgstr "Systemname des Feldes" + +#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 +msgid "Input type" +msgstr "Art des Inhalts" + +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Field Name" +msgstr "Feldname" + +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Label on profile pages" +msgstr "Bezeichnung auf Profilseiten" + +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Help text" +msgstr "Hilfetext" + +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Additional info (optional)" +msgstr "Zusätzliche Informationen (optional)" + +#: ../../mod/admin.php:1420 +msgid "Field definition not found" +msgstr "Feld-Definition nicht gefunden" + +#: ../../mod/admin.php:1426 +msgid "Edit Profile Field" +msgstr "Profilfeld bearbeiten" + +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installiert." + +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Fehlerhafte App." + +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Code einbetten" + +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bearbeiten" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App erstellen" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Name der App" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" + +#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "Beschreibung" + +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL zum Icon" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versions-ID" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Preis der App" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" + +#: ../../mod/menu.php:45 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." + +#: ../../mod/menu.php:56 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." + +#: ../../mod/menu.php:94 ../../mod/menu.php:106 +msgid "Menu Name" +msgstr "Name des Menüs" + +#: ../../mod/menu.php:94 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" + +#: ../../mod/menu.php:95 ../../mod/menu.php:107 +msgid "Menu Title" +msgstr "Menütitel" + +#: ../../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/menu.php:96 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" + +#: ../../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/menu.php:97 ../../mod/menu.php:155 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" + +#: ../../mod/menu.php:109 +msgid "Drop" +msgstr "Löschen" + +#: ../../mod/menu.php:113 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../mod/menu.php:115 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../mod/menu.php:116 ../../mod/menu.php:150 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../mod/menu.php:117 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../mod/menu.php:132 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." + +#: ../../mod/menu.php:145 +msgid "Edit Menu" +msgstr "Menü bearbeiten" + +#: ../../mod/menu.php:149 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" + +#: ../../mod/menu.php:151 +msgid "Menu name" +msgstr "Menü Name" + +#: ../../mod/menu.php:151 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" + +#: ../../mod/menu.php:152 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../mod/menu.php:152 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../mod/menu.php:153 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." + +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" + +#: ../../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/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." +msgstr "Layout aktualisiert." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout nicht gefunden." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulname:" + +#: ../../mod/pdledit.php:55 +msgid "Layout Help" +msgstr "Layout-Hilfe" + +#: ../../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/lostpass.php:15 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: ../../mod/lostpass.php:29 +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:103 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" + +#: ../../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/lostpass.php:86 ../../boot.php:1505 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" + +#: ../../mod/lostpass.php:87 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." + +#: ../../mod/lostpass.php:88 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../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:90 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" + +#: ../../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/lostpass.php:108 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: ../../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/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 "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." + +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." + +#: ../../mod/photos.php:583 +msgid "Upload Photos" +msgstr "Fotos hochladen" + +#: ../../mod/photos.php:587 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" + +#: ../../mod/photos.php:588 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" + +#: ../../mod/photos.php:589 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" + +#: ../../mod/photos.php:616 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" + +#: ../../mod/photos.php:660 ../../mod/photos.php:1197 +#: ../../mod/photos.php:1214 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" + +#: ../../mod/photos.php:688 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" + +#: ../../mod/photos.php:690 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" + +#: ../../mod/photos.php:714 ../../mod/photos.php:1247 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../mod/photos.php:743 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../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/photos.php:955 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" + +#: ../../mod/photos.php:956 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" + +#: ../../mod/photos.php:959 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../mod/photos.php:961 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../mod/photos.php:965 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../mod/photos.php:968 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" + +#: ../../mod/photos.php:1160 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../mod/photos.php:1165 +msgid "Map" +msgstr "Karte" + +#: ../../mod/photos.php:1253 +msgid "View Album" +msgstr "Album ansehen" + +#: ../../mod/photos.php:1276 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../mod/dav.php:121 +msgid "$Projectname channel" +msgstr "$Projectname-Kanal" + +#: ../../mod/rate.php:157 +msgid "Website:" +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)" + +#: ../../mod/rate.php:161 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" + +#: ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" + +#: ../../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:96 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." + +#: ../../mod/events.php:98 ../../mod/events.php:107 ../../mod/events.php:127 +msgid "Unable to generate preview." +msgstr "Vorschau konnte nicht erzeugt werden." + +#: ../../mod/events.php:105 +msgid "Event title and start time are required." +msgstr "Titel und Startzeit des Termins sind erforderlich." + +#: ../../mod/events.php:125 ../../mod/events.php:250 +msgid "Event not found." +msgstr "Termin nicht gefunden." + +#: ../../mod/events.php:448 +msgid "l, F j" +msgstr "l, j. F" + +#: ../../mod/events.php:470 +msgid "Edit event" +msgstr "Termin bearbeiten" + +#: ../../mod/events.php:472 +msgid "Delete event" +msgstr "Termin löschen" + +#: ../../mod/events.php:506 +msgid "calendar" +msgstr "Kalender" + +#: ../../mod/events.php:527 +msgid "Create New Event" +msgstr "Neuen Termin erstellen" + +#: ../../mod/events.php:530 +msgid "Export" +msgstr "Exportieren" + +#: ../../mod/events.php:533 +msgid "Import" +msgstr "Import" + +#: ../../mod/events.php:564 +msgid "Event removed" +msgstr "Termin gelöscht" + +#: ../../mod/events.php:567 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" + +#: ../../mod/events.php:681 +msgid "Event details" +msgstr "Termin-Details" + +#: ../../mod/events.php:682 +msgid "Starting date and Title are required." +msgstr "Startdatum und Titel sind erforderlich." + +#: ../../mod/events.php:684 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" + +#: ../../mod/events.php:686 +msgid "Event Starts:" +msgstr "Termin beginnt:" + +#: ../../mod/events.php:693 +msgid "Finish date/time is not known or not relevant" +msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" + +#: ../../mod/events.php:695 +msgid "Event Finishes:" +msgstr "Termin endet:" + +#: ../../mod/events.php:697 ../../mod/events.php:698 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" + +#: ../../mod/events.php:697 +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:703 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:705 +msgid "Share this event" +msgstr "Den Termin teilen" + +#: ../../mod/impel.php:192 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" + +#: ../../mod/impel.php:195 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" + +#: ../../mod/probe.php:24 ../../mod/probe.php:30 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" + +#: ../../mod/match.php:22 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" + +#: ../../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/match.php:63 +msgid "is interested in:" +msgstr "interessiert sich für:" + +#: ../../mod/match.php:70 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: ../../mod/profile_photo.php:111 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." + +#: ../../mod/profile_photo.php:165 +msgid "Image resize failed." +msgstr "Bild-Anpassung fehlgeschlagen." + +#: ../../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/profile_photo.php:247 +msgid "Image upload failed." +msgstr "Hochladen des Bilds fehlgeschlagen." + +#: ../../mod/profile_photo.php:266 +msgid "Unable to process image." +msgstr "Kann Bild nicht verarbeiten." + +#: ../../mod/profile_photo.php:294 +msgid "female" +msgstr "weiblich" + +#: ../../mod/profile_photo.php:295 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s hat ihr %2$s aktualisiert" + +#: ../../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/profile_photo.php:301 +msgid "profile photo" +msgstr "Profilfoto" + +#: ../../mod/profile_photo.php:365 ../../mod/profile_photo.php:406 +msgid "Photo not available." +msgstr "Foto nicht verfügbar." + +#: ../../mod/profile_photo.php:447 +msgid "Upload File:" +msgstr "Datei hochladen:" + +#: ../../mod/profile_photo.php:448 +msgid "Select a profile:" +msgstr "Wähle ein Profil:" + +#: ../../mod/profile_photo.php:449 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" + +#: ../../mod/profile_photo.php:454 ../../mod/settings.php:972 +msgid "or" +msgstr "oder" + +#: ../../mod/profile_photo.php:454 +msgid "skip this step" +msgstr "diesen Schritt überspringen" + +#: ../../mod/profile_photo.php:454 +msgid "select a photo from your photo albums" +msgstr "ein Foto aus meinen Fotoalben" + +#: ../../mod/profile_photo.php:470 +msgid "Crop Image" +msgstr "Bild zuschneiden" + +#: ../../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/profile_photo.php:473 +msgid "Done Editing" +msgstr "Bearbeitung fertigstellen" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal hinzugefügt." + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Schlagwort entfernt" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" + +#: ../../mod/ratings.php:69 +msgid "No ratings" +msgstr "Keine Bewertungen" + +#: ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Bewertungen" + +#: ../../mod/ratings.php:100 +msgid "Rating: " +msgstr "Bewertung: " + +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Webseite: " + +#: ../../mod/ratings.php:103 +msgid "Description: " +msgstr "Beschreibung: " + +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Diese Website ist kein Verzeichnis-Server" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Konnte den Empfänger nicht finden." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." + +#: ../../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/mail.php:128 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../mod/mail.php:138 +msgid "Message deleted." +msgstr "Nachricht gelöscht." + +#: ../../mod/mail.php:154 +msgid "Message recalled." +msgstr "Nachricht widerrufen." + +#: ../../mod/mail.php:221 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: ../../mod/mail.php:222 ../../mod/mail.php:352 +msgid "To:" +msgstr "An:" + +#: ../../mod/mail.php:227 ../../mod/mail.php:341 ../../mod/mail.php:354 +msgid "Subject:" +msgstr "Betreff:" + +#: ../../mod/mail.php:231 ../../mod/mail.php:357 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../mod/mail.php:238 +msgid "Send" +msgstr "Absenden" + +#: ../../mod/mail.php:322 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: ../../mod/mail.php:323 +msgid "Recall message" +msgstr "Nachricht widerrufen" + +#: ../../mod/mail.php:325 +msgid "Message has been recalled." +msgstr "Die Nachricht wurde widerrufen." + +#: ../../mod/mail.php:345 +msgid "Delete Conversation" +msgstr "Unterhaltung löschen" + +#: ../../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/mail.php:351 +msgid "Send Reply" +msgstr "Antwort senden" + +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "Seitentitel" + +#: ../../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/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." + +#: ../../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/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/register.php:126 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: ../../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/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registrierung auf einem anderen, angeschlossenen Server" + +#: ../../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/register.php:185 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" + +#: ../../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/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/register.php:213 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Passwort" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" + +#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 +msgid "Block Name" +msgstr "Block-Name" + +#: ../../mod/blocks.php:149 +msgid "Block Title" +msgstr "Titel des Blocks" + +#: ../../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/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Dieses Konto löschen" + +#: ../../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/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/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/removeaccount.php:61 ../../mod/settings.php:697 +msgid "Remove Account" +msgstr "Konto entfernen" + +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Keine Dienstklassenbeschränkungen gefunden." + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Element nicht verfügbar." + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Quelle erstellt." + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Quelle aktualisiert." + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Neue Quelle" + +#: ../../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/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/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/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Quelle nicht gefunden." + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Quelle bearbeiten" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Quelle löschen" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Quelle gelöscht" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." + +#: ../../mod/lockview.php:37 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." + +#: ../../mod/lockview.php:58 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: ../../mod/acl.php:222 +msgid "network" +msgstr "Netzwerk" + +#: ../../mod/acl.php:232 +msgid "RSS" +msgstr "RSS" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Bitte melde dich an." + +#: ../../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/rmagic.php:40 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" + +#: ../../mod/rmagic.php:44 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." + +#: ../../mod/rmagic.php:84 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" + +#: ../../mod/rmagic.php:85 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" + +#: ../../mod/rmagic.php:86 +msgid "Authenticate" +msgstr "Authentifizieren" + +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "Dieser Verzeichnis-Server benötigt ein Zugangstoken" + +#: ../../mod/siteinfo.php:111 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../mod/siteinfo.php:132 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" + +#: ../../mod/siteinfo.php:145 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" + +#: ../../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/siteinfo.php:160 +msgid "Tag: " +msgstr "Schlagwort: " + +#: ../../mod/siteinfo.php:162 +msgid "Last background fetch: " +msgstr "Letzter Hintergrundabruf:" + +#: ../../mod/siteinfo.php:164 +msgid "Current load average: " +msgstr "Aktuelles Load Average:" + +#: ../../mod/siteinfo.php:167 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" + +#: ../../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/siteinfo.php:169 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: ../../mod/siteinfo.php:171 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" + +#: ../../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/siteinfo.php:174 +msgid "Site Administrators" +msgstr "Administratoren" + +#: ../../mod/import.php:27 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Dein Vertrag erlaubt nur %d Kanäle." + +#: ../../mod/import.php:65 ../../mod/import_items.php:38 +msgid "Nothing to import." +msgstr "Nichts zu importieren." + +#: ../../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/import.php:95 ../../mod/import_items.php:68 +msgid "Imported file is empty." +msgstr "Die importierte Datei ist leer." + +#: ../../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/import.php:148 +msgid "No channel. Import failed." +msgstr "Kein Kanal. Import fehlgeschlagen." + +#: ../../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/import.php:498 +msgid "Import Channel" +msgstr "Kanal importieren" + +#: ../../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/import.php:500 ../../mod/import_items.php:121 +msgid "File to Upload" +msgstr "Hochzuladende Datei:" + +#: ../../mod/import.php:501 +msgid "Or provide the old server/hub details" +msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" + +#: ../../mod/import.php:502 +msgid "Your old identity address (xyz@example.com)" +msgstr "Bisherige Kanal-Adresse (xyz@example.com)" + +#: ../../mod/import.php:503 +msgid "Your old login email address" +msgstr "Deine alte Login-E-Mail-Adresse" + +#: ../../mod/import.php:504 +msgid "Your old login password" +msgstr "Dein altes Passwort" + +#: ../../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/import.php:506 +msgid "Make this hub my primary location" +msgstr "Dieser Red-Server ist mein primärer Server." + +#: ../../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/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/thing.php:111 +msgid "Thing updated" +msgstr "Sache aktualisiert" + +#: ../../mod/thing.php:163 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" + +#: ../../mod/thing.php:167 +msgid "Thing added" +msgstr "Sache hinzugefügt" + +#: ../../mod/thing.php:193 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:256 +msgid "Show Thing" +msgstr "Sache anzeigen" + +#: ../../mod/thing.php:263 +msgid "item not found." +msgstr "Eintrag nicht gefunden" + +#: ../../mod/thing.php:296 +msgid "Edit Thing" +msgstr "Sache bearbeiten" + +#: ../../mod/thing.php:298 ../../mod/thing.php:348 +msgid "Select a profile" +msgstr "Wähle ein Profil" + +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" + +#: ../../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/thing.php:304 ../../mod/thing.php:353 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" + +#: ../../mod/thing.php:306 ../../mod/thing.php:354 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" + +#: ../../mod/thing.php:308 ../../mod/thing.php:355 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" + +#: ../../mod/thing.php:346 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." + +#: ../../mod/invite.php:76 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." + +#: ../../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/invite.php:115 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../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/invite.php:134 +msgid "You will need to supply this invitation code: " +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 einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" + +#: ../../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/invite.php:138 +msgid "or visit " +msgstr "oder besuche" + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" + +#: ../../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/viewsrc.php:40 +msgid "Source of Item" +msgstr "Quelle des Elements" + +#: ../../mod/settings.php:76 msgid "Name is required" msgstr "Name ist erforderlich" -#: ../../mod/settings.php:77 +#: ../../mod/settings.php:80 msgid "Key and Secret are required" msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../mod/settings.php:120 -msgid "Diaspora Policy Settings updated." -msgstr "Diaspora-Einstellungen aktualisiert." - -#: ../../mod/settings.php:228 +#: ../../mod/settings.php:231 msgid "Passwords do not match. Password unchanged." msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:235 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../mod/settings.php:246 +#: ../../mod/settings.php:249 msgid "Password changed." msgstr "Kennwort geändert." -#: ../../mod/settings.php:248 +#: ../../mod/settings.php:251 msgid "Password update failed. Please try again." msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../mod/settings.php:262 +#: ../../mod/settings.php:265 msgid "Not valid email." msgstr "Keine gültige E-Mail Adresse." -#: ../../mod/settings.php:265 +#: ../../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/settings.php:274 +#: ../../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/settings.php:513 +#: ../../mod/settings.php:518 msgid "Settings updated." msgstr "Einstellungen aktualisiert." @@ -4753,496 +7521,626 @@ msgstr "Kein Name" msgid "Remove authorization" msgstr "Authorisierung aufheben" -#: ../../mod/settings.php:663 +#: ../../mod/settings.php:662 msgid "No feature settings configured" msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../mod/settings.php:676 -msgid "Feature Settings" -msgstr "Funktions-Einstellungen" +#: ../../mod/settings.php:669 +msgid "Feature/Addon Settings" +msgstr "Funktions-/Addon-Einstellungen" -#: ../../mod/settings.php:679 -msgid "Diaspora Policy Settings" -msgstr "Diaspora-Einstellungen" - -#: ../../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/settings.php:681 -msgid "Submit Diaspora Policy Settings" -msgstr "Diaspora-Einstellungen speichern" - -#: ../../mod/settings.php:704 +#: ../../mod/settings.php:692 msgid "Account Settings" msgstr "Konto-Einstellungen" -#: ../../mod/settings.php:705 -msgid "Password Settings" -msgstr "Kennwort-Einstellungen" +#: ../../mod/settings.php:693 +msgid "Enter New Password:" +msgstr "Neues Passwort eingeben:" -#: ../../mod/settings.php:706 -msgid "New Password:" -msgstr "Neues Passwort:" +#: ../../mod/settings.php:694 +msgid "Confirm New Password:" +msgstr "Neues Passwort bestätigen:" -#: ../../mod/settings.php:707 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: ../../mod/settings.php:707 +#: ../../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/settings.php:709 ../../mod/settings.php:1045 +#: ../../mod/settings.php:696 ../../mod/settings.php:1027 msgid "Email Address:" msgstr "Email Adresse:" -#: ../../mod/settings.php:710 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Konto entfernen" +#: ../../mod/settings.php:698 +msgid "Remove this account including all its channels" +msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../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/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/settings.php:728 +#: ../../mod/settings.php:714 msgid "Off" msgstr "Aus" -#: ../../mod/settings.php:728 +#: ../../mod/settings.php:714 msgid "On" msgstr "An" -#: ../../mod/settings.php:735 +#: ../../mod/settings.php:721 msgid "Additional Features" msgstr "Zusätzliche Funktionen" -#: ../../mod/settings.php:759 +#: ../../mod/settings.php:745 msgid "Connector Settings" msgstr "Connector-Einstellungen" -#: ../../mod/settings.php:798 +#: ../../mod/settings.php:784 msgid "No special theme for mobile devices" msgstr "Keine spezielle Theme für mobile Geräte" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:787 #, php-format msgid "%s - (Experimental)" msgstr "%s – (experimentell)" -#: ../../mod/settings.php:804 ../../mod/admin.php:367 -msgid "mobile" -msgstr "mobil" - -#: ../../mod/settings.php:840 +#: ../../mod/settings.php:826 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../mod/settings.php:846 +#: ../../mod/settings.php:827 +msgid "Theme Settings" +msgstr "Theme-Einstellungen" + +#: ../../mod/settings.php:828 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme-Einstellungen" + +#: ../../mod/settings.php:829 +msgid "Content Settings" +msgstr "Inhaltseinstellungen" + +#: ../../mod/settings.php:835 msgid "Display Theme:" msgstr "Anzeige-Theme:" -#: ../../mod/settings.php:847 +#: ../../mod/settings.php:836 msgid "Mobile Theme:" msgstr "Mobile Theme:" -#: ../../mod/settings.php:848 +#: ../../mod/settings.php:837 msgid "Enable user zoom on mobile devices" msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../mod/settings.php:849 +#: ../../mod/settings.php:838 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../mod/settings.php:849 +#: ../../mod/settings.php:838 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../mod/settings.php:850 +#: ../../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/settings.php:850 +#: ../../mod/settings.php:839 msgid "Maximum of 100 items" msgstr "Maximum: 100 Beiträge" -#: ../../mod/settings.php:851 -msgid "Don't show emoticons" -msgstr "Emoticons nicht anzeigen" +#: ../../mod/settings.php:840 +msgid "Show emoticons (smilies) as images" +msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../mod/settings.php:852 +#: ../../mod/settings.php:841 msgid "Link post titles to source" msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../mod/settings.php:853 +#: ../../mod/settings.php:842 msgid "System Page Layout Editor - (advanced)" msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../mod/settings.php:856 +#: ../../mod/settings.php:845 msgid "Use blog/list mode on channel page" msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../mod/settings.php:856 ../../mod/settings.php:857 +#: ../../mod/settings.php:845 ../../mod/settings.php:846 msgid "(comments displayed separately)" msgstr "(Kommentare werden separat angezeigt)" -#: ../../mod/settings.php:857 +#: ../../mod/settings.php:846 msgid "Use blog/list mode on matrix page" msgstr "Blog-/Listenmodus auf der Matrixseite verwenden" -#: ../../mod/settings.php:858 +#: ../../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/settings.php:858 ../../mod/settings.php:859 +#: ../../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/settings.php:859 +#: ../../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:893 +#: ../../mod/settings.php:882 msgid "Nobody except yourself" msgstr "Niemand außer Dir selbst" -#: ../../mod/settings.php:894 +#: ../../mod/settings.php:883 msgid "Only those you specifically allow" msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../mod/settings.php:895 +#: ../../mod/settings.php:884 msgid "Approved connections" msgstr "Angenommene Verbindungen" -#: ../../mod/settings.php:896 +#: ../../mod/settings.php:885 msgid "Any connections" msgstr "Beliebige Verbindungen" -#: ../../mod/settings.php:897 +#: ../../mod/settings.php:886 msgid "Anybody on this website" msgstr "Jeder auf dieser Website" -#: ../../mod/settings.php:898 +#: ../../mod/settings.php:887 msgid "Anybody in this network" msgstr "Alle Red-Nutzer" -#: ../../mod/settings.php:899 +#: ../../mod/settings.php:888 msgid "Anybody authenticated" msgstr "Jeder authentifizierte" -#: ../../mod/settings.php:900 +#: ../../mod/settings.php:889 msgid "Anybody on the internet" msgstr "Jeder im Internet" -#: ../../mod/settings.php:974 +#: ../../mod/settings.php:963 msgid "Publish your default profile in the network directory" msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../mod/settings.php:979 +#: ../../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/settings.php:988 +#: ../../mod/settings.php:977 msgid "Your channel address is" msgstr "Deine Kanal-Adresse lautet" -#: ../../mod/settings.php:1036 +#: ../../mod/settings.php:1018 msgid "Channel Settings" msgstr "Kanal-Einstellungen" -#: ../../mod/settings.php:1043 +#: ../../mod/settings.php:1025 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../mod/settings.php:1046 +#: ../../mod/settings.php:1028 msgid "Your Timezone:" msgstr "Ihre Zeitzone:" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1029 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1029 msgid "Geographical location to display on your posts" msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1030 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1032 msgid "Adult Content" msgstr "Nicht jugendfreie Inhalte" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1032 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/settings.php:1052 +#: ../../mod/settings.php:1034 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../mod/settings.php:1054 +#: ../../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/settings.php:1056 +#: ../../mod/settings.php:1038 msgid "Hide my online presence" msgstr "Meine Online-Präsenz verbergen" -#: ../../mod/settings.php:1056 +#: ../../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/settings.php:1058 +#: ../../mod/settings.php:1040 msgid "Simple Privacy Settings:" msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../mod/settings.php:1059 +#: ../../mod/settings.php:1041 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../mod/settings.php:1060 +#: ../../mod/settings.php:1042 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/settings.php:1061 +#: ../../mod/settings.php:1043 msgid "Private - default private, never open or public" msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../mod/settings.php:1062 +#: ../../mod/settings.php:1044 msgid "Blocked - default blocked to/from everybody" msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1046 msgid "Allow others to tag your posts" msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1046 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/settings.php:1066 +#: ../../mod/settings.php:1048 msgid "Advanced Privacy Settings" msgstr "Fortgeschrittene Privatsphäre-Einstellungen" -#: ../../mod/settings.php:1068 +#: ../../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/settings.php:1068 +#: ../../mod/settings.php:1050 msgid "0 or blank prevents expiration" msgstr "0 oder kein Inhalt verhindern das Verfallen" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1051 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1051 msgid "May reduce spam activity" msgstr "Kann die Spam-Aktivität verringern" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1052 msgid "Default Post Permissions" msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" -#: ../../mod/settings.php:1071 ../../mod/mitem.php:161 ../../mod/mitem.php:204 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1057 msgid "Channel permissions category:" msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1063 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1063 msgid "Useful to reduce spamming" msgstr "Nützlich, um Spam zu verringern" -#: ../../mod/settings.php:1084 +#: ../../mod/settings.php:1066 msgid "Notification Settings" msgstr "Benachrichtigungs-Einstellungen" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1067 msgid "By default post a status message when:" msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1068 msgid "accepting a friend request" msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1069 msgid "joining a forum/community" msgstr "Du einem Forum beitrittst" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1070 msgid "making an interesting profile change" msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1071 msgid "Send a notification email when:" msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1072 msgid "You receive a connection request" msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1073 msgid "Your connections are confirmed" msgstr "Eine Verbindung bestätigt wurde" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1074 msgid "Someone writes on your profile wall" msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../mod/settings.php:1093 +#: ../../mod/settings.php:1075 msgid "Someone writes a followup comment" msgstr "Jemand einen Beitrag kommentiert" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1076 msgid "You receive a private message" msgstr "Du eine private Nachricht erhältst" -#: ../../mod/settings.php:1095 +#: ../../mod/settings.php:1077 msgid "You receive a friend suggestion" msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../mod/settings.php:1096 +#: ../../mod/settings.php:1078 msgid "You are tagged in a post" msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../mod/settings.php:1097 +#: ../../mod/settings.php:1079 msgid "You are poked/prodded/etc. in a post" msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../mod/settings.php:1100 +#: ../../mod/settings.php:1082 msgid "Show visual notifications including:" msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1084 msgid "Unseen matrix activity" msgstr "Ungesehene Matrix-Aktivität" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1085 msgid "Unseen channel activity" msgstr "Ungesehene Kanal-Aktivität" -#: ../../mod/settings.php:1104 +#: ../../mod/settings.php:1086 msgid "Unseen private messages" msgstr "Ungelesene persönliche Nachrichten" -#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 +#: ../../mod/settings.php:1086 ../../mod/settings.php:1091 +#: ../../mod/settings.php:1092 ../../mod/settings.php:1093 msgid "Recommended" msgstr "Empfohlen" -#: ../../mod/settings.php:1105 +#: ../../mod/settings.php:1087 msgid "Upcoming events" msgstr "Baldige Termine" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1088 msgid "Events today" msgstr "Heutige Termine" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1089 msgid "Upcoming birthdays" msgstr "Baldige Geburtstage" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1089 msgid "Not available in all themes" msgstr "Nicht in allen Themes verfügbar" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1090 msgid "System (personal) notifications" msgstr "System – (persönliche) Benachrichtigungen" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1091 msgid "System info messages" msgstr "System – Info-Nachrichten" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1092 msgid "System critical alerts" msgstr "System – kritische Warnungen" -#: ../../mod/settings.php:1111 +#: ../../mod/settings.php:1093 msgid "New connections" msgstr "Neue Verbindungen" -#: ../../mod/settings.php:1112 +#: ../../mod/settings.php:1094 msgid "System Registrations" msgstr "System – Registrierungen" -#: ../../mod/settings.php:1113 +#: ../../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/settings.php:1115 +#: ../../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/settings.php:1115 +#: ../../mod/settings.php:1097 msgid "Must be greater than 0" msgstr "Muss größer als 0 sein" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1099 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../mod/settings.php:1118 +#: ../../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/settings.php:1121 +#: ../../mod/settings.php:1103 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/settings.php:1122 +#: ../../mod/settings.php:1104 msgid "Miscellaneous Settings" msgstr "Sonstige Einstellungen" -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1105 +msgid "Default photo upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Fotos" + +#: ../../mod/settings.php:1106 +msgid "Default file upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Dateien" + +#: ../../mod/settings.php:1108 msgid "Personal menu to display in your channel pages" msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../mod/settings.php:1125 -msgid "Remove this channel" +#: ../../mod/settings.php:1110 +msgid "Remove this channel." msgstr "Diesen Kanal löschen" -#: ../../mod/cloud.php:120 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Xchan-Suche" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Schlagwort entfernt" +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" +#: ../../mod/manage.php:130 +#, 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." -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" +#: ../../mod/manage.php:138 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" -#: ../../mod/tagrm.php:133 ../../mod/delegate.php:130 ../../mod/photos.php:873 -msgid "Remove" -msgstr "Entferne" +#: ../../mod/manage.php:161 +msgid "Current Channel" +msgstr "Aktueller Kanal" + +#: ../../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/manage.php:164 +msgid "Default Channel" +msgstr "Standard Kanal" + +#: ../../mod/manage.php:165 +msgid "Make Default" +msgstr "Zum Standard machen" + +#: ../../mod/manage.php:168 +#, php-format +msgid "%d new messages" +msgstr "%d neue Nachrichten" + +#: ../../mod/manage.php:169 +#, php-format +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" + +#: ../../mod/manage.php:171 +msgid "Delegated Channels" +msgstr "Delegierte Kanäle" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." + +#: ../../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/connections.php:52 ../../mod/connections.php:150 +msgid "Blocked" +msgstr "Blockiert" + +#: ../../mod/connections.php:57 ../../mod/connections.php:157 +msgid "Ignored" +msgstr "Ignoriert" + +#: ../../mod/connections.php:62 ../../mod/connections.php:171 +msgid "Hidden" +msgstr "Versteckt" + +#: ../../mod/connections.php:67 ../../mod/connections.php:164 +msgid "Archived" +msgstr "Archiviert" + +#: ../../mod/connections.php:128 +msgid "Suggest new connections" +msgstr "Neue Verbindungen vorschlagen" + +#: ../../mod/connections.php:131 +msgid "New Connections" +msgstr "Neue Verbindungen" + +#: ../../mod/connections.php:134 +msgid "Show pending (new) connections" +msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" + +#: ../../mod/connections.php:137 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle Verbindungen" + +#: ../../mod/connections.php:140 +msgid "Show all connections" +msgstr "Alle Verbindungen anzeigen" + +#: ../../mod/connections.php:143 +msgid "Unblocked" +msgstr "Freigegeben" + +#: ../../mod/connections.php:146 +msgid "Only show unblocked connections" +msgstr "Nur freigegebene Verbindungen anzeigen" + +#: ../../mod/connections.php:153 +msgid "Only show blocked connections" +msgstr "Nur blockierte Verbindungen anzeigen" + +#: ../../mod/connections.php:160 +msgid "Only show ignored connections" +msgstr "Nur ignorierte Verbindungen anzeigen" + +#: ../../mod/connections.php:167 +msgid "Only show archived connections" +msgstr "Nur archivierte Verbindungen anzeigen" + +#: ../../mod/connections.php:174 +msgid "Only show hidden connections" +msgstr "Nur versteckte Verbindungen anzeigen" + +#: ../../mod/connections.php:225 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:226 +msgid "Edit connection" +msgstr "Verbindung bearbeiten" + +#: ../../mod/connections.php:264 +msgid "Search your connections" +msgstr "Verbindungen durchsuchen" + +#: ../../mod/connections.php:265 +msgid "Finding: " +msgstr "Ergebnisse:" + +#: ../../mod/editlayout.php:112 +msgid "Delete layout?" +msgstr "Layout löschen?" + +#: ../../mod/editlayout.php:178 +msgid "Edit Layout" +msgstr "Layout bearbeiten" + +#: ../../mod/editwebpage.php:153 +msgid "Delete webpage?" +msgstr "Webseite löschen?" + +#: ../../mod/editwebpage.php:172 +msgid "Page link title" +msgstr "Seitentitel-Link" + +#: ../../mod/editwebpage.php:222 +msgid "Edit Webpage" +msgstr "Webseite bearbeiten" #: ../../mod/group.php:20 msgid "Collection created." @@ -5260,11 +8158,11 @@ msgstr "Sammlung aktualisiert." msgid "Create a collection of channels." msgstr "Erstelle eine Sammlung von Kanälen." -#: ../../mod/group.php:87 ../../mod/group.php:183 +#: ../../mod/group.php:87 ../../mod/group.php:180 msgid "Collection Name: " msgstr "Name der Sammlung:" -#: ../../mod/group.php:89 ../../mod/group.php:186 +#: ../../mod/group.php:89 ../../mod/group.php:183 msgid "Members are visible to other channels" msgstr "Mitglieder sind sichtbar für andere Kanäle" @@ -5276,481 +8174,537 @@ msgstr "Sammlung gelöscht." msgid "Unable to remove collection." msgstr "Löschen der Sammlung nicht möglich." -#: ../../mod/group.php:182 +#: ../../mod/group.php:179 msgid "Collection Editor" msgstr "Sammlung-Editor" -#: ../../mod/group.php:196 +#: ../../mod/group.php:193 msgid "Members" msgstr "Mitglieder" -#: ../../mod/group.php:198 +#: ../../mod/group.php:195 msgid "All Connected Channels" msgstr "Alle verbundenen Kanäle" -#: ../../mod/group.php:233 +#: ../../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/siteinfo.php:93 +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Fortfahren" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" + +#: ../../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/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/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/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/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" + +#: ../../mod/viewconnections.php:59 +msgid "No connections." +msgstr "Keine Verbindungen." + +#: ../../mod/viewconnections.php:72 #, php-format -msgid "Version %s" -msgstr "Version %s" +msgid "Visit %s's profile [%s]" +msgstr "%ss Profil [%s] besuchen" -#: ../../mod/siteinfo.php:114 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" +#: ../../mod/locs.php:21 ../../mod/locs.php:49 +msgid "Location not found." +msgstr "Klon nicht gefunden." -#: ../../mod/siteinfo.php:127 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" +#: ../../mod/locs.php:57 +msgid "Location lookup failed." +msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" -#: ../../mod/siteinfo.php:136 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:137 +#: ../../mod/locs.php:61 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." +"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/siteinfo.php:139 -msgid "Tag: " -msgstr "Schlagwort: " +#: ../../mod/locs.php:93 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden." -#: ../../mod/siteinfo.php:141 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" +#: ../../mod/locs.php:104 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" -#: ../../mod/siteinfo.php:144 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" +#: ../../mod/locs.php:105 +msgid "Location (address)" +msgstr "URL (Adresse)" -#: ../../mod/siteinfo.php:145 +#: ../../mod/locs.php:106 +msgid "Primary Location" +msgstr "Primärer Klon" + +#: ../../mod/locs.php:107 +msgid "Drop location" +msgstr "Klon löschen" + +#: ../../mod/post.php:234 msgid "" -"Please visit RedMatrix.me to learn more" -" about the Red Matrix." -msgstr "Bitte besuchen Sie RedMatrix.me, um mehr über RedMatrix zu erfahren." +"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/siteinfo.php:146 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../mod/setup.php:191 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Server-Einrichtung" -#: ../../mod/siteinfo.php:149 -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/siteinfo.php:151 -msgid "Site Administrators" -msgstr "Administratoren" - -#: ../../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/setup.php:166 -msgid "Red Matrix Server - Setup" -msgstr "Red Matrix Server - Installation" - -#: ../../mod/setup.php:172 +#: ../../mod/setup.php:195 msgid "Could not connect to database." msgstr "Kann nicht mit der Datenbank verbinden." -#: ../../mod/setup.php:176 +#: ../../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/setup.php:183 +#: ../../mod/setup.php:206 msgid "Could not create table." msgstr "Kann Tabelle nicht erstellen." -#: ../../mod/setup.php:189 +#: ../../mod/setup.php:211 msgid "Your site database has been installed." msgstr "Die Datenbank Deines Hubs wurde installiert." -#: ../../mod/setup.php:194 +#: ../../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/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 +#: ../../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/setup.php:261 +#: ../../mod/setup.php:281 msgid "System check" msgstr "Systemprüfung" -#: ../../mod/setup.php:266 +#: ../../mod/setup.php:286 msgid "Check again" msgstr "Bitte nochmal prüfen" -#: ../../mod/setup.php:289 +#: ../../mod/setup.php:308 msgid "Database connection" msgstr "Datenbank Verbindung" -#: ../../mod/setup.php:290 +#: ../../mod/setup.php:309 msgid "" -"In order to install Red Matrix we need to know how to connect to your " +"In order to install $Projectname 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." +msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." -#: ../../mod/setup.php:291 +#: ../../mod/setup.php:310 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." -#: ../../mod/setup.php:292 +#: ../../mod/setup.php:311 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." -#: ../../mod/setup.php:296 +#: ../../mod/setup.php:315 msgid "Database Server Name" msgstr "Datenbank-Servername" -#: ../../mod/setup.php:296 +#: ../../mod/setup.php:315 msgid "Default is localhost" msgstr "Standard ist localhost" -#: ../../mod/setup.php:297 +#: ../../mod/setup.php:316 msgid "Database Port" msgstr "Datenbank-Port" -#: ../../mod/setup.php:297 +#: ../../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/setup.php:298 +#: ../../mod/setup.php:317 msgid "Database Login Name" msgstr "Datenbank-Benutzername" -#: ../../mod/setup.php:299 +#: ../../mod/setup.php:318 msgid "Database Login Password" msgstr "Datenbank-Kennwort" -#: ../../mod/setup.php:300 +#: ../../mod/setup.php:319 msgid "Database Name" msgstr "Datenbank-Name" -#: ../../mod/setup.php:301 +#: ../../mod/setup.php:320 msgid "Database Type" msgstr "Datenbanktyp" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 +#: ../../mod/setup.php:322 ../../mod/setup.php:363 msgid "Site administrator email address" msgstr "E-Mail Adresse des Seiten-Administrators" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 +#: ../../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/setup.php:304 ../../mod/setup.php:349 +#: ../../mod/setup.php:323 ../../mod/setup.php:365 msgid "Website URL" msgstr "Server-URL" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 +#: ../../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/setup.php:307 ../../mod/setup.php:352 +#: ../../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/setup.php:335 +#: ../../mod/setup.php:352 msgid "Site settings" msgstr "Seiteneinstellungen" -#: ../../mod/setup.php:395 +#: ../../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/setup.php:396 +#: ../../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/setup.php:400 +#: ../../mod/setup.php:422 msgid "PHP executable path" msgstr "PHP Pfad zu ausführbarer Datei" -#: ../../mod/setup.php:400 +#: ../../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/setup.php:405 +#: ../../mod/setup.php:427 msgid "Command line PHP" msgstr "PHP Befehlszeile" -#: ../../mod/setup.php:414 +#: ../../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/setup.php:415 +#: ../../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/setup.php:417 +#: ../../mod/setup.php:440 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: ../../mod/setup.php:438 +#: ../../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/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/setup.php:465 +msgid "PHP upload limits" +msgstr "PHP-Hochladebeschränkungen" + +#: ../../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/setup.php:439 +#: ../../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/setup.php:441 +#: ../../mod/setup.php:492 msgid "Generate encryption keys" msgstr "Verschlüsselungsschlüssel generieren" -#: ../../mod/setup.php:448 +#: ../../mod/setup.php:504 msgid "libCurl PHP module" msgstr "libCurl-PHP-Modul" -#: ../../mod/setup.php:449 +#: ../../mod/setup.php:505 msgid "GD graphics PHP module" msgstr "GD-Grafik-PHP-Modul" -#: ../../mod/setup.php:450 +#: ../../mod/setup.php:506 msgid "OpenSSL PHP module" msgstr "OpenSSL-PHP-Modul" -#: ../../mod/setup.php:451 +#: ../../mod/setup.php:507 msgid "mysqli or postgres PHP module" msgstr "mysqli oder postgres PHP-Modul" -#: ../../mod/setup.php:452 +#: ../../mod/setup.php:508 msgid "mb_string PHP module" msgstr "mb_string-PHP-Modul" -#: ../../mod/setup.php:453 +#: ../../mod/setup.php:509 msgid "mcrypt PHP module" msgstr "mcrypt-PHP-Modul" -#: ../../mod/setup.php:458 ../../mod/setup.php:460 +#: ../../mod/setup.php:510 +msgid "xml PHP module" +msgstr "xml-PHP-Modul" + +#: ../../mod/setup.php:514 ../../mod/setup.php:516 msgid "Apache mod_rewrite module" msgstr "Apache-mod_rewrite-Modul" -#: ../../mod/setup.php:458 +#: ../../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/setup.php:464 ../../mod/setup.php:467 +#: ../../mod/setup.php:520 ../../mod/setup.php:523 msgid "proc_open" msgstr "proc_open" -#: ../../mod/setup.php:464 +#: ../../mod/setup.php:520 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/setup.php:472 +#: ../../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/setup.php:476 +#: ../../mod/setup.php:532 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/setup.php:480 +#: ../../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/setup.php:484 +#: ../../mod/setup.php:540 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/setup.php:488 +#: ../../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/setup.php:492 +#: ../../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/setup.php:508 +#: ../../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/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/setup.php:509 +#: ../../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/setup.php:510 +#: ../../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/setup.php:511 +#: ../../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/setup.php:514 +#: ../../mod/setup.php:576 msgid ".htconfig.php is writable" msgstr ".htconfig.php ist beschreibbar" -#: ../../mod/setup.php:524 +#: ../../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/setup.php:525 +#: ../../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 "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." -#: ../../mod/setup.php:526 ../../mod/setup.php:544 +#: ../../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/setup.php:527 +#: ../../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 "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/setup.php:530 +#: ../../mod/setup.php:596 #, php-format msgid "%s is writable" msgstr "%s ist beschreibbar" -#: ../../mod/setup.php:543 +#: ../../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/setup.php:547 +#: ../../mod/setup.php:616 msgid "store is writable" msgstr "store ist schreibbar" -#: ../../mod/setup.php:577 +#: ../../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/setup.php:578 +#: ../../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/setup.php:579 +#: ../../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/setup.php:580 +#: ../../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/setup.php:581 +#: ../../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/setup.php:582 +#: ../../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/setup.php:584 +#: ../../mod/setup.php:656 msgid "SSL certificate validation" msgstr "SSL Zertifikatverifizierung" -#: ../../mod/setup.php:590 +#: ../../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/setup.php:592 +#: ../../mod/setup.php:665 msgid "Url rewrite is working" msgstr "Url rewrite funktioniert" -#: ../../mod/setup.php:602 +#: ../../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/setup.php:625 +#: ../../mod/setup.php:698 msgid "Errors encountered creating database tables." msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../mod/setup.php:660 +#: ../../mod/setup.php:732 msgid "

What next

" msgstr "

Was als Nächstes

" -#: ../../mod/setup.php:661 +#: ../../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/common.php:10 -msgid "No channel." -msgstr "Kein Kanal." +#: ../../mod/sharedwithme.php:94 +msgid "Files: shared with me" +msgstr "Dateien, die mit mir geteilt wurden" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "NEU" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../mod/sharedwithme.php:99 +msgid "Remove all files" +msgstr "Alle Dateien löschen" + +#: ../../mod/sharedwithme.php:100 +msgid "Remove this file" +msgstr "Diese Datei löschen" #: ../../mod/suggest.php:35 msgid "" @@ -5758,908 +8712,6 @@ msgid "" "hours." msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Blockiert" - -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Ignoriert" - -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Versteckt" - -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Archiviert" - -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Alle" - -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Neue Verbindungen vorschlagen" - -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Neue Verbindungen" - -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" - -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle Verbindungen" - -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Alle Verbindungen anzeigen" - -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Freigegeben" - -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Nur freigegebene Verbindungen anzeigen" - -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Nur blockierte Verbindungen anzeigen" - -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Nur ignorierte Verbindungen anzeigen" - -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Nur archivierte Verbindungen anzeigen" - -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Nur versteckte Verbindungen anzeigen" - -#: ../../mod/connections.php:372 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Verbindung bearbeiten" - -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Verbindungen durchsuchen" - -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Ergebnisse:" - -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webseite" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "Block" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "Layout" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" - -#: ../../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/item.php:165 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." - -#: ../../mod/item.php:424 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." - -#: ../../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/item.php:865 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." - -#: ../../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/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/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/thing.php:96 -msgid "Thing updated" -msgstr "Sache aktualisiert" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Sache hinzugefügt" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Sache anzeigen" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Eintrag nicht gefunden" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Sache bearbeiten" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Wähle ein Profil" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" - -#: ../../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/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Abwesend" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal hinzugefügt." - -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." - -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "Netzwerk" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout aktualisiert." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout nicht gefunden." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulname:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Layout-Hilfe" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installiert." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Fehlerhafte App." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Code einbetten" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bearbeiten" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App erstellen" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Name der App" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" - -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Beschreibung" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL zum Icon" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versions-ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Preis der App" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "– auswählen –" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Dein Vertrag erlaubt nur %d Kanäle." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Nichts zu importieren." - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Daten können vom alten Server nicht heruntergeladen werden" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." - -#: ../../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/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 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." - -#: ../../mod/import.php:157 -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 -msgid "You must be logged in to use this feature." -msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." - -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Kanal importieren" - -#: ../../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/import.php:494 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" - -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" - -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" - -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" - -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Dein altes Passwort" - -#: ../../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/import.php:500 -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:108 -msgid "Edit Layout" -msgstr "Layout bearbeiten" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Layout löschen?" - -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Layout löschen" - -#: ../../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/chat.php:167 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Raum verlassen" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Diesen Raum löschen" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ich bin online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Neuer Chatraum" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Name des Chatraums" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" - -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" - -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Webseite löschen?" - -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Webseite löschen" - -#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22 -msgid "This site is not a directory server" -msgstr "Diese Website ist kein Verzeichnis-Server" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: ../../mod/lostpass.php:29 -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 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" - -#: ../../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/lostpass.php:85 ../../boot.php:1560 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" - -#: ../../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/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" - -#: ../../mod/lostpass.php:123 -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" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../mod/rate.php:157 -msgid "Website:" -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)" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Schließe Dich uns an und werde Teil der Red-Matrix" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." - -#: ../../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/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" - -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Schließe Dich uns in der RedMatrix an!" - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Gib folgenden Einladungs-Code ein:" - -#: ../../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/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "oder besuche" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Klon nicht gefunden." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "Der primäre Klon kann nicht gelöscht werden." - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "URL (Adresse)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Primärer Klon" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Klon löschen" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Quelle erstellt." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Quelle aktualisiert." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Neue Quelle" - -#: ../../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/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/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/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Name des Kanals" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Quelle nicht gefunden." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Quelle bearbeiten" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Quelle löschen" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Quelle gelöscht" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." - -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Menü aktualisiert." - -#: ../../mod/menu.php:35 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." - -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Menü erstellt." - -#: ../../mod/menu.php:44 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." - -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Menüs verwalten" - -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Löschen" - -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" - -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Neues Menü erstellen" - -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" - -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" - -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" - -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Neues Menü" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Menü Name" - -#: ../../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/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Menü Titel" - -#: ../../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/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" - -#: ../../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/menu.php:108 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menü nicht gefunden" - -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Menü gelöscht." - -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." - -#: ../../mod/menu.php:122 -msgid "Edit Menu" -msgstr "Menü bearbeiten" - -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" - -#: ../../mod/menu.php:130 ../../mod/mitem.php:213 -msgid "Modify" -msgstr "Ändern" - -#: ../../mod/filestorage.php:81 -msgid "Permission Denied." -msgstr "Zugriff verweigert." - -#: ../../mod/filestorage.php:97 -msgid "File not found." -msgstr "Datei nicht gefunden." - -#: ../../mod/filestorage.php:140 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" - -#: ../../mod/filestorage.php:149 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" - -#: ../../mod/filestorage.php:150 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" - -#: ../../mod/filestorage.php:151 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" - -#: ../../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/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/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Diese Datei an einen neuen Beitrag anhängen" - -#: ../../mod/filestorage.php:157 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" - -#: ../../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/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Freundschaftsempfehlung senden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Server nicht gefunden." - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../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/poke.php:165 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" - -#: ../../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/profperm.php:123 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." - -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Sichtbar für:" - #: ../../mod/profiles.php:18 ../../mod/profiles.php:174 #: ../../mod/profiles.php:231 ../../mod/profiles.php:600 msgid "Profile not found." @@ -6717,10 +8769,6 @@ msgstr "Religion" msgid "Political Views" msgstr "Politische Ansichten" -#: ../../mod/profiles.php:431 -msgid "Gender" -msgstr "Geschlecht" - #: ../../mod/profiles.php:435 msgid "Sexual Preference" msgstr "Sexuelle Orientierung" @@ -6733,10 +8781,6 @@ msgstr "Webseite" msgid "Interests" msgstr "Hobbys/Interessen" -#: ../../mod/profiles.php:447 ../../mod/admin.php:871 -msgid "Address" -msgstr "Adresse" - #: ../../mod/profiles.php:537 msgid "Profile updated." msgstr "Profil aktualisiert." @@ -6901,7 +8945,7 @@ msgstr "Schule/Ausbildung" msgid "This is your default profile." msgstr "Das ist Dein Standardprofil." -#: ../../mod/profiles.php:728 ../../mod/directory.php:188 +#: ../../mod/profiles.php:728 msgid "Age: " msgstr "Alter:" @@ -6917,111 +8961,21 @@ msgstr "Sachen zum Profil hinzufügen" msgid "Include desirable objects in your profile" msgstr "Binde begehrenswerte Dinge in Dein Profil ein" -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Keine Bewertungen" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Bewertungen" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Bewertung: " +#: ../../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/ratings.php:101 -msgid "Website: " -msgstr "Webseite: " - -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Beschreibung: " - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für diese Seite" - -#: ../../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/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Hinzufügen" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Keine Einträge." - -#: ../../mod/directory.php:194 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d Bewertung" -msgstr[1] "%d Bewertungen" - -#: ../../mod/directory.php:206 -msgid "Gender: " -msgstr "Geschlecht:" - -#: ../../mod/directory.php:208 -msgid "Status: " -msgstr "Status:" - -#: ../../mod/directory.php:210 -msgid "Homepage: " -msgstr "Webseite:" - -#: ../../mod/directory.php:213 -msgid "Hometown: " -msgstr "Wohnort:" - -#: ../../mod/directory.php:215 -msgid "About: " -msgstr "Über:" - -#: ../../mod/directory.php:273 -msgid "Public Forum:" -msgstr "Öffentliches Forum:" - -#: ../../mod/directory.php:276 -msgid "Keywords: " -msgstr "Schlüsselwörter:" - -#: ../../mod/directory.php:331 -msgid "Finding:" -msgstr "Ergebnisse:" - -#: ../../mod/directory.php:336 -msgid "next page" -msgstr "nächste Seite" - -#: ../../mod/directory.php:336 -msgid "previous page" -msgstr "vorherige Seite" - -#: ../../mod/directory.php:353 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Sichtbar für" #: ../../mod/rbmark.php:88 msgid "Select a bookmark folder" @@ -7039,1575 +8993,30 @@ msgstr "URL des Lesezeichens" msgid "Or enter new bookmark folder name" msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Kanal exportieren" +#: ../../mod/import_items.php:101 +msgid "Import completed" +msgstr "Import abgeschlossen" -#: ../../mod/uexport.php:35 +#: ../../mod/import_items.php:119 +msgid "Import Items" +msgstr "Beiträge importieren" + +#: ../../mod/import_items.php:120 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." +"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." -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" +#: ../../view/theme/redbasic/php/config.php:82 +msgid "Focus (Hubzilla default)" +msgstr "Focus (Voreinstellung für Hubzilla)" -#: ../../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/viewconnections.php:58 -msgid "No connections." -msgstr "Keine Verbindungen." - -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%ss Profil [%s] besuchen" - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." - -#: ../../mod/admin.php:97 ../../mod/admin.php:415 -msgid "Site" -msgstr "Seite" - -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Konten" - -#: ../../mod/admin.php:99 ../../mod/admin.php:863 -msgid "Channels" -msgstr "Kanäle" - -#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 -msgid "Plugins" -msgstr "Plug-Ins" - -#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 -msgid "Themes" -msgstr "Themes" - -#: ../../mod/admin.php:102 ../../mod/admin.php:517 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Profilkonfiguration" - -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "DB-Aktualisierungen" - -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 -msgid "Logs" -msgstr "Protokolle" - -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" - -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: ../../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/admin.php:212 -msgid "Summary" -msgstr "Zusammenfassung" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Registrierte Benutzer" - -#: ../../mod/admin.php:216 ../../mod/admin.php:520 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Version" - -#: ../../mod/admin.php:219 ../../mod/admin.php:521 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" - -#: ../../mod/admin.php:330 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." - -#: ../../mod/admin.php:369 -msgid "experimental" -msgstr "experimentell" - -#: ../../mod/admin.php:371 -msgid "unsupported" -msgstr "nicht unterstützt" - -#: ../../mod/admin.php:395 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" - -#: ../../mod/admin.php:401 -msgid "My site is not a public server" -msgstr "Mein Server ist kein öffentlicher Server" - -#: ../../mod/admin.php:402 -msgid "My site has paid access only" -msgstr "Mein Server erlaubt nur bezahlten Zugang" - -#: ../../mod/admin.php:403 -msgid "My site has free access only" -msgstr "Mein Server erlaubt ausschließlich freien Zugang" - -#: ../../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/admin.php:417 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registrierung" - -#: ../../mod/admin.php:418 -msgid "File upload" -msgstr "Dateiupload" - -#: ../../mod/admin.php:419 -msgid "Policies" -msgstr "Richtlinien" - -#: ../../mod/admin.php:424 -msgid "Site name" -msgstr "Seitenname" - -#: ../../mod/admin.php:425 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:426 -msgid "Administrator Information" -msgstr "Administrator-Informationen" - -#: ../../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/admin.php:427 -msgid "System language" -msgstr "System-Sprache" - -#: ../../mod/admin.php:428 -msgid "System theme" -msgstr "System-Theme" - -#: ../../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/admin.php:429 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" - -#: ../../mod/admin.php:429 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" - -#: ../../mod/admin.php:431 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-Protokoll aktivieren" - -#: ../../mod/admin.php:431 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Kommunikation mit Diaspora und Friendica – experimentell" - -#: ../../mod/admin.php:432 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" - -#: ../../mod/admin.php:432 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" - -#: ../../mod/admin.php:433 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: ../../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/admin.php:434 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" - -#: ../../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/admin.php:436 -msgid "Register text" -msgstr "Registrierungstext" - -#: ../../mod/admin.php:436 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." - -#: ../../mod/admin.php:437 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" - -#: ../../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/admin.php:438 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" - -#: ../../mod/admin.php:438 -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/admin.php:439 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" - -#: ../../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/admin.php:440 -msgid "Not allowed email domains" -msgstr "Nicht erlaubte Domains für E-Mails" - -#: ../../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/admin.php:441 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: ../../mod/admin.php:441 -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" - -#: ../../mod/admin.php:442 -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/admin.php:443 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" - -#: ../../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/admin.php:444 -msgid "Disable discovery tab" -msgstr "Den „Entdecken“-Reiter ausblenden" - -#: ../../mod/admin.php:444 -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:445 -msgid "No login on Homepage" -msgstr "Kein Login auf der Homepage" - -#: ../../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/admin.php:447 -msgid "Proxy user" -msgstr "Proxy Benutzer" - -#: ../../mod/admin.php:448 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../mod/admin.php:449 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" - -#: ../../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/admin.php:450 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" - -#: ../../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/admin.php:451 -msgid "Poll interval" -msgstr "Abfrageintervall" - -#: ../../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/admin.php:452 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" - -#: ../../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/admin.php:508 -msgid "No server found" -msgstr "Kein Server gefunden" - -#: ../../mod/admin.php:515 ../../mod/admin.php:740 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:515 -msgid "for channel" -msgstr "für Kanal" - -#: ../../mod/admin.php:515 -msgid "on server" -msgstr "auf Server" - -#: ../../mod/admin.php:515 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:536 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: ../../mod/admin.php:546 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." - -#: ../../mod/admin.php:549 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." - -#: ../../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/admin.php:556 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." - -#: ../../mod/admin.php:571 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." - -#: ../../mod/admin.php:575 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" - -#: ../../mod/admin.php:577 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" - -#: ../../mod/admin.php:578 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" - -#: ../../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/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/admin.php:640 -msgid "Account not found" -msgstr "Konto nicht gefunden" - -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' unblocked" -msgstr "Benutzer '%s' freigegeben" - -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' blocked" -msgstr "Benutzer '%s' blockiert" - -#: ../../mod/admin.php:727 ../../mod/admin.php:739 -msgid "Users" -msgstr "Benutzer" - -#: ../../mod/admin.php:729 ../../mod/admin.php:865 -msgid "select all" -msgstr "Alle auswählen" - -#: ../../mod/admin.php:730 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: ../../mod/admin.php:731 -msgid "Request date" -msgstr "Antragsdatum" - -#: ../../mod/admin.php:732 -msgid "No registrations." -msgstr "Keine Registrierungen." - -#: ../../mod/admin.php:733 -msgid "Approve" -msgstr "Genehmigen" - -#: ../../mod/admin.php:734 -msgid "Deny" -msgstr "Verweigern" - -#: ../../mod/admin.php:740 -msgid "Register date" -msgstr "Registrierungs-Datum" - -#: ../../mod/admin.php:740 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: ../../mod/admin.php:740 -msgid "Expires" -msgstr "Verfällt" - -#: ../../mod/admin.php:740 -msgid "Service Class" -msgstr "Service-Klasse" - -#: ../../mod/admin.php:742 -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?" - -#: ../../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/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/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/admin.php:802 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" - -#: ../../mod/admin.php:813 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" - -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" - -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" - -#: ../../mod/admin.php:867 -msgid "Censor" -msgstr "Sperren" - -#: ../../mod/admin.php:868 -msgid "Uncensor" -msgstr "Freigeben" - -#: ../../mod/admin.php:871 -msgid "UID" -msgstr "UID" - -#: ../../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/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/admin.php:913 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." - -#: ../../mod/admin.php:917 -#, 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" - -#: ../../mod/admin.php:963 ../../mod/admin.php:1170 -msgid "Author: " -msgstr "Autor: " - -#: ../../mod/admin.php:964 ../../mod/admin.php:1171 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: ../../mod/admin.php:1093 -msgid "No themes found." -msgstr "Keine Theme gefunden." - -#: ../../mod/admin.php:1152 -msgid "Screenshot" -msgstr "Bildschirmfoto" - -#: ../../mod/admin.php:1200 -msgid "[Experimental]" -msgstr "[Experimentell]" - -#: ../../mod/admin.php:1201 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" - -#: ../../mod/admin.php:1228 -msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." - -#: ../../mod/admin.php:1284 -msgid "Clear" -msgstr "Leeren" - -#: ../../mod/admin.php:1290 -msgid "Debugging" -msgstr "Debugging" - -#: ../../mod/admin.php:1291 -msgid "Log file" -msgstr "Protokolldatei" - -#: ../../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/admin.php:1292 -msgid "Log level" -msgstr "Protokollstufe" - -#: ../../mod/admin.php:1339 -msgid "New Profile Field" -msgstr "Neues Profilfeld" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Field nickname" -msgstr "Kurzname für das Feld" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "System name of field" -msgstr "Systemname des Feldes" - -#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 -msgid "Input type" -msgstr "Art des Inhalts" - -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Field Name" -msgstr "Feldname" - -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Label on profile pages" -msgstr "Bezeichnung auf Profilseiten" - -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Help text" -msgstr "Hilfetext" - -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Additional info (optional)" -msgstr "Zusätzliche Informationen (optional)" - -#: ../../mod/admin.php:1354 -msgid "Field definition not found" -msgstr "Feld-Definition nicht gefunden" - -#: ../../mod/admin.php:1360 -msgid "Edit Profile Field" -msgstr "Profilfeld bearbeiten" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." - -#: ../../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/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/regmod.php:11 -msgid "Please login." -msgstr "Bitte melde dich an." - -#: ../../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/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Dieses Konto löschen" - -#: ../../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/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" - -#: ../../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/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/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/wall_upload.php:35 -msgid "Wall Photos" -msgstr "Wall Fotos" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" - -#: ../../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/match.php:61 -msgid "is interested in:" -msgstr "interessiert sich für:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - G:i" - -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menü-Element aktualisiert." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menü-Bestandteil hinzugefügt." - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Menü-Bestandteile verwalten" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Neues Menü-Bestandteil" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Link Text" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL des Links" - -#: ../../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/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../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/mitem.php:181 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - -#: ../../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/vote.php:97 -msgid "Total votes" -msgstr "Stimmen gesamt" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Durchschnittliche Bewertung" - -#: ../../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/removeme.php:57 -msgid "Remove This Channel" -msgstr "Diesen Kanal löschen" - -#: ../../mod/removeme.php:58 -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" - -#: ../../mod/removeme.php:60 -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" - -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanal löschen" - -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hilfe zu dieser Funktion" - -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layout-Name" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." - -#: ../../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/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Ungültige Anfrage." - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "Sache" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." - -#: ../../mod/like.php:228 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." - -#: ../../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/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/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/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/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/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/like.php:481 -msgid "Action completed." -msgstr "Aktion durchgeführt." - -#: ../../mod/like.php:482 -msgid "Thank you." -msgstr "Vielen Dank." - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Konnte den Empfänger nicht finden." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." - -#: ../../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/mail.php:139 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Nachricht widerrufen." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "An:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Betreff:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Absenden" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Nachricht nicht gefunden." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Nachricht widerrufen" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Private Unterhaltung" - -#: ../../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/mail.php:342 -msgid "Send Reply" -msgstr "Antwort senden" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Verwerfen" - -#: ../../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: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/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../mod/photos.php:159 ../../mod/photos.php:924 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" - -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." - -#: ../../mod/photos.php:523 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." - -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." - -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: ../../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/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/photos.php:556 -msgid "Do not show a status post for this upload" -msgstr "Keine Statusnachricht für diesen Upload anzeigen" - -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../mod/photos.php:625 ../../mod/photos.php:1149 -#: ../../mod/photos.php:1165 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" - -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" - -#: ../../mod/photos.php:675 ../../mod/photos.php:1197 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../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/photos.php:751 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../mod/photos.php:903 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../mod/photos.php:905 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../mod/photos.php:906 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../mod/photos.php:913 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../mod/photos.php:915 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../mod/photos.php:919 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../mod/photos.php:922 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" - -#: ../../mod/photos.php:1114 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../mod/photos.php:1203 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../mod/photos.php:1226 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" - -#: ../../mod/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." - -#: ../../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/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." - -#: ../../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/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/register.php:126 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: ../../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/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrierung auf einem anderen, angeschlossenen Server" - -#: ../../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/register.php:185 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" - -#: ../../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/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/register.php:213 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Passwort" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" - -#: ../../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/rmagic.php:38 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authentifizieren" - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Umfrage" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Ergebnisse" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Keine Dienstklassenbeschränkungen gefunden." - -#: ../../mod/sharedwithme.php:99 -msgid "Files: shared with me" -msgstr "Dateien, die mit mir geteilt wurden" - -#: ../../mod/sharedwithme.php:103 -msgid "Remove all files" -msgstr "Alle Dateien löschen" - -#: ../../mod/sharedwithme.php:104 -msgid "Remove this file" -msgstr "Diese Datei löschen" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Standard-Schema" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 #: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "Theme-Einstellungen" -#: ../../view/theme/apw/php/config.php:260 #: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" -msgstr "Schema" - -#: ../../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" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Schriftart" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Icon-Set" - -#: ../../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)" - -#: ../../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)" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Farbe der Schatten (Voreinstellung #000)" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Ecken-Radius (Voreinstellung 5px)" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Zeilenhöhe in Beiträgen und Kommentaren" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Hintergrundbild" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Hintergrunddatei" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Hintergrundfarbe" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Hintergrundbild für die Section" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Hintergrundfarbe für die Section" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Farbe für Beiträge – Hex benutzen" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Farbe für Links – Hex benutzen" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Maximale Breite von Beiträgen (Voreinstellung 400px)" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Minimale Breite von Beiträgen (Voreinstellung 240px)" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Breite des \"generic content wrapper\" (Voreinstellung 48%)" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Schriftfarbe – Hex benutzen" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Größe des Hintergrund-Elements" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Deckkraft der Beiträge" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Nur Beitragsvorschau anzeigen" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Zeige die Seitenleiste auf der Kanal-Seite" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Farbe der Navigationsleiste" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Beitragsfluss" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Linker Rand des Section Elements" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Rechter Rand des Section Elements" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Breite der Section" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Linker Rand des Aside-Elements" - -#: ../../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:84 -msgid "Light (Red Matrix default)" -msgstr "Hell (RedMatrix-Voreinstellung)" +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,79 +5,429 @@ 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["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"; +$a->strings["Schedule Inbox"] = "Posteingang für überwachte Kalender"; +$a->strings["Schedule Outbox"] = "Postausgang für überwachte Kalender"; +$a->strings["Unknown"] = "Unbekannt"; +$a->strings["%1\$s used"] = "%1\$s verwendet"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s von %2\$s verwendet (%3\$s%)"; +$a->strings["Files"] = "Dateien"; +$a->strings["Total"] = "Summe"; +$a->strings["Shared"] = "Geteilt"; +$a->strings["Create"] = "Erstelle"; +$a->strings["Upload"] = "Hochladen"; +$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["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"; +$a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können"; +$a->strings["Advanced Profiles"] = "Erweiterte Profile"; +$a->strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; +$a->strings["Profile Import/Export"] = "Profil-Import/Export"; +$a->strings["Save and load profile details across sites/channels"] = "Speichere Dein Profil, um es in einen anderen Kanal zu importieren"; +$a->strings["Web Pages"] = "Webseiten"; +$a->strings["Provide managed web pages on your channel"] = "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"; +$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["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"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; +$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["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["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"; +$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"; +$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"; +$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["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"; +$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[" 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["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["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"; +$a->strings["__ctx:title__ Agree"] = "Zustimmungen"; +$a->strings["__ctx:title__ Disagree"] = "Ablehnungen"; +$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["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( + 0 => "%2\$d Person gefällt das.", + 1 => "%2\$d Leuten gefällt das.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "%2\$d Person gefällt das nicht.", + 1 => "%2\$d Leuten gefällt das nicht.", +); +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => ", und %d andere", +); +$a->strings["%s like this."] = "%s gefällt das."; +$a->strings["%s don't like this."] = "%s gefällt das nicht."; +$a->strings["Visible to everybody"] = "Sichtbar für jeden"; +$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; +$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; +$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; +$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 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"; +$a->strings["attach file"] = "Datei anfügen"; +$a->strings["Insert web link"] = "Link einfügen"; +$a->strings["web link"] = "Web-Link"; +$a->strings["Insert video link"] = "Video-Link einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Link einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Standort"; +$a->strings["set location"] = "Standort"; +$a->strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +$a->strings["Clear browser location"] = "Browser-Standort löschen"; +$a->strings["clear location"] = "Standort löschen"; +$a->strings["Title (optional)"] = "Titel (optional)"; +$a->strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +$a->strings["Permission settings"] = "Berechtigungs-Einstellungen"; +$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"; +$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; +$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"; +$a->strings["Starred"] = "Markiert"; +$a->strings["Favourite Posts"] = "Markierte Beiträge"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; +$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", +); +$a->strings["__ctx:noun__ Not Attending"] = array( + 0 => "Absage", + 1 => "Absagen", +); +$a->strings["__ctx:noun__ Undecided"] = array( + 0 => " Unentschlossen", + 1 => "Unentschlossene", +); +$a->strings["__ctx:noun__ Agree"] = array( + 0 => "Zustimmung", + 1 => "Zustimmungen", +); +$a->strings["__ctx:noun__ Disagree"] = array( + 0 => "Ablehnung", + 1 => "Ablehnungen", +); +$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["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["\$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 "; @@ -116,6 +466,10 @@ $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"; @@ -129,8 +483,8 @@ $a->strings["%d Connection"] = array( ); $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"; @@ -162,46 +516,29 @@ $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["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["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["Design Tools"] = "Gestaltungswerkzeuge"; $a->strings["Blocks"] = "Blöcke"; $a->strings["Menus"] = "Menüs"; $a->strings["Layouts"] = "Layouts"; $a->strings["Pages"] = "Seiten"; -$a->strings["Collection"] = "Ordner"; +$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"; @@ -216,63 +553,188 @@ $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["parent"] = "Übergeordnetes Verzeichnis"; -$a->strings["Principal"] = "Prinzipal"; -$a->strings["Addressbook"] = "Adressbuch"; -$a->strings["Calendar"] = "Kalender"; -$a->strings["Schedule Inbox"] = "Posteingang für überwachte Kalender"; -$a->strings["Schedule Outbox"] = "Postausgang für überwachte Kalender"; -$a->strings["Unknown"] = "Unbekannt"; -$a->strings["%1\$s used"] = "%1\$s verwendet"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s von %2\$s verwendet (%3\$s%)"; -$a->strings["Files"] = "Dateien"; -$a->strings["Total"] = "Summe"; -$a->strings["Shared"] = "Geteilt"; -$a->strings["Create"] = "Erstelle"; -$a->strings["Upload"] = "Hochladen"; -$a->strings["Name"] = "Name"; -$a->strings["Type"] = "Typ"; -$a->strings["Size"] = "Größe"; -$a->strings["Last Modified"] = "Zuletzt geändert"; -$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["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["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["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"; @@ -283,96 +745,12 @@ $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["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"; -$a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können"; -$a->strings["Advanced Profiles"] = "Erweiterte Profile"; -$a->strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; -$a->strings["Profile Import/Export"] = "Profil-Import/Export"; -$a->strings["Save and load profile details across sites/channels"] = "Speichere Dein Profil, um es in einen anderen Kanal zu importieren"; -$a->strings["Web Pages"] = "Webseiten"; -$a->strings["Provide managed web pages on your channel"] = "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"; -$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["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"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; -$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["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["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"; -$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["Suggest Channels"] = "Kanäle vorschlagen"; -$a->strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; -$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; -$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["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"; -$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["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["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["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"; @@ -392,7 +770,6 @@ $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:"; @@ -405,7 +782,6 @@ $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"; @@ -436,111 +812,6 @@ $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"; @@ -548,17 +819,10 @@ $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)"; @@ -573,41 +837,16 @@ $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["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["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["Insert Link"] = "Link einfügen"; $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."; @@ -624,321 +863,253 @@ $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["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["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["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["channel"] = "Kanal"; -$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["__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"; -$a->strings["__ctx:title__ Agree"] = "Zustimmungen"; -$a->strings["__ctx:title__ Disagree"] = "Ablehnungen"; -$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["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Gespeichert unter:"; -$a->strings["View in context"] = "Im Zusammenhang anschauen"; -$a->strings["remove"] = "lösche"; -$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 Photos"] = "Fotos ansehen"; -$a->strings["Matrix Activity"] = "Matrix-Aktivität"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Send PM"] = "Sende PN"; -$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( - 0 => "%2\$d Person gefällt das.", - 1 => "%2\$d Leuten gefällt das.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "%2\$d Person gefällt das nicht.", - 1 => "%2\$d Leuten gefällt das nicht.", -); -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = array( - 0 => "", - 1 => ", und %d andere", -); -$a->strings["%s like this."] = "%s gefällt das."; -$a->strings["%s don't like this."] = "%s gefällt das nicht."; -$a->strings["Visible to everybody"] = "Sichtbar für jeden"; -$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; -$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; -$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; -$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["Share"] = "Teilen"; -$a->strings["Page link title"] = "Seitentitel-Link"; -$a->strings["Post as"] = "Veröffentlichen als"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["upload photo"] = "Foto hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anfügen"; -$a->strings["Insert web link"] = "Link einfügen"; -$a->strings["web link"] = "Web-Link"; -$a->strings["Insert video link"] = "Video-Link einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Link einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Standort"; -$a->strings["set location"] = "Standort"; -$a->strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; -$a->strings["Clear browser location"] = "Browser-Standort löschen"; -$a->strings["clear location"] = "Standort löschen"; -$a->strings["Title (optional)"] = "Titel (optional)"; -$a->strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -$a->strings["Permission settings"] = "Berechtigungs-Einstellungen"; -$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["OK"] = "Ok"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["Discover"] = "Entdecken"; -$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; -$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["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"; -$a->strings["Starred"] = "Markiert"; -$a->strings["Favourite Posts"] = "Markierte Beiträge"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; -$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["Files and Storage"] = "Dateien und Speicher"; -$a->strings["Chatrooms"] = "Chaträume"; -$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -$a->strings["Manage Webpages"] = "Webseiten verwalten"; -$a->strings["__ctx:noun__ Attending"] = array( - 0 => "Zusage", - 1 => "Zusagen", -); -$a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "Absage", - 1 => "Absagen", -); -$a->strings["__ctx:noun__ Undecided"] = array( - 0 => " Unentschlossen", - 1 => "Unentschlossene", -); -$a->strings["__ctx:noun__ Agree"] = array( - 0 => "Zustimmung", - 1 => "Zustimmungen", -); -$a->strings["__ctx:noun__ Disagree"] = array( - 0 => "Ablehnung", - 1 => "Ablehnungen", -); -$a->strings["__ctx:noun__ Abstain"] = array( - 0 => "Enthaltung", - 1 => "Enthaltungen", -); -$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["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["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["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["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["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 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 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["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["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."; @@ -946,17 +1117,7 @@ $a->strings["Failed to update connection record."] = "Konnte den Verbindungseint $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"; @@ -966,102 +1127,434 @@ $a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträg $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["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 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["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["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["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["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["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["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["Connection: "] = "Verbindung:"; $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["# 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 accounts"] = "Registrierte Konten"; +$a->strings["Pending registrations"] = "Ausstehende Registrierungen"; +$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"; +$a->strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; +$a->strings["My site has paid access only"] = "Mein Server erlaubt nur bezahlten Zugang"; +$a->strings["My site has free access only"] = "Mein Server erlaubt ausschließlich freien Zugang"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; +$a->strings["Registration"] = "Registrierung"; +$a->strings["File upload"] = "Dateiupload"; +$a->strings["Policies"] = "Richtlinien"; +$a->strings["Site name"] = "Seitenname"; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Administrator Information"] = "Administrator-Informationen"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; +$a->strings["System language"] = "System-Sprache"; +$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["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"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; +$a->strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; +$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"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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."; +$a->strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; +$a->strings["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."] = "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."; +$a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."; +$a->strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; +$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; +$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["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."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; +$a->strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; +$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["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 account deleted"] = array( + 0 => "%s Konto gelöscht", + 1 => "%s Konten gelöscht", +); +$a->strings["Account not found"] = "Konto nicht gefunden"; +$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["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 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' 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."; +$a->strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; +$a->strings["Disable"] = "Deaktivieren"; +$a->strings["Enable"] = "Aktivieren"; +$a->strings["Toggle"] = "Umschalten"; +$a->strings["Author: "] = "Autor: "; +$a->strings["Maintainer: "] = "Betreuer:"; +$a->strings["No themes found."] = "Keine Theme gefunden."; +$a->strings["Screenshot"] = "Bildschirmfoto"; +$a->strings["[Experimental]"] = "[Experimentell]"; +$a->strings["[Unsupported]"] = "[Nicht unterstützt]"; +$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; +$a->strings["Clear"] = "Leeren"; +$a->strings["Debugging"] = "Debugging"; +$a->strings["Log file"] = "Protokolldatei"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."; +$a->strings["Log level"] = "Protokollstufe"; +$a->strings["New Profile Field"] = "Neues Profilfeld"; +$a->strings["Field nickname"] = "Kurzname für das Feld"; +$a->strings["System name of field"] = "Systemname des Feldes"; +$a->strings["Input type"] = "Art des Inhalts"; +$a->strings["Field Name"] = "Feldname"; +$a->strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; +$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["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."; +$a->strings["Or import an existing channel from another location"] = "Oder importiere einen bestehenden Kanal von einem anderen Server"; +$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["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"; +$a->strings["Delete Photo"] = "Foto löschen"; +$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."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; +$a->strings["Upload Photos"] = "Fotos hochladen"; +$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"; +$a->strings["Show Oldest First"] = "Älteste zuerst anzeigen"; +$a->strings["View Photo"] = "Foto ansehen"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; +$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["\$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."; @@ -1069,10 +1562,10 @@ $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"; @@ -1083,23 +1576,185 @@ $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"; -$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["%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."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; +$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["Terms of Service"] = "Nutzungsbedingungen"; +$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; +$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["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["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."; @@ -1123,27 +1778,23 @@ $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["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; $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["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 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["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["mobile"] = "mobil"; $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"; @@ -1151,7 +1802,7 @@ $a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktua $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["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"; @@ -1196,7 +1847,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"] = "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"; @@ -1235,13 +1885,49 @@ $a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Se $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["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["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."; @@ -1254,21 +1940,27 @@ $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["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."; @@ -1278,7 +1970,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 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["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"; @@ -1303,6 +1995,9 @@ $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"; @@ -1312,6 +2007,7 @@ $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"; @@ -1322,6 +2018,7 @@ $a->strings["Error: openssl PHP module required but not installed."] = "Fehler: $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."; @@ -1347,229 +2044,11 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $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["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["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["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["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-"; @@ -1584,11 +2063,9 @@ $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"; @@ -1634,410 +2111,20 @@ $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["%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["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["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["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"; -$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["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["Message queues"] = "Nachrichten-Warteschlangen"; -$a->strings["Administration"] = "Administration"; -$a->strings["Summary"] = "Zusammenfassung"; -$a->strings["Registered users"] = "Registrierte Benutzer"; -$a->strings["Pending registrations"] = "Ausstehende Registrierungen"; -$a->strings["Version"] = "Version"; -$a->strings["Active plugins"] = "Aktive Plug-Ins"; -$a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; -$a->strings["experimental"] = "experimentell"; -$a->strings["unsupported"] = "nicht unterstützt"; -$a->strings["Yes - with approval"] = "Ja - mit Zustimmung"; -$a->strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; -$a->strings["My site has paid access only"] = "Mein Server erlaubt nur bezahlten Zugang"; -$a->strings["My site has free access only"] = "Mein Server erlaubt ausschließlich freien Zugang"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; -$a->strings["Registration"] = "Registrierung"; -$a->strings["File upload"] = "Dateiupload"; -$a->strings["Policies"] = "Richtlinien"; -$a->strings["Site name"] = "Seitenname"; -$a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["Administrator Information"] = "Administrator-Informationen"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; -$a->strings["System language"] = "System-Sprache"; -$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"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; -$a->strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; -$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["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"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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."; -$a->strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; -$a->strings["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."] = "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."; -$a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."; -$a->strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; -$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; -$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["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["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["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["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."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; -$a->strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; -$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["%s user deleted"] = array( - 0 => "%s Nutzer gelöscht", - 1 => "%s Nutzer 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["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["%s channel censored/uncensored"] = array( - 0 => "%s Kanal gesperrt/freigegeben", - 1 => "%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["Censor"] = "Sperren"; -$a->strings["Uncensor"] = "Freigeben"; -$a->strings["UID"] = "UID"; -$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."; -$a->strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; -$a->strings["Disable"] = "Deaktivieren"; -$a->strings["Enable"] = "Aktivieren"; -$a->strings["Toggle"] = "Umschalten"; -$a->strings["Author: "] = "Autor: "; -$a->strings["Maintainer: "] = "Betreuer:"; -$a->strings["No themes found."] = "Keine Theme gefunden."; -$a->strings["Screenshot"] = "Bildschirmfoto"; -$a->strings["[Experimental]"] = "[Experimentell]"; -$a->strings["[Unsupported]"] = "[Nicht unterstützt]"; -$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; -$a->strings["Clear"] = "Leeren"; -$a->strings["Debugging"] = "Debugging"; -$a->strings["Log file"] = "Protokolldatei"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."; -$a->strings["Log level"] = "Protokollstufe"; -$a->strings["New Profile Field"] = "Neues Profilfeld"; -$a->strings["Field nickname"] = "Kurzname für das Feld"; -$a->strings["System name of field"] = "Systemname des Feldes"; -$a->strings["Input type"] = "Art des Inhalts"; -$a->strings["Field Name"] = "Feldname"; -$a->strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; -$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["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["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."; -$a->strings["Or import an existing channel from another location"] = "Oder importiere einen bestehenden Kanal von einem anderen Server"; -$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["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["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."; -$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["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"; -$a->strings["Show Oldest First"] = "Älteste zuerst anzeigen"; -$a->strings["View Photo"] = "Foto ansehen"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; -$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["View Full Size"] = "In voller Größe anzeigen"; -$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["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["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["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."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; -$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["Terms of Service"] = "Nutzungsbedingungen"; -$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; -$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["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["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; -$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["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"; diff --git a/view/de/messages.po b/view/de/messages.po index ef27fd162..460fd764b 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -15,105 +15,115 @@ # 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: 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" -"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" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:142 +#: ../../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/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 +#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 +#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 +#: ../../mod/photos.php:92 ../../mod/photos.php:637 msgid "Profile Photos" msgstr "Profilfotos" -#: ../../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/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/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/contact_selectors.php:56 +msgid "Frequently" +msgstr "Häufig" -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" -#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "Foto speichern schlug fehl" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Täglich" -#: ../../include/photos.php:355 ../../include/conversation.php:1589 -msgid "Photo Albums" -msgstr "Fotoalben" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" -#: ../../include/photos.php:359 -msgid "Upload New Photos" -msgstr "Lade neue Fotos hoch" +#: ../../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/notify.php:23 msgid "created a new post" @@ -124,879 +134,322 @@ msgstr "Neuer Beitrag wurde erzeugt" msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." +msgstr "Kein Benutzername in der Importdatei gefunden." + +#: ../../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/Import/import_diaspora.php:140 ../../mod/import.php:562 +msgid "Import completed." +msgstr "Import abgeschlossen." + +#: ../../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/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Standard-Sammlung für neue Kontakte" + +#: ../../include/group.php:254 ../../mod/admin.php:831 +msgid "All Channels" +msgstr "Alle Kanäle" + +#: ../../include/group.php:276 +msgid "edit" +msgstr "Bearbeiten" + +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Sammlungen" + +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Sammlung bearbeiten" + +#: ../../include/group.php:300 +msgid "Add new collection" +msgstr "Neue Sammlung hinzufügen" + +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanäle, die nicht in einer Sammlung sind" + +#: ../../include/group.php:303 ../../include/widgets.php:275 +msgid "add" +msgstr "hinzufügen" + +#: ../../include/account.php:27 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" + +#: ../../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/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/account.php:67 +msgid "An invitation is required." +msgstr "Eine Einladung ist erforderlich." + +#: ../../include/account.php:71 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden" + +#: ../../include/account.php:121 +msgid "Please enter the required information." +msgstr "Bitte gib die erforderlichen Informationen ein." + +#: ../../include/account.php:188 +msgid "Failed to store account information." +msgstr "Speichern der Account-Informationen fehlgeschlagen" + +#: ../../include/account.php:246 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" + +#: ../../include/account.php:312 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" + +#: ../../include/account.php:314 ../../include/account.php:341 +#: ../../include/account.php:401 ../../include/network.php:1632 +msgid "Administrator" +msgstr "Administrator" + +#: ../../include/account.php:336 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" + +#: ../../include/account.php:339 ../../include/account.php:399 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" + +#: ../../include/account.php:408 +msgid "Account approved." +msgstr "Account bestätigt." + +#: ../../include/account.php:447 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s widerrufen" + +#: ../../include/account.php:492 +msgid "Account verified. Please login." +msgstr "Konto geprüft. Bitte melde Dich an!" + +#: ../../include/account.php:705 ../../include/account.php:707 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." + +#: ../../include/account.php:713 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." + +#: ../../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/datetime.php:48 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: ../../include/datetime.php:132 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" + +#: ../../include/datetime.php:235 ../../mod/events.php:672 +#: ../../mod/appman.php:91 ../../mod/appman.php:92 +msgid "Required" +msgstr "Erforderlich" + +#: ../../include/datetime.php:262 ../../boot.php:2353 +msgid "never" +msgstr "Nie" + +#: ../../include/datetime.php:268 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" + +#: ../../include/datetime.php:271 +msgid "year" +msgstr "Jahr" + +#: ../../include/datetime.php:271 +msgid "years" +msgstr "Jahre" + +#: ../../include/datetime.php:272 +msgid "month" +msgstr "Monat" + +#: ../../include/datetime.php:272 +msgid "months" +msgstr "Monate" + +#: ../../include/datetime.php:273 +msgid "week" +msgstr "Woche" + +#: ../../include/datetime.php:273 +msgid "weeks" +msgstr "Wochen" + +#: ../../include/datetime.php:274 +msgid "day" +msgstr "Tag" + +#: ../../include/datetime.php:274 +msgid "days" +msgstr "Tage" + +#: ../../include/datetime.php:275 +msgid "hour" +msgstr "Stunde" + +#: ../../include/datetime.php:275 +msgid "hours" +msgstr "Stunden" + +#: ../../include/datetime.php:276 +msgid "minute" +msgstr "Minute" + +#: ../../include/datetime.php:276 +msgid "minutes" +msgstr "Minuten" + +#: ../../include/datetime.php:277 +msgid "second" +msgstr "Sekunde" + +#: ../../include/datetime.php:277 +msgid "seconds" +msgstr "Sekunden" + +#: ../../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/datetime.php:519 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" + +#: ../../include/datetime.php:520 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" + +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Sicherer Modus" + +#: ../../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/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/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Nur diese Website" + #: ../../include/page_widgets.php:6 msgid "New Page" msgstr "Neue Seite" -#: ../../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/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 +#: ../../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:1152 ../../mod/events.php:651 -#: ../../mod/webpages.php:166 ../../mod/photos.php:964 +#: ../../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/page_widgets.php:41 ../../mod/webpages.php:167 +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 msgid "Actions" msgstr "Aktionen" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 msgid "Page Link" msgstr "Seiten-Link" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 +#: ../../include/page_widgets.php:43 msgid "Title" msgstr "Titel" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 +#: ../../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/page_widgets.php:45 ../../mod/webpages.php:171 +#: ../../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/widgets.php:35 ../../include/taxonomy.php:255 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorien" +#: ../../include/api.php:1234 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apps" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1494 -msgid "Personal" -msgstr "Persönlich" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persönliche App erstellen" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persönliche App bearbeiten" - -#: ../../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/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" - -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../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/widgets.php:172 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notizen" - -#: ../../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/widgets.php:264 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../include/widgets.php:272 ../../include/features.php:72 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../include/widgets.php:273 ../../include/group.php:303 -msgid "add" -msgstr "hinzufügen" - -#: ../../include/widgets.php:302 ../../include/features.php:84 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:347 -msgid "Archives" -msgstr "Archive" - -#: ../../include/widgets.php:425 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:426 ../../mod/connedit.php:563 -msgid "Me" -msgstr "Ich" - -#: ../../include/widgets.php:427 ../../mod/connedit.php:566 -msgid "Best Friends" -msgstr "Beste Freunde" - -#: ../../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/widgets.php:429 -msgid "Co-workers" -msgstr "Kollegen" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:568 -msgid "Former Friends" -msgstr "ehem. Freunde" - -#: ../../include/widgets.php:431 ../../mod/connedit.php:569 -msgid "Acquaintances" -msgstr "Bekannte" - -#: ../../include/widgets.php:432 -msgid "Everybody" -msgstr "Jeder" - -#: ../../include/widgets.php:466 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../include/widgets.php:472 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../include/widgets.php:478 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:484 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" - -#: ../../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/widgets.php:511 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "Standardzugriffsrechte für neue Verbindungen:" - -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../include/widgets.php:527 ../../include/features.php:61 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanal-Quellen" - -#: ../../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/widgets.php:548 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../include/widgets.php:551 -msgid "Check Mail" -msgstr "E-Mails abrufen" - -#: ../../include/widgets.php:556 ../../include/nav.php:201 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/widgets.php:634 -msgid "Chat Rooms" -msgstr "Chaträume" - -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" -msgstr "Foto/Bild" - -#: ../../include/widgets.php:954 ../../include/widgets.php:956 -msgid "Rate Me" -msgstr "Bewerte mich" - -#: ../../include/widgets.php:960 -msgid "View Ratings" -msgstr "Bewertungen ansehen" - -#: ../../include/widgets.php:971 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Red Matrix Benachrichtigung" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Danke." - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" - -#: ../../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/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "eine private Nachricht" - -#: ../../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/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/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/enotify.php:161 -#, 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/enotify.php:172 -#, 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/enotify.php:173 -#, 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/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/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" - -#: ../../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/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/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" - -#: ../../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/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/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" - -#: ../../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/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/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" - -#: ../../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/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/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Benachrichtigung] Vorstellung erhalten" - -#: ../../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/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/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/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/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" - -#: ../../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/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 hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Name:" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" - -#: ../../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/enotify.php:499 -msgid "[Red:Notify]" -msgstr "[Red:Benachrichtigung]" - -#: ../../include/text.php:320 -msgid "prev" -msgstr "vorherige" - -#: ../../include/text.php:322 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:351 -msgid "last" -msgstr "letzte" - -#: ../../include/text.php:354 -msgid "next" -msgstr "nächste" - -#: ../../include/text.php:366 -msgid "older" -msgstr "älter" - -#: ../../include/text.php:368 -msgid "newer" -msgstr "neuer" - -#: ../../include/text.php:751 -msgid "No connections" -msgstr "Keine Verbindungen" - -#: ../../include/text.php:767 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Verbindung" -msgstr[1] "%d Verbindungen" - -#: ../../include/text.php:780 ../../mod/viewconnections.php:86 -msgid "View Connections" -msgstr "Verbindungen anzeigen" - -#: ../../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/text.php:916 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:916 ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" - -#: ../../include/text.php:917 -msgid "ping" -msgstr "anpingen" - -#: ../../include/text.php:917 -msgid "pinged" -msgstr "pingte" - -#: ../../include/text.php:918 -msgid "prod" -msgstr "knuffen" - -#: ../../include/text.php:918 -msgid "prodded" -msgstr "knuffte" - -#: ../../include/text.php:919 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:919 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:920 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:920 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:921 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:921 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:931 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:932 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:933 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:934 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:935 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:936 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:937 -msgid "stupified" -msgstr "verblüfft" - -#: ../../include/text.php:938 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:939 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:940 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:941 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:942 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:943 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:944 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:945 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:946 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:947 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:948 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:949 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:950 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:951 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1117 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1117 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1117 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../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" +#: ../../include/comanche.php:34 ../../mod/admin.php:390 +#: ../../view/theme/apw/php/config.php:185 +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 +#: ../../mod/photos.php:980 ../../mod/photos.php:1098 msgid "Comment" msgstr "Kommentar" @@ -1024,7 +477,7 @@ msgstr "Kennwort zu kurz" 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:40 msgid "everybody" msgstr "alle" @@ -1053,6 +506,7 @@ msgid "Rate This Channel (this is public)" msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" #: ../../include/js_strings.php:20 ../../mod/rate.php:156 +#: ../../mod/connedit.php:683 msgid "Rating" msgstr "Bewertung" @@ -1061,191 +515,558 @@ 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/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:155 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:156 #: ../../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 +#: ../../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/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Bitte geben Sie eine Link-URL ein" + #: ../../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/js_strings.php:26 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:27 msgid "timeago.prefixFromNow" -msgstr " " +msgstr "timeago.prefixFromNow" -#: ../../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 +#: ../../include/text.php:391 +msgid "prev" +msgstr "vorherige" + +#: ../../include/text.php:393 +msgid "first" +msgstr "erste" + +#: ../../include/text.php:422 +msgid "last" +msgstr "letzte" + +#: ../../include/text.php:425 +msgid "next" +msgstr "nächste" + +#: ../../include/text.php:435 +msgid "older" +msgstr "älter" + +#: ../../include/text.php:437 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:830 +msgid "No connections" +msgstr "Keine Verbindungen" + +#: ../../include/text.php:844 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d Verbindung" +msgstr[1] "%d Verbindungen" + +#: ../../include/text.php:857 ../../mod/viewconnections.php:104 +msgid "View Connections" +msgstr "Verbindungen anzeigen" + +#: ../../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/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/text.php:990 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:990 ../../include/conversation.php:243 +msgid "poked" +msgstr "stupste" + +#: ../../include/text.php:991 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:991 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:992 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:992 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:993 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:993 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:994 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:994 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:995 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:995 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:1005 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:1006 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:1007 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:1008 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:1009 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:1010 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:1011 +msgid "stupified" +msgstr "verblüfft" + +#: ../../include/text.php:1012 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:1013 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:1014 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:1015 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:1016 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:1017 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:1018 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:1019 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:1020 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:1021 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:1022 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:1023 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:1024 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:1025 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1197 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1197 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1197 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1197 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1197 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1197 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1197 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1201 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1201 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1201 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1201 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1201 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1201 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1201 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1201 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1201 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1201 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1201 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1201 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1306 +msgid "unknown.???" +msgstr "unbekannt.???" + +#: ../../include/text.php:1307 +msgid "bytes" +msgstr "Bytes" + +#: ../../include/text.php:1343 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1418 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1494 ../../include/text.php:1505 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" + +#: ../../include/text.php:1661 ../../mod/events.php:474 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../include/text.php:1682 ../../include/text.php:1753 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1690 +msgid "Page layout" +msgstr "Seitengestaltung" + +#: ../../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/text.php:1731 +msgid "Page content type" +msgstr "Art des Seiteninhalts" + +#: ../../include/text.php:1765 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../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/text.php:1887 ../../include/conversation.php:123 +#: ../../mod/like.php:351 ../../mod/tagger.php:47 +msgid "event" +msgstr "Termin" + +#: ../../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/text.php:1892 ../../include/conversation.php:150 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "Kommentar" + +#: ../../include/text.php:1897 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2192 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" + +#: ../../include/text.php:2195 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../include/text.php:2196 ../../mod/menu.php:101 +msgid "Menus" +msgstr "Menüs" + +#: ../../include/text.php:2197 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Gestaltungen" + +#: ../../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:265 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../include/RedDAV/RedBrowser.php:133 +#: ../../include/RedDAV/RedBrowser.php:134 msgid "Principal" msgstr "Prinzipal" -#: ../../include/RedDAV/RedBrowser.php:136 +#: ../../include/RedDAV/RedBrowser.php:137 msgid "Addressbook" msgstr "Adressbuch" -#: ../../include/RedDAV/RedBrowser.php:139 +#: ../../include/RedDAV/RedBrowser.php:140 msgid "Calendar" msgstr "Kalender" -#: ../../include/RedDAV/RedBrowser.php:142 +#: ../../include/RedDAV/RedBrowser.php:143 msgid "Schedule Inbox" msgstr "Posteingang für überwachte Kalender" -#: ../../include/RedDAV/RedBrowser.php:145 +#: ../../include/RedDAV/RedBrowser.php:146 msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../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 +#: ../../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" msgstr "Unbekannt" -#: ../../include/RedDAV/RedBrowser.php:225 +#: ../../include/RedDAV/RedBrowser.php:227 #, php-format msgid "%1$s used" msgstr "%1$s verwendet" -#: ../../include/RedDAV/RedBrowser.php:230 +#: ../../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/RedDAV/RedBrowser.php:249 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1595 +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 +#: ../../include/conversation.php:1620 ../../include/apps.php:135 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Dateien" -#: ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/RedDAV/RedBrowser.php:253 msgid "Total" msgstr "Summe" -#: ../../include/RedDAV/RedBrowser.php:253 +#: ../../include/RedDAV/RedBrowser.php:255 msgid "Shared" msgstr "Geteilt" -#: ../../include/RedDAV/RedBrowser.php:254 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:100 -#: ../../mod/mitem.php:169 ../../mod/new_channel.php:121 +#: ../../include/RedDAV/RedBrowser.php:256 +#: ../../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:255 +#: ../../include/RedDAV/RedBrowser.php:257 #: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1228 +#: ../../mod/photos.php:718 ../../mod/photos.php:1248 msgid "Upload" msgstr "Hochladen" -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:585 -#: ../../mod/settings.php:611 ../../mod/admin.php:871 -#: ../../mod/sharedwithme.php:100 +#: ../../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:263 +#: ../../include/RedDAV/RedBrowser.php:262 msgid "Type" msgstr "Typ" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 msgid "Size" msgstr "Größe" -#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 msgid "Last Modified" msgstr "Zuletzt geändert" -#: ../../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 +#: ../../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: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" @@ -1262,54 +1083,32 @@ msgstr "Datei hochladen" msgid "%1$s's bookmarks" msgstr "%1$ss Lesezeichen" -#: ../../include/taxonomy.php:215 ../../include/taxonomy.php:234 -msgid "Tags" -msgstr "Schlagwörter" +#: ../../include/network.php:635 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" -#: ../../include/taxonomy.php:274 -msgid "Keywords" -msgstr "Schlüsselwörter" +#: ../../include/network.php:1585 ../../include/enotify.php:58 +msgid "$Projectname Notification" +msgstr "$Projectname-Benachrichtigung" -#: ../../include/taxonomy.php:299 -msgid "have" -msgstr "habe" +#: ../../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/taxonomy.php:299 -msgid "has" -msgstr "hat" +#: ../../include/network.php:1588 ../../include/enotify.php:61 +msgid "Thank You," +msgstr "Danke." -#: ../../include/taxonomy.php:300 -msgid "want" -msgstr "will" +#: ../../include/network.php:1590 ../../include/enotify.php:63 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" -#: ../../include/taxonomy.php:300 -msgid "wants" -msgstr "will" - -#: ../../include/taxonomy.php:301 ../../include/ItemObject.php:254 -msgid "like" -msgstr "mag" - -#: ../../include/taxonomy.php:301 -msgid "likes" -msgstr "gefällt" - -#: ../../include/taxonomy.php:302 ../../include/ItemObject.php:255 -msgid "dislike" -msgstr "verurteile" - -#: ../../include/taxonomy.php:302 -msgid "dislikes" -msgstr "missfällt" - -#: ../../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/network.php:1646 +msgid "No Subject" +msgstr "Kein Betreff" #: ../../include/features.php:38 msgid "General Features" @@ -1361,7 +1160,7 @@ msgstr "Private Notizen" #: ../../include/features.php:45 msgid "Enables a tool to store notes and reminders" -msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren" +msgstr "Aktiviert ein Werkzeug zum Speichern von Notizen und Erinnerungen" #: ../../include/features.php:46 msgid "Navigation Channel Select" @@ -1371,549 +1170,593 @@ msgstr "Kanal-Auswahl in der Navigationsleiste" msgid "Change channels directly from within the navigation dropdown menu" msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" -#: ../../include/features.php:50 -msgid "Extended Identity Sharing" -msgstr "Erweitertes Teilen von Identitäten" +#: ../../include/features.php:47 +msgid "Photo Location" +msgstr "Aufnahmeort" -#: ../../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/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/features.php:51 +#: ../../include/features.php:49 msgid "Expert Mode" msgstr "Expertenmodus" -#: ../../include/features.php:51 +#: ../../include/features.php:49 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" -#: ../../include/features.php:52 +#: ../../include/features.php:50 msgid "Premium Channel" msgstr "Premium-Kanal" -#: ../../include/features.php:52 +#: ../../include/features.php:50 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/features.php:57 +#: ../../include/features.php:55 msgid "Post Composition Features" msgstr "Nachbearbeitungsfunktionen" -#: ../../include/features.php:59 +#: ../../include/features.php:57 msgid "Use Markdown" msgstr "Markdown benutzen" -#: ../../include/features.php:59 +#: ../../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/features.php:60 +#: ../../include/features.php:58 msgid "Large Photos" msgstr "Große Fotos" -#: ../../include/features.php:60 +#: ../../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." +msgstr "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist dies deaktiviert, werden kleine Vorschaubilder (320px) angezeigt." -#: ../../include/features.php:61 +#: ../../include/features.php:59 ../../include/widgets.php:548 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanal-Quellen" + +#: ../../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/features.php:62 +#: ../../include/features.php:60 msgid "Even More Encryption" msgstr "Noch mehr Verschlüsselung" -#: ../../include/features.php:62 +#: ../../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/features.php:63 +#: ../../include/features.php:61 msgid "Enable voting tools" msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/features.php:63 +#: ../../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:64 -msgid "Flag Adult Photos" -msgstr "Nicht jugendfreie Fotos markieren" - -#: ../../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/features.php:69 +#: ../../include/features.php:67 msgid "Network and Stream Filtering" msgstr "Netzwerk- und Stream-Filter" -#: ../../include/features.php:70 +#: ../../include/features.php:68 msgid "Search by Date" msgstr "Suche nach Datum" -#: ../../include/features.php:70 +#: ../../include/features.php:68 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/features.php:71 +#: ../../include/features.php:69 msgid "Collections Filter" msgstr "Filter für Sammlung" -#: ../../include/features.php:71 +#: ../../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/features.php:72 +#: ../../include/features.php:70 ../../include/widgets.php:274 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../include/features.php:70 msgid "Save search terms for re-use" msgstr "Suchbegriffe zur Wiederverwendung abspeichern" -#: ../../include/features.php:73 +#: ../../include/features.php:71 msgid "Network Personal Tab" msgstr "Persönlicher Netzwerkreiter" -#: ../../include/features.php:73 +#: ../../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/features.php:74 +#: ../../include/features.php:72 msgid "Network New Tab" msgstr "Netzwerkreiter Neu" -#: ../../include/features.php:74 +#: ../../include/features.php:72 msgid "Enable tab to display all new Network activity" msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" -#: ../../include/features.php:75 +#: ../../include/features.php:73 msgid "Affinity Tool" -msgstr "Beziehungs-Tool" +msgstr "Beziehungswerkzeug" -#: ../../include/features.php:75 +#: ../../include/features.php:73 msgid "Filter stream activity by depth of relationships" msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" -#: ../../include/features.php:76 +#: ../../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:76 +#: ../../include/features.php:75 msgid "Show channel suggestions" msgstr "Kanalvorschläge anzeigen" -#: ../../include/features.php:81 +#: ../../include/features.php:80 msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" +msgstr "Beitrag-/Kommentarwerkzeuge" -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Tagging" msgstr "Verschlagworten" -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Ability to tag existing posts" msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Add categories to your posts" msgstr "Kategorien für Beiträge" -#: ../../include/features.php:84 +#: ../../include/features.php:83 ../../include/widgets.php:304 +#: ../../include/contact_widgets.php:57 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/features.php:83 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht Beiträge" -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Ability to dislike posts/comments" msgstr "„Gefällt mir nicht“ ermöglichen" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:86 +#: ../../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:87 +#: ../../include/features.php:86 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:87 +#: ../../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/auth.php:130 -msgid "Logged out." -msgstr "Ausgeloggt." +#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 +#: ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "Kategorien" -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" +#: ../../include/widgets.php:91 ../../include/nav.php:163 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Apps" -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Login fehlgeschlagen." +#: ../../include/widgets.php:92 +msgid "System" +msgstr "System" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Häufig" +#: ../../include/widgets.php:94 ../../include/conversation.php:1515 +msgid "Personal" +msgstr "Persönlich" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Persönliche App erstellen" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Persönliche App bearbeiten" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Täglich" +#: ../../include/widgets.php:136 ../../include/widgets.php:175 +#: ../../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" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" +#: ../../include/widgets.php:143 ../../mod/connections.php:128 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Mehr anzeigen …" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../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/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 -#: ../../mod/admin.php:740 ../../boot.php:1554 -msgid "Email" -msgstr "E-Mail" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Adresse des Kanals eingeben" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/widgets.php:190 +msgid "Notes" +msgstr "Notizen" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../include/widgets.php:266 +msgid "Remove term" +msgstr "Eintrag löschen" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Alles" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/widgets.php:349 +msgid "Archives" +msgstr "Archive" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/widgets.php:429 ../../mod/connedit.php:583 +msgid "Me" +msgstr "Ich" -#: ../../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/widgets.php:430 ../../mod/connedit.php:584 +msgid "Family" +msgstr "Familie" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standard-Sammlung für neue Kontakte" +#: ../../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:585 +msgid "Friends" +msgstr "Freunde" -#: ../../include/group.php:254 ../../mod/admin.php:740 -msgid "All Channels" -msgstr "Alle Kanäle" +#: ../../include/widgets.php:432 ../../mod/connedit.php:586 +msgid "Acquaintances" +msgstr "Bekannte" -#: ../../include/group.php:276 -msgid "edit" -msgstr "Bearbeiten" +#: ../../include/widgets.php:433 ../../mod/connections.php:91 +#: ../../mod/connections.php:106 ../../mod/connedit.php:587 +msgid "All" +msgstr "Alle" -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Sammlungen" +#: ../../include/widgets.php:452 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Sammlung bearbeiten" +#: ../../include/widgets.php:487 +msgid "Account settings" +msgstr "Kontoeinstellungen" -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Neue Sammlung erzeugen" +#: ../../include/widgets.php:493 +msgid "Channel settings" +msgstr "Kanaleinstellungen" -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" +#: ../../include/widgets.php:499 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" -#: ../../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/widgets.php:505 +msgid "Feature/Addon settings" +msgstr "Funktion-/Addon-Einstellungen" -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" +#: ../../include/widgets.php:511 +msgid "Display settings" +msgstr "Anzeigeeinstellungen" -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Name ist zu lang" +#: ../../include/widgets.php:517 +msgid "Connected apps" +msgstr "Verbundene Apps" -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Keine Account-Kennung" +#: ../../include/widgets.php:523 +msgid "Export channel" +msgstr "Kanal exportieren" -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." +#: ../../include/widgets.php:532 ../../mod/connedit.php:674 +msgid "Connection Default Permissions" +msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." +#: ../../include/widgets.php:540 +msgid "Premium Channel Settings" +msgstr "Premium-Kanaleinstellungen" -#: ../../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/widgets.php:556 ../../include/nav.php:208 +#: ../../include/apps.php:134 ../../mod/admin.php:1079 +#: ../../mod/admin.php:1279 +msgid "Settings" +msgstr "Einstellungen" -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" +#: ../../include/widgets.php:569 ../../mod/message.php:31 +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Nachrichten" -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standard-Profil" +#: ../../include/widgets.php:572 +msgid "Check Mail" +msgstr "E-Mails abrufen" -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/widgets.php:577 ../../include/nav.php:199 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../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/widgets.php:652 +msgid "Chat Rooms" +msgstr "Chaträume" -#: ../../include/identity.php:854 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Profilfoto ändern" +#: ../../include/widgets.php:672 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" -#: ../../include/identity.php:861 -msgid "Profiles" -msgstr "Profile" +#: ../../include/widgets.php:692 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/bearbeiten" +#: ../../include/widgets.php:819 ../../include/widgets.php:877 +msgid "photo/image" +msgstr "Foto/Bild" -#: ../../include/identity.php:862 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" +#: ../../include/widgets.php:972 ../../include/widgets.php:974 +msgid "Rate Me" +msgstr "Bewerte mich" -#: ../../include/identity.php:865 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Profile bearbeiten" +#: ../../include/widgets.php:978 +msgid "View Ratings" +msgstr "Bewertungen ansehen" -#: ../../include/identity.php:878 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profilfoto:" +#: ../../include/widgets.php:989 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" -#: ../../include/identity.php:881 -msgid "visible to everybody" -msgstr "sichtbar für jeden" +#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" -#: ../../include/identity.php:882 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 +msgid "Starts:" +msgstr "Beginnt:" -#: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 -#: ../../include/event.php:40 ../../mod/events.php:645 -#: ../../mod/directory.php:204 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../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/identity.php:898 ../../include/identity.php:1139 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../include/event.php:549 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" -#: ../../include/identity.php:899 ../../include/identity.php:1183 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:900 ../../include/identity.php:1194 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../include/identity.php:901 -msgid "Online Now" -msgstr "gerade online" - -#: ../../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/identity.php:984 ../../include/identity.php:1064 -msgid "F d" -msgstr "d. F" - -#: ../../include/identity.php:1029 ../../include/identity.php:1104 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[Heute]" - -#: ../../include/identity.php:1041 -msgid "Birthday Reminders" -msgstr "Geburtstags Erinnerungen" - -#: ../../include/identity.php:1042 -msgid "Birthdays this week:" -msgstr "Geburtstage in dieser Woche:" - -#: ../../include/identity.php:1097 -msgid "[No description]" -msgstr "[Keine Beschreibung]" - -#: ../../include/identity.php:1115 -msgid "Event Reminders" -msgstr "Termin-Erinnerungen" - -#: ../../include/identity.php:1116 -msgid "Events this week:" -msgstr "Termine in dieser Woche:" - -#: ../../include/identity.php:1129 ../../include/identity.php:1246 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/identity.php:1137 ../../mod/settings.php:1044 -msgid "Full Name:" -msgstr "Voller Name:" - -#: ../../include/identity.php:1144 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" - -#: ../../include/identity.php:1168 -msgid "j F, Y" -msgstr "j. F Y" - -#: ../../include/identity.php:1169 -msgid "j F" -msgstr "j. F" - -#: ../../include/identity.php:1176 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/identity.php:1180 -msgid "Age:" -msgstr "Alter:" - -#: ../../include/identity.php:1189 +#: ../../include/enotify.php:96 #, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +msgid "%s " +msgstr "%s " -#: ../../include/identity.php:1192 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/enotify.php:100 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" -#: ../../include/identity.php:1196 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Heimatstadt:" +#: ../../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/identity.php:1198 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." -#: ../../include/identity.php:1200 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "eine private Nachricht" -#: ../../include/identity.php:1202 -msgid "Religion:" -msgstr "Religion:" +#: ../../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/identity.php:1204 -msgid "About:" -msgstr "Über:" +#: ../../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:1206 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../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:1208 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../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:1210 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../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:1212 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../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:1214 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../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:1216 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../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:1218 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../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:1220 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../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:1222 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/enotify.php:224 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" -#: ../../include/identity.php:1224 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../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:1226 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../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:1228 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/enotify.php:238 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" -#: ../../include/identity.php:1248 -msgid "Like this thing" -msgstr "Gefällt mir" +#: ../../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/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/enotify.php:256 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" + +#: ../../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/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/enotify.php:270 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Benachrichtigung] Vorstellung erhalten" + +#: ../../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/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/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/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/enotify.php:285 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" + +#: ../../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/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/enotify.php:293 +msgid "Name:" +msgstr "Name:" + +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: ../../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/enotify.php:508 +msgid "[Red:Notify]" +msgstr "[Red:Benachrichtigung]" #: ../../include/message.php:18 msgid "No recipient provided." @@ -1921,7 +1764,7 @@ 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." @@ -1931,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 " @@ -1947,423 +1812,31 @@ msgstr "Antwort des entfernten Kanals war unvollständig." msgid "Channel was deleted and no longer exists." msgstr "Kanal wurde gelöscht und existiert nicht mehr." -#: ../../include/follow.php:135 ../../include/follow.php:197 +#: ../../include/follow.php:135 ../../include/follow.php:206 msgid "Protocol disabled." msgstr "Protokoll deaktiviert." -#: ../../include/follow.php:170 +#: ../../include/follow.php:144 +msgid "Protocol blocked for this channel." +msgstr "Das Protokoll wurde für diesen Kanal blockiert." + +#: ../../include/follow.php:179 msgid "Channel discovery failed." msgstr "Kanalsuche fehlgeschlagen" -#: ../../include/follow.php:186 +#: ../../include/follow.php:195 msgid "local account not found." msgstr "Lokales Konto nicht gefunden." -#: ../../include/follow.php:215 +#: ../../include/follow.php:224 msgid "Cannot connect to yourself." msgstr "Du kannst Dich nicht mit Dir selbst verbinden." -#: ../../include/comanche.php:35 ../../mod/admin.php:357 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" - -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" - -#: ../../include/datetime.php:212 ../../mod/events.php:633 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Benötigt" - -#: ../../include/datetime.php:231 -msgid "never" -msgstr "Nie" - -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../include/datetime.php:240 -msgid "year" -msgstr "Jahr" - -#: ../../include/datetime.php:240 -msgid "years" -msgstr "Jahre" - -#: ../../include/datetime.php:241 -msgid "month" -msgstr "Monat" - -#: ../../include/datetime.php:241 -msgid "months" -msgstr "Monate" - -#: ../../include/datetime.php:242 -msgid "week" -msgstr "Woche" - -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "Wochen" - -#: ../../include/datetime.php:243 -msgid "day" -msgstr "Tag" - -#: ../../include/datetime.php:243 -msgid "days" -msgstr "Tage" - -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "Stunde" - -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "Stunden" - -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "Minute" - -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "Minuten" - -#: ../../include/datetime.php:246 -msgid "second" -msgstr "Sekunde" - -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "Sekunden" - -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" - -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" - -#: ../../include/bb2diaspora.php:349 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" - -#: ../../include/bb2diaspora.php:430 -msgid "Redmatrix event notification:" -msgstr "RedMatrix Termin-Benachrichtigung:" - -#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Der Chatraum hat keinen Namen" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Name des Chatraums bereits vergeben" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ungültiger Raumbezeichner." - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatraum konnte nicht gefunden werden." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Der Raum ist voll" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 -msgid "Logout" -msgstr "Abmelden" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:91 ../../include/conversation.php:937 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "Profil ansehen" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1586 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Deine Bilder" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Deine Dateien" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Deine Chaträume" - -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1621 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" - -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1632 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webseiten" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Deine Webseiten" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 -msgid "Login" -msgstr "Anmelden" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 -msgid "Register" -msgstr "Registrieren" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 -msgid "Help" -msgstr "Hilfe" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Durchsuche Seiten-Inhalt" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:334 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" - -#: ../../include/nav.php:182 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/nav.php:182 -msgid "Your matrix" -msgstr "Deine Matrix" - -#: ../../include/nav.php:183 -msgid "Mark all matrix notifications seen" -msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:185 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:185 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:186 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:189 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Verbindungen" - -#: ../../include/nav.php:192 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:192 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:193 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:194 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../include/nav.php:196 ../../include/apps.php:143 -msgid "Mail" -msgstr "Mail" - -#: ../../include/nav.php:196 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:197 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:198 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:199 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:200 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:204 ../../include/apps.php:140 -#: ../../mod/events.php:472 -msgid "Events" -msgstr "Termine" - -#: ../../include/nav.php:204 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:205 -msgid "See all events" -msgstr "Alle Termine ansehen" - -#: ../../include/nav.php:206 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../include/nav.php:208 ../../include/apps.php:132 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" - -#: ../../include/nav.php:218 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:249 ../../include/conversation.php:842 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, content" -msgstr "@Name, #Schlagwort, Text" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Bitte warten..." - -#: ../../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/ItemObject.php:89 ../../include/conversation.php:652 +#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 msgid "Private Message" msgstr "Private Nachricht" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:644 +#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 msgid "Select" msgstr "Auswählen" @@ -2396,13 +1869,22 @@ msgid "I abstain" msgstr "Ich enthalte mich" #: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1667 ../../mod/photos.php:997 -#: ../../mod/photos.php:1009 +#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 +#: ../../mod/photos.php:1027 msgid "View all" msgstr "Alles anzeigen" -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1695 -#: ../../mod/photos.php:1006 +#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 +#: ../../include/conversation.php:1712 ../../include/identity.php:1243 +#: ../../mod/photos.php:1019 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" + +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 +#: ../../mod/photos.php:1024 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -2425,11 +1907,11 @@ msgstr "Markierungsstatus (Stern) umschalten" msgid "starred" msgstr "markiert" -#: ../../include/ItemObject.php:227 ../../include/conversation.php:659 +#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../include/ItemObject.php:228 ../../include/conversation.php:660 +#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" @@ -2437,14 +1919,22 @@ msgstr "Signatur nicht korrekt" msgid "Add Tag" msgstr "Tag hinzufügen" -#: ../../include/ItemObject.php:254 ../../mod/photos.php:941 +#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 msgid "I like this (toggle)" msgstr "Mir gefällt das (Umschalter)" -#: ../../include/ItemObject.php:255 ../../mod/photos.php:942 +#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 +msgid "like" +msgstr "mag" + +#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 msgid "I don't like this (toggle)" msgstr "Mir gefällt das nicht (Umschalter)" +#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 +msgid "dislike" +msgstr "lehne ab" + #: ../../include/ItemObject.php:259 msgid "Share This" msgstr "Teilen" @@ -2481,17 +1971,17 @@ msgstr "Wall-to-Wall" msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../include/ItemObject.php:312 ../../include/conversation.php:704 +#: ../../include/ItemObject.php:312 ../../include/conversation.php:727 #, php-format -msgid " from %s" -msgstr "von %s" +msgid "from %s" +msgstr "via %s" -#: ../../include/ItemObject.php:315 ../../include/conversation.php:707 +#: ../../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:708 +#: ../../include/ItemObject.php:316 ../../include/conversation.php:731 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" @@ -2508,51 +1998,61 @@ msgstr "Zum Kalender hinzufügen" msgid "Mark all seen" msgstr "Alle als gelesen markieren" -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1125 +#: ../../include/ItemObject.php:353 ../../mod/photos.php:1145 msgctxt "noun" msgid "Likes" msgstr "Gefällt mir" -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1126 +#: ../../include/ItemObject.php:354 ../../mod/photos.php:1146 msgctxt "noun" msgid "Dislikes" msgstr "Gefällt nicht" #: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1131 +#: ../../mod/photos.php:1151 msgid "Close" msgstr "Schließen" -#: ../../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 +#: ../../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" -#: ../../include/ItemObject.php:665 ../../mod/photos.php:960 -#: ../../mod/photos.php:1078 +#: ../../include/ItemObject.php:665 ../../mod/photos.php:978 +#: ../../mod/photos.php:1096 msgid "This is you" msgstr "Das bist Du" -#: ../../include/ItemObject.php:669 +#: ../../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/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/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/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/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" @@ -2561,18 +2061,327 @@ msgid "Image" msgstr "Bild" #: ../../include/ItemObject.php:675 -msgid "Link" -msgstr "Link" +msgid "Insert Link" +msgstr "Link einfügen" #: ../../include/ItemObject.php:676 msgid "Video" msgstr "Video" -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1224 -#: ../../mod/editpost.php:152 ../../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" +#: ../../include/Contact.php:124 +msgid "New window" +msgstr "Neues Fenster" + +#: ../../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/Contact.php:212 +#, php-format +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" + +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../include/bb2diaspora.php:461 +msgid "$Projectname event notification:" +msgstr "$Projectname-Terminbenachrichtigung:" + +#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 +msgid "Logout" +msgstr "Abmelden" + +#: ../../include/nav.php:87 ../../include/nav.php:120 +msgid "End this session" +msgstr "Beende diese Sitzung" + +#: ../../include/nav.php:90 ../../include/nav.php:151 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:90 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: ../../include/nav.php:91 ../../include/conversation.php:953 +#: ../../mod/connedit.php:510 +msgid "View Profile" +msgstr "Profil ansehen" + +#: ../../include/nav.php:91 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../include/nav.php:93 +msgid "Edit Profiles" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:93 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" + +#: ../../include/nav.php:95 ../../include/identity.php:956 +msgid "Edit Profile" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:95 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../include/nav.php:97 ../../include/conversation.php:1611 +#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" + +#: ../../include/nav.php:97 +msgid "Your photos" +msgstr "Deine Bilder" + +#: ../../include/nav.php:98 +msgid "Your files" +msgstr "Deine Dateien" + +#: ../../include/nav.php:103 ../../include/apps.php:146 +msgid "Chat" +msgstr "Chat" + +#: ../../include/nav.php:103 +msgid "Your chatrooms" +msgstr "Deine Chaträume" + +#: ../../include/nav.php:109 ../../include/conversation.php:1646 +#: ../../include/apps.php:129 +msgid "Bookmarks" +msgstr "Lesezeichen" + +#: ../../include/nav.php:109 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" + +#: ../../include/nav.php:113 ../../include/conversation.php:1656 +#: ../../include/apps.php:136 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Webseiten" + +#: ../../include/nav.php:113 +msgid "Your webpages" +msgstr "Deine Webseiten" + +#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1550 +msgid "Login" +msgstr "Anmelden" + +#: ../../include/nav.php:117 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:134 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" + +#: ../../include/nav.php:137 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../include/nav.php:137 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:151 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 +msgid "Register" +msgstr "Registrieren" + +#: ../../include/nav.php:155 +msgid "Create an account" +msgstr "Erzeuge ein Konto" + +#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 +#: ../../mod/help.php:72 ../../mod/layouts.php:176 +msgid "Help" +msgstr "Hilfe" + +#: ../../include/nav.php:160 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" + +#: ../../include/nav.php:165 +msgid "Search site content" +msgstr "Durchsuche Seiten-Inhalt" + +#: ../../include/nav.php:168 ../../include/apps.php:141 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../include/nav.php:168 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" + +#: ../../include/nav.php:180 ../../include/apps.php:133 +msgid "Matrix" +msgstr "Matrix" + +#: ../../include/nav.php:180 +msgid "Your matrix" +msgstr "Deine Matrix" + +#: ../../include/nav.php:181 +msgid "Mark all matrix notifications seen" +msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:183 ../../include/apps.php:137 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:183 +msgid "Channel home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:184 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:187 ../../mod/connections.php:267 +msgid "Connections" +msgstr "Verbindungen" + +#: ../../include/nav.php:190 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:190 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:191 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" + +#: ../../include/nav.php:192 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" + +#: ../../include/nav.php:194 ../../include/apps.php:143 +msgid "Mail" +msgstr "Mail" + +#: ../../include/nav.php:194 +msgid "Private mail" +msgstr "Persönliche Mail" + +#: ../../include/nav.php:195 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" + +#: ../../include/nav.php:196 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" + +#: ../../include/nav.php:197 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/nav.php:198 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/nav.php:202 ../../include/apps.php:140 +#: ../../mod/events.php:503 +msgid "Events" +msgstr "Termine" + +#: ../../include/nav.php:202 +msgid "Event Calendar" +msgstr "Terminkalender" + +#: ../../include/nav.php:203 +msgid "See all events" +msgstr "Alle Termine ansehen" + +#: ../../include/nav.php:204 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" + +#: ../../include/nav.php:206 ../../include/apps.php:132 +#: ../../mod/manage.php:166 +msgid "Channel Manager" +msgstr "Kanal-Manager" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanaleinstellungen" + +#: ../../include/nav.php:216 ../../mod/admin.php:120 +msgid "Admin" +msgstr "Administration" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:247 ../../include/conversation.php:861 +msgid "Loading..." +msgstr "Lädt ..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, content" +msgstr "@Name, #Schlagwort, Text" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Bitte warten..." + +#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 +msgid "Tags" +msgstr "Schlagwörter" + +#: ../../include/taxonomy.php:287 +msgid "Keywords" +msgstr "Schlüsselwörter" + +#: ../../include/taxonomy.php:308 +msgid "have" +msgstr "habe" + +#: ../../include/taxonomy.php:308 +msgid "has" +msgstr "hat" + +#: ../../include/taxonomy.php:309 +msgid "want" +msgstr "will" + +#: ../../include/taxonomy.php:309 +msgid "wants" +msgstr "will" + +#: ../../include/taxonomy.php:310 +msgid "likes" +msgstr "gefällt" + +#: ../../include/taxonomy.php:311 +msgid "dislikes" +msgstr "mag nicht" + #: ../../include/activities.php:39 msgid " and " msgstr "und" @@ -2596,187 +2405,764 @@ msgstr "Besuche %1$s's %2$s" 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/dir_fns.php:96 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" +#: ../../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 "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/dir_fns.php:97 -msgid "Alphabetic" -msgstr "alphabetisch" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" -#: ../../include/dir_fns.php:98 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" -#: ../../include/dir_fns.php:99 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" +#: ../../include/permissions.php:28 +msgid "Can view my photo albums" +msgstr "Kann meine Fotoalben betrachten" -#: ../../include/dir_fns.php:100 -msgid "Oldest to Newest" -msgstr "Älteste zuerst" +#: ../../include/permissions.php:29 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" -#: ../../include/dir_fns.php:101 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" +#: ../../include/permissions.php:30 +msgid "Can view my file storage" +msgstr "Kann meine Dateiordner lesen" -#: ../../include/dir_fns.php:103 -msgid "Sort" -msgstr "Sortieren" +#: ../../include/permissions.php:31 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" -#: ../../include/dir_fns.php:119 -msgid "Enable Safe Search" -msgstr "Sichere Suche einschalten" +#: ../../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/dir_fns.php:121 -msgid "Disable Safe Search" -msgstr "Sichere Suche ausschalten" +#: ../../include/permissions.php:35 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" -#: ../../include/dir_fns.php:123 -msgid "Safe Mode" -msgstr "Sicherer Modus" +#: ../../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/items.php:382 ../../mod/subthread.php:49 -#: ../../mod/group.php:68 ../../mod/profperm.php:23 ../../mod/like.php:270 -#: ../../index.php:389 +#: ../../include/permissions.php:37 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../include/permissions.php:38 +msgid "Can post photos to my photo albums" +msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" + +#: ../../include/permissions.php:39 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" + +#: ../../include/permissions.php:39 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" + +#: ../../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/permissions.php:41 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" + +#: ../../include/permissions.php:42 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" + +#: ../../include/permissions.php:43 +msgid "Can write to my file storage" +msgstr "Kann in meine Dateiordner schreiben" + +#: ../../include/permissions.php:44 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten 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/permissions.php:46 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" + +#: ../../include/permissions.php:48 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" + +#: ../../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/permissions.php:893 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +#: ../../include/permissions.php:895 +msgid "Mostly Public" +msgstr "Weitgehend öffentlich" + +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +#: ../../include/permissions.php:895 +msgid "Restricted" +msgstr "Beschränkt" + +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +msgid "Private" +msgstr "Privat" + +#: ../../include/permissions.php:894 +msgid "Community Forum" +msgstr "Forum" + +#: ../../include/permissions.php:895 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../include/permissions.php:896 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../include/permissions.php:896 +msgid "Celebrity/Soapbox" +msgstr "Mitteilungs-Kanal (keine Kommentare)" + +#: ../../include/permissions.php:896 +msgid "Group Repository" +msgstr "Gruppenarchiv" + +#: ../../include/permissions.php:897 ../../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/permissions.php:897 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "Kanal" + +#: ../../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" + +#: ../../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:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" + +#: ../../include/conversation.php:583 ../../mod/photos.php:996 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../include/conversation.php:583 ../../mod/photos.php:996 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" + +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" + +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" + +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" + +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" + +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" + +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" + +#: ../../include/conversation.php:703 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" + +#: ../../include/conversation.php:718 +msgid "Categories:" +msgstr "Kategorien:" + +#: ../../include/conversation.php:719 +msgid "Filed under:" +msgstr "Gespeichert unter:" + +#: ../../include/conversation.php:746 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" + +#: ../../include/conversation.php:857 +msgid "remove" +msgstr "lösche" + +#: ../../include/conversation.php:862 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" + +#: ../../include/conversation.php:950 +msgid "View Source" +msgstr "Quelle anzeigen" + +#: ../../include/conversation.php:951 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" + +#: ../../include/conversation.php:952 +msgid "View Status" +msgstr "Status ansehen" + +#: ../../include/conversation.php:954 +msgid "View Photos" +msgstr "Fotos ansehen" + +#: ../../include/conversation.php:955 +msgid "Matrix Activity" +msgstr "Matrix-Aktivität" + +#: ../../include/conversation.php:957 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: ../../include/conversation.php:958 +msgid "Send PM" +msgstr "Sende PN" + +#: ../../include/conversation.php:959 ../../include/apps.php:145 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../include/conversation.php:1073 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1073 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." + +#: ../../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: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:1085 +msgid "and" +msgstr "und" + +#: ../../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:1089 +#, php-format +msgid "%s like this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1089 +#, php-format +msgid "%s don't like this." +msgstr "%s gefällt das nicht." + +#: ../../include/conversation.php:1151 +msgid "Visible to everybody" +msgstr "Sichtbar für jeden" + +#: ../../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:1153 +msgid "Please enter a video link/URL:" +msgstr "Gib einen Video-Link/URL ein:" + +#: ../../include/conversation.php:1154 +msgid "Please enter an audio link/URL:" +msgstr "Gib einen Audio-Link/URL ein:" + +#: ../../include/conversation.php:1155 +msgid "Tag term:" +msgstr "Schlagwort:" + +#: ../../include/conversation.php:1156 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" + +#: ../../include/conversation.php:1157 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" + +#: ../../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:1185 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 ../../mod/photos.php:961 ../../mod/layouts.php:184 +msgid "Share" +msgstr "Teilen" + +#: ../../include/conversation.php:1187 +msgid "Page link name" +msgstr "Link zur Seite" + +#: ../../include/conversation.php:1190 +msgid "Post as" +msgstr "Veröffentlichen als" + +#: ../../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:1198 +msgid "upload photo" +msgstr "Foto hochladen" + +#: ../../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:1200 +msgid "attach file" +msgstr "Datei anfügen" + +#: ../../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:1202 +msgid "web link" +msgstr "Web-Link" + +#: ../../include/conversation.php:1203 +msgid "Insert video link" +msgstr "Video-Link einfügen" + +#: ../../include/conversation.php:1204 +msgid "video link" +msgstr "Video-Link" + +#: ../../include/conversation.php:1205 +msgid "Insert audio link" +msgstr "Audio-Link einfügen" + +#: ../../include/conversation.php:1206 +msgid "audio link" +msgstr "Audio-Link" + +#: ../../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:1208 +msgid "set location" +msgstr "Standort festlegen" + +#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 +msgid "Toggle voting" +msgstr "Umfragewerkzeug aktivieren" + +#: ../../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:1213 +msgid "clear location" +msgstr "Standort löschen" + +#: ../../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: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: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:1222 +msgid "permissions" +msgstr "Berechtigungen" + +#: ../../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: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: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:1249 ../../mod/events.php:674 +#: ../../mod/editpost.php:153 +msgid "OK" +msgstr "Ok" + +#: ../../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:1492 +msgid "Discover" +msgstr "Entdecken" + +#: ../../include/conversation.php:1495 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" + +#: ../../include/conversation.php:1500 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: ../../include/conversation.php:1503 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" + +#: ../../include/conversation.php:1507 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: ../../include/conversation.php:1510 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" + +#: ../../include/conversation.php:1518 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" + +#: ../../include/conversation.php:1524 ../../mod/connections.php:72 +#: ../../mod/connections.php:85 ../../mod/menu.php:110 +msgid "New" +msgstr "Neu" + +#: ../../include/conversation.php:1527 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" + +#: ../../include/conversation.php:1533 +msgid "Starred" +msgstr "Markiert" + +#: ../../include/conversation.php:1536 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" + +#: ../../include/conversation.php:1543 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1546 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" + +#: ../../include/conversation.php:1590 ../../mod/admin.php:993 +msgid "Channel" +msgstr "Kanal" + +#: ../../include/conversation.php:1593 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: ../../include/conversation.php:1602 +msgid "About" +msgstr "Über" + +#: ../../include/conversation.php:1605 +msgid "Profile Details" +msgstr "Profil-Details" + +#: ../../include/conversation.php:1614 ../../include/photos.php:359 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/conversation.php:1623 +msgid "Files and Storage" +msgstr "Dateien und Speicher" + +#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../../include/conversation.php:1649 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" + +#: ../../include/conversation.php:1659 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" + +#: ../../include/conversation.php:1718 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Zusage" +msgstr[1] "Zusagen" + +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Absage" +msgstr[1] "Absagen" + +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] " Unentschlossen" +msgstr[1] "Unentschlossene" + +#: ../../include/conversation.php:1727 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Zustimmung" +msgstr[1] "Zustimmungen" + +#: ../../include/conversation.php:1730 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Ablehnung" +msgstr[1] "Ablehnungen" + +#: ../../include/conversation.php:1733 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Enthaltung" +msgstr[1] "Enthaltungen" + +#: ../../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:392 msgid "Permission denied" msgstr "Keine Berechtigung" -#: ../../include/items.php:979 ../../include/items.php:1024 +#: ../../include/items.php:1101 ../../include/items.php:1147 msgid "(Unknown)" msgstr "(Unbekannt)" -#: ../../include/items.php:1181 +#: ../../include/items.php:1373 msgid "Visible to anybody on the internet." msgstr "Für jeden im Internet sichtbar." -#: ../../include/items.php:1183 +#: ../../include/items.php:1375 msgid "Visible to you only." msgstr "Nur für Dich sichtbar." -#: ../../include/items.php:1185 +#: ../../include/items.php:1377 msgid "Visible to anybody in this network." msgstr "Für jedes Mitglied der RedMatrix sichtbar." -#: ../../include/items.php:1187 +#: ../../include/items.php:1379 msgid "Visible to anybody authenticated." msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/items.php:1189 +#: ../../include/items.php:1381 #, php-format msgid "Visible to anybody on %s." msgstr "Für jeden auf %s sichtbar." -#: ../../include/items.php:1191 +#: ../../include/items.php:1383 msgid "Visible to all connections." msgstr "Für alle Verbindungen sichtbar." -#: ../../include/items.php:1193 +#: ../../include/items.php:1385 msgid "Visible to approved connections." msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/items.php:1195 +#: ../../include/items.php:1387 msgid "Visible to specific connections." msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../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 +#: ../../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:4455 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../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/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: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/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/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 +#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 +#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/bookmarks.php:46 +#: ../../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:393 +msgid "Permission denied." +msgstr "Zugang verweigert" + +#: ../../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:4470 +#: ../../include/items.php:4779 msgid "Collection is empty." msgstr "Sammlung ist leer." -#: ../../include/items.php:4477 +#: ../../include/items.php:4786 #, php-format msgid "Collection: %s" msgstr "Sammlung: %s" -#: ../../include/items.php:4488 +#: ../../include/items.php:4796 ../../mod/connedit.php:674 #, php-format msgid "Connection: %s" msgstr "Verbindung: %s" -#: ../../include/items.php:4491 +#: ../../include/items.php:4798 msgid "Connection not found." msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" +#: ../../include/zot.php:678 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Neues Fenster" +#: ../../include/zot.php:694 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../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/Contact.php:215 ../../mod/admin.php:651 +#: ../../include/zot.php:2184 #, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/network.php:613 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" +#: ../../include/oembed.php:183 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" -#: ../../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/oembed.php:192 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" -#: ../../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/auth.php:131 +msgid "Logged out." +msgstr "Ausgeloggt." -#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" +#: ../../include/auth.php:272 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" -#: ../../include/bbcode.php:168 -msgid "Install design element: " -msgstr "Design-Element installieren:" - -#: ../../include/bbcode.php:174 -msgid "QR code" -msgstr "QR-Code" - -#: ../../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/bbcode.php:225 -msgid "post" -msgstr "Beitrag" - -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" - -#: ../../include/bbcode.php:662 -msgid "$1 spoiler" -msgstr "$1 Spoiler" - -#: ../../include/bbcode.php:682 -msgid "$1 wrote:" -msgstr "$1 schrieb:" +#: ../../include/auth.php:286 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Login fehlgeschlagen." #: ../../include/contact_widgets.php:14 #, php-format @@ -2785,7 +3171,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:457 msgid "Advanced" msgstr "Fortgeschritten" @@ -2805,13 +3191,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:273 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" @@ -2850,36 +3236,317 @@ msgstr "Anzeigen" 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 +#: ../../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" msgstr "Berechtigungen" -#: ../../include/api.php:1081 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" +#: ../../include/attach.php:242 ../../include/attach.php:300 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." -#: ../../include/zot.php:673 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" +#: ../../include/attach.php:363 +msgid "No source file." +msgstr "Keine Quelldatei." -#: ../../include/zot.php:689 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" +#: ../../include/attach.php:381 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" -#: ../../include/zot.php:1961 +#: ../../include/attach.php:399 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:410 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" + +#: ../../include/attach.php:422 +#, 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:505 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:517 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." + +#: ../../include/attach.php:561 ../../include/attach.php:578 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:623 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:639 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:663 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:714 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:718 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + +#: ../../include/identity.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" + +#: ../../include/identity.php:67 +msgid "Empty name" +msgstr "Namensfeld leer" + +#: ../../include/identity.php:70 +msgid "Name too long" +msgstr "Name ist zu lang" + +#: ../../include/identity.php:186 +msgid "No account identifier" +msgstr "Keine Account-Kennung" + +#: ../../include/identity.php:198 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." + +#: ../../include/identity.php:212 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." + +#: ../../include/identity.php:217 ../../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/identity.php:292 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" + +#: ../../include/identity.php:350 +msgid "Default Profile" +msgstr "Standard-Profil" + +#: ../../include/identity.php:736 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." + +#: ../../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/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:946 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Profilfoto ändern" + +#: ../../include/identity.php:952 +msgid "Profiles" +msgstr "Profile" + +#: ../../include/identity.php:952 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/bearbeiten" + +#: ../../include/identity.php:953 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" + +#: ../../include/identity.php:968 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Profilfoto:" + +#: ../../include/identity.php:971 +msgid "visible to everybody" +msgstr "sichtbar für jeden" + +#: ../../include/identity.php:972 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" + +#: ../../include/identity.php:988 ../../include/identity.php:1227 +msgid "Gender:" +msgstr "Geschlecht:" + +#: ../../include/identity.php:989 ../../include/identity.php:1271 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:990 ../../include/identity.php:1282 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../include/identity.php:991 +msgid "Online Now" +msgstr "gerade online" + +#: ../../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:1075 ../../include/identity.php:1153 +msgid "F d" +msgstr "d. F" + +#: ../../include/identity.php:1120 ../../include/identity.php:1192 +#: ../../mod/ping.php:346 +msgid "[today]" +msgstr "[Heute]" + +#: ../../include/identity.php:1131 +msgid "Birthday Reminders" +msgstr "Geburtstags Erinnerungen" + +#: ../../include/identity.php:1132 +msgid "Birthdays this week:" +msgstr "Geburtstage in dieser Woche:" + +#: ../../include/identity.php:1185 +msgid "[No description]" +msgstr "[Keine Beschreibung]" + +#: ../../include/identity.php:1203 +msgid "Event Reminders" +msgstr "Termin-Erinnerungen" + +#: ../../include/identity.php:1204 +msgid "Events this week:" +msgstr "Termine in dieser Woche:" + +#: ../../include/identity.php:1217 ../../include/identity.php:1334 +#: ../../include/apps.php:138 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" + +#: ../../include/identity.php:1225 ../../mod/settings.php:1056 +msgid "Full Name:" +msgstr "Voller Name:" + +#: ../../include/identity.php:1232 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" + +#: ../../include/identity.php:1256 +msgid "j F, Y" +msgstr "j. F Y" + +#: ../../include/identity.php:1257 +msgid "j F" +msgstr "j. F" + +#: ../../include/identity.php:1264 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/identity.php:1268 ../../mod/directory.php:297 +msgid "Age:" +msgstr "Alter:" + +#: ../../include/identity.php:1277 +#, php-format +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" + +#: ../../include/identity.php:1280 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" + +#: ../../include/identity.php:1284 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Heimatstadt:" + +#: ../../include/identity.php:1286 +msgid "Tags:" +msgstr "Schlagworte:" + +#: ../../include/identity.php:1288 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: ../../include/identity.php:1290 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/identity.php:1292 ../../mod/directory.php:315 +msgid "About:" +msgstr "Über:" + +#: ../../include/identity.php:1294 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" + +#: ../../include/identity.php:1296 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Gefällt:" + +#: ../../include/identity.php:1298 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Gefällt nicht:" + +#: ../../include/identity.php:1300 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" + +#: ../../include/identity.php:1302 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" + +#: ../../include/identity.php:1304 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: ../../include/identity.php:1306 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" + +#: ../../include/identity.php:1308 +msgid "Television:" +msgstr "Fernsehen:" + +#: ../../include/identity.php:1310 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" + +#: ../../include/identity.php:1312 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" + +#: ../../include/identity.php:1314 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" + +#: ../../include/identity.php:1316 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: ../../include/identity.php:1336 +msgid "Like this thing" +msgstr "Gefällt mir" #: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 msgid "Male" msgstr "Männlich" #: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 msgid "Female" msgstr "Weiblich" @@ -2901,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" @@ -2923,13 +3590,6 @@ msgstr "Geschlechtslos" msgid "Non-specific" msgstr "unklar" -#: ../../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/profile_selectors.php:6 msgid "Undecided" msgstr "Unentschieden" @@ -3128,10 +3788,6 @@ msgstr "Adressbuch" msgid "Mood" msgstr "Laune" -#: ../../include/apps.php:145 ../../include/conversation.php:943 -msgid "Poke" -msgstr "Anstupsen" - #: ../../include/apps.php:148 msgid "Probe" msgstr "Testen" @@ -3152,7 +3808,7 @@ msgstr "Einladen" msgid "Features" msgstr "Funktionen" -#: ../../include/apps.php:153 +#: ../../include/apps.php:153 ../../mod/id.php:28 msgid "Language" msgstr "Sprache" @@ -3160,12 +3816,13 @@ msgstr "Sprache" msgid "Post" msgstr "Beitrag" -#: ../../include/apps.php:155 +#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 +#: ../../mod/id.php:19 msgid "Profile Photo" msgstr "Profilfoto" -#: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:609 +#: ../../include/apps.php:247 ../../mod/settings.php:84 +#: ../../mod/settings.php:614 msgid "Update" msgstr "Aktualisieren" @@ -3177,719 +3834,118 @@ msgstr "Installieren" msgid "Purchase" msgstr "Kaufen" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" +#: ../../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/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/bbcode.php:161 ../../include/bbcode.php:818 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" -#: ../../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/account.php:64 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Speichern der Account-Informationen fehlgeschlagen" - -#: ../../include/account.php:245 +#: ../../include/bbcode.php:178 #, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" +msgid "Install %s element: " +msgstr "Element %s installieren: " -#: ../../include/account.php:313 +#: ../../include/bbcode.php:182 #, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account bestätigt." - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s widerrufen" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Konto geprüft. Bitte melde Dich an!" - -#: ../../include/account.php:674 ../../include/account.php:676 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." - -#: ../../include/account.php:682 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." - -#: ../../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/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "Kanal" - -#: ../../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/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:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" - -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" - -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" - -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" - -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" - -#: ../../include/conversation.php:680 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" - -#: ../../include/conversation.php:695 -msgid "Categories:" -msgstr "Kategorien:" - -#: ../../include/conversation.php:696 -msgid "Filed under:" -msgstr "Gespeichert unter:" - -#: ../../include/conversation.php:723 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "lösche" - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Quelle anzeigen" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Status ansehen" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Fotos ansehen" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Matrix-Aktivität" - -#: ../../include/conversation.php:941 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: ../../include/conversation.php:942 -msgid "Send PM" -msgstr "Sende PN" - -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." - -#: ../../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/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 gefällt das nicht." -msgstr[1] "%2$d Leuten gefällt das nicht." - -#: ../../include/conversation.php:1073 -msgid "and" -msgstr "und" - -#: ../../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/conversation.php:1077 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1136 -msgid "Visible to everybody" -msgstr "Sichtbar für jeden" - -#: ../../include/conversation.php:1137 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" - -#: ../../include/conversation.php:1138 -msgid "Please enter a video link/URL:" -msgstr "Gib einen Video-Link/URL ein:" - -#: ../../include/conversation.php:1139 -msgid "Please enter an audio link/URL:" -msgstr "Gib einen Audio-Link/URL ein:" - -#: ../../include/conversation.php:1140 -msgid "Tag term:" -msgstr "Schlagwort:" - -#: ../../include/conversation.php:1141 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" - -#: ../../include/conversation.php:1142 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" - -#: ../../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/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/conversation.php:1172 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Seitentitel-Link" - -#: ../../include/conversation.php:1175 -msgid "Post as" -msgstr "Veröffentlichen als" - -#: ../../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/conversation.php:1177 -msgid "upload photo" -msgstr "Foto hochladen" - -#: ../../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/conversation.php:1179 -msgid "attach file" -msgstr "Datei anfügen" - -#: ../../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/conversation.php:1181 -msgid "web link" -msgstr "Web-Link" - -#: ../../include/conversation.php:1182 -msgid "Insert video link" -msgstr "Video-Link einfügen" - -#: ../../include/conversation.php:1183 -msgid "video link" -msgstr "Video-Link" - -#: ../../include/conversation.php:1184 -msgid "Insert audio link" -msgstr "Audio-Link einfügen" - -#: ../../include/conversation.php:1185 -msgid "audio link" -msgstr "Audio-Link" - -#: ../../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/conversation.php:1187 -msgid "set location" -msgstr "Standort" - -#: ../../include/conversation.php:1188 ../../mod/editpost.php:122 -msgid "Toggle voting" -msgstr "Umfragewerkzeug aktivieren" - -#: ../../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/conversation.php:1192 -msgid "clear location" -msgstr "Standort löschen" - -#: ../../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/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/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/conversation.php:1200 -msgid "permissions" -msgstr "Berechtigungen" - -#: ../../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/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/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/conversation.php:1226 ../../mod/editpost.php:154 -#: ../../mod/events.php:635 -msgid "OK" -msgstr "Ok" - -#: ../../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/conversation.php:1471 -msgid "Discover" -msgstr "Entdecken" - -#: ../../include/conversation.php:1474 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" - -#: ../../include/conversation.php:1479 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: ../../include/conversation.php:1482 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" - -#: ../../include/conversation.php:1486 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: ../../include/conversation.php:1489 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" - -#: ../../include/conversation.php:1497 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" - -#: ../../include/conversation.php:1503 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "Neu" - -#: ../../include/conversation.php:1506 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" - -#: ../../include/conversation.php:1512 -msgid "Starred" -msgstr "Markiert" - -#: ../../include/conversation.php:1515 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" - -#: ../../include/conversation.php:1522 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1525 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" - -#: ../../include/conversation.php:1565 ../../mod/admin.php:870 -msgid "Channel" -msgstr "Kanal" - -#: ../../include/conversation.php:1568 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: ../../include/conversation.php:1577 -msgid "About" -msgstr "Über" - -#: ../../include/conversation.php:1580 -msgid "Profile Details" -msgstr "Profil-Details" - -#: ../../include/conversation.php:1598 -msgid "Files and Storage" -msgstr "Dateien und Speicher" - -#: ../../include/conversation.php:1608 ../../include/conversation.php:1611 -msgid "Chatrooms" -msgstr "Chaträume" - -#: ../../include/conversation.php:1624 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" - -#: ../../include/conversation.php:1635 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" - -#: ../../include/conversation.php:1698 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Zusage" -msgstr[1] "Zusagen" - -#: ../../include/conversation.php:1701 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Absage" -msgstr[1] "Absagen" - -#: ../../include/conversation.php:1704 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] " Unentschlossen" -msgstr[1] "Unentschlossene" - -#: ../../include/conversation.php:1707 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Zustimmung" -msgstr[1] "Zustimmungen" - -#: ../../include/conversation.php:1710 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Ablehnung" -msgstr[1] "Ablehnungen" - -#: ../../include/conversation.php:1713 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Enthaltung" -msgstr[1] "Enthaltungen" - -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" - -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kann meine Fotoalben betrachten" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kann meine Dateiordner lesen" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" - -#: ../../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/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../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/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" - -#: ../../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/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kann in meine Dateiordner schreiben" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten 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/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" - -#: ../../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" +"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/permissions.php:810 -msgid "Social Networking" -msgstr "Soziales Netzwerk" +#: ../../include/bbcode.php:192 ../../mod/impel.php:37 +msgid "webpage" +msgstr "Webseite" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Weitgehend öffentlich" +#: ../../include/bbcode.php:195 ../../mod/impel.php:47 +msgid "layout" +msgstr "Gestaltung" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Beschränkt" +#: ../../include/bbcode.php:198 ../../mod/impel.php:42 +msgid "block" +msgstr "Block" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Privat" +#: ../../include/bbcode.php:201 ../../mod/impel.php:54 +msgid "menu" +msgstr "Menü" -#: ../../include/permissions.php:811 -msgid "Community Forum" -msgstr "Forum" +#: ../../include/bbcode.php:215 +msgid "QR code" +msgstr "QR-Code" -#: ../../include/permissions.php:812 -msgid "Feed Republish" -msgstr "Teilen von Feeds" +#: ../../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/permissions.php:813 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" +#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 +msgid "post" +msgstr "Beitrag" -#: ../../include/permissions.php:813 -msgid "Celebrity/Soapbox" -msgstr "Mitteilungs-Kanal (keine Kommentare)" +#: ../../include/bbcode.php:518 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Gruppenarchiv" +#: ../../include/bbcode.php:729 +msgid "$1 spoiler" +msgstr "$1 Spoiler" -#: ../../include/permissions.php:814 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" +#: ../../include/bbcode.php:756 +msgid "$1 wrote:" +msgstr "$1 schrieb:" + +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Der Chatraum hat keinen Namen" + +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Name des Chatraums bereits vergeben" + +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Ungültiger Raumbezeichner." + +#: ../../include/chat.php:120 +msgid "Room not found." +msgstr "Chatraum konnte nicht gefunden werden." + +#: ../../include/chat.php:141 +msgid "Room is full" +msgstr "Der Raum ist voll" + +#: ../../include/photos.php:94 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" + +#: ../../include/photos.php:101 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 +msgid "Unable to process image" +msgstr "Kann Bild nicht verarbeiten" + +#: ../../include/photos.php:199 +msgid "Photo storage failed." +msgstr "Foto speichern schlug fehl" + +#: ../../include/photos.php:363 +msgid "Upload New Photos" +msgstr "Lade neue Fotos hoch" #: ../../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/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" - -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Block bearbeiten" - -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Block löschen?" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Block löschen" - #: ../../mod/manage.php:136 #, php-format msgid "You have created %1$.0f of %2$.0f allowed channels." @@ -3899,32 +3955,125 @@ msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." msgid "Create a new channel" msgstr "Neuen Kanal anlegen" -#: ../../mod/manage.php:149 +#: ../../mod/manage.php:167 msgid "Current Channel" msgstr "Aktueller Kanal" -#: ../../mod/manage.php:151 +#: ../../mod/manage.php:169 msgid "Switch to one of your channels by selecting it." msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." -#: ../../mod/manage.php:152 +#: ../../mod/manage.php:170 msgid "Default Channel" msgstr "Standard Kanal" -#: ../../mod/manage.php:153 +#: ../../mod/manage.php:171 msgid "Make Default" msgstr "Zum Standard machen" -#: ../../mod/manage.php:156 +#: ../../mod/manage.php:174 #, php-format msgid "%d new messages" msgstr "%d neue Nachrichten" -#: ../../mod/manage.php:157 +#: ../../mod/manage.php:175 #, php-format msgid "%d new introductions" msgstr "%d neue Vorstellungen" +#: ../../mod/manage.php:177 +msgid "Delegated Channels" +msgstr "Delegierte Kanäle" + +#: ../../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/directory.php:234 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d Bewertung" +msgstr[1] "%d Bewertungen" + +#: ../../mod/directory.php:245 +msgid "Gender: " +msgstr "Geschlecht:" + +#: ../../mod/directory.php:247 +msgid "Status: " +msgstr "Status:" + +#: ../../mod/directory.php:249 +msgid "Homepage: " +msgstr "Webseite:" + +#: ../../mod/directory.php:308 ../../mod/events.php:682 +msgid "Description:" +msgstr "Beschreibung:" + +#: ../../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" msgstr "Xchan-Suche" @@ -3933,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:136 ../../mod/mitem.php:111 +#: ../../mod/xchan.php:37 ../../mod/mitem.php:116 ../../mod/menu.php:160 msgid "Not found." msgstr "Nicht gefunden." @@ -3955,371 +4104,29 @@ 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/settings.php:974 ../../mod/settings.php:979 -#: ../../mod/settings.php:1064 ../../mod/admin.php:396 -msgid "Yes" -msgstr "Ja" +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "Seitentitel" -#: ../../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/follow.php:25 +msgid "Channel added." +msgstr "Kanal hinzugefügt." -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Block-Name" +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Schlagwort entfernt" -#: ../../mod/connedit.php:75 ../../mod/connections.php:37 -msgid "Could not access contact record." -msgstr "Konnte nicht auf den Kontakteintrag zugreifen." +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" -#: ../../mod/connedit.php:99 ../../mod/connections.php:51 -msgid "Could not locate selected profile." -msgstr "Gewähltes Profil nicht gefunden." +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../mod/connedit.php:204 ../../mod/connections.php:94 -msgid "Connection updated." -msgstr "Verbindung aktualisiert." - -#: ../../mod/connedit.php:206 ../../mod/connections.php:96 -msgid "Failed to update connection record." -msgstr "Konnte den Verbindungseintrag nicht aktualisieren." - -#: ../../mod/connedit.php:252 -msgid "is now connected to" -msgstr "ist jetzt verbunden mit" - -#: ../../mod/connedit.php:365 -msgid "Could not access address book record." -msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." - -#: ../../mod/connedit.php:379 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." - -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" -msgstr "Kanal nicht mehr blockiert" - -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" -msgstr "Kanal blockiert" - -#: ../../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/connedit.php:398 -msgid "Channel has been unignored" -msgstr "Kanal wird nicht mehr ignoriert" - -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" -msgstr "Kanal wird ignoriert" - -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" -msgstr "Kanal wurde aus dem Archiv zurück geholt" - -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" -msgstr "Kanal wurde archiviert" - -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" -msgstr "Kanal wird nicht mehr versteckt" - -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" -msgstr "Kanal wurde versteckt" - -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" -msgstr "Kanal wurde zugelassen" - -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" -msgstr "Zulassung des Kanals entfernt" - -#: ../../mod/connedit.php:467 -msgid "Connection has been removed." -msgstr "Verbindung wurde gelöscht." - -#: ../../mod/connedit.php:487 -#, php-format -msgid "View %s's profile" -msgstr "%ss Profil ansehen" - -#: ../../mod/connedit.php:491 -msgid "Refresh Permissions" -msgstr "Zugriffsrechte neu laden" - -#: ../../mod/connedit.php:494 -msgid "Fetch updated permissions" -msgstr "Aktualisierte Zugriffsrechte abfragen" - -#: ../../mod/connedit.php:498 -msgid "Recent Activity" -msgstr "Kürzliche Aktivitäten" - -#: ../../mod/connedit.php:501 -msgid "View recent posts and comments" -msgstr "Betrachte die neuesten Beiträge und Kommentare" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:737 -msgid "Unblock" -msgstr "Freigeben" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:736 -msgid "Block" -msgstr "Blockieren" - -#: ../../mod/connedit.php:510 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" - -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -msgid "Unignore" -msgstr "Nicht ignorieren" - -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorieren" - -#: ../../mod/connedit.php:517 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" - -#: ../../mod/connedit.php:520 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: ../../mod/connedit.php:520 -msgid "Archive" -msgstr "Archivieren" - -#: ../../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/connedit.php:526 -msgid "Unhide" -msgstr "Wieder sichtbar machen" - -#: ../../mod/connedit.php:526 -msgid "Hide" -msgstr "Verstecken" - -#: ../../mod/connedit.php:529 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" - -#: ../../mod/connedit.php:536 -msgid "Delete this connection" -msgstr "Verbindung löschen" - -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 -msgid "Approve this connection" -msgstr "Verbindung genehmigen" - -#: ../../mod/connedit.php:611 -msgid "Accept connection to allow communication" -msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" - -#: ../../mod/connedit.php:627 -#, php-format -msgid "Connections: settings for %s" -msgstr "Verbindungseinstellungen für %s" - -#: ../../mod/connedit.php:628 -msgid "Apply these permissions automatically" -msgstr "Diese Berechtigungen automatisch anwenden" - -#: ../../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/connedit.php:636 -msgid "Slide to adjust your degree of friendship" -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" - -#: ../../mod/connedit.php:637 ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" - -#: ../../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/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/connedit.php:648 -msgid "inherited" -msgstr "geerbt" - -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" -msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" - -#: ../../mod/connedit.php:652 -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." - -#: ../../mod/connedit.php:654 -msgid "Profile Visibility" -msgstr "Sichtbarkeit des Profils" - -#: ../../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/connedit.php:656 -msgid "Contact Information / Notes" -msgstr "Kontaktinformationen / Notizen" - -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" -msgstr "Kontaktnotizen bearbeiten" - -#: ../../mod/connedit.php:659 -msgid "Their Settings" -msgstr "Deren Einstellungen" - -#: ../../mod/connedit.php:660 -msgid "My Settings" -msgstr "Meine Einstellungen" - -#: ../../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/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" -msgstr "Automatische Berechtigungen abschalten/entfernen" - -#: ../../mod/connedit.php:664 -msgid "Forum Members" -msgstr "Forum Mitglieder" - -#: ../../mod/connedit.php:665 -msgid "Soapbox" -msgstr "Marktschreier" - -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" -msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" - -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " -msgstr "Vorsichtiges Teilen" - -#: ../../mod/connedit.php:668 -msgid "Follow Only" -msgstr "Nur folgen" - -#: ../../mod/connedit.php:669 -msgid "Individual Permissions" -msgstr "Individuelle Zugriffsrechte" - -#: ../../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 "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." - -#: ../../mod/connedit.php:671 -msgid "Advanced Permissions" -msgstr "Zugriffsrechte für Fortgeschrittene" - -#: ../../mod/connedit.php:672 -msgid "Simple Permissions (select one and submit)" -msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" - -#: ../../mod/connedit.php:676 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "%ss Profil besuchen - %s" - -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freigeben" - -#: ../../mod/connedit.php:678 -msgid "Ignore contact" -msgstr "Kontakt ignorieren" - -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" -msgstr "URL-Einstellungen reparieren" - -#: ../../mod/connedit.php:680 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" - -#: ../../mod/connedit.php:682 -msgid "Delete contact" -msgstr "Kontakt löschen" - -#: ../../mod/connedit.php:686 -msgid "Last update:" -msgstr "Letzte Aktualisierung:" - -#: ../../mod/connedit.php:688 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" - -#: ../../mod/connedit.php:690 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: ../../mod/connedit.php:696 -msgid "Currently blocked" -msgstr "Derzeit blockiert" - -#: ../../mod/connedit.php:697 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" - -#: ../../mod/connedit.php:698 -msgid "Currently archived" -msgstr "Derzeit archiviert" - -#: ../../mod/connedit.php:699 -msgid "Currently pending" -msgstr "Derzeit anstehend" - -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix – "Das Netzwerk"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +#: ../../mod/tagrm.php:133 ../../mod/photos.php:887 +msgid "Remove" +msgstr "Entferne" #: ../../mod/connect.php:56 ../../mod/connect.php:104 msgid "Continue" @@ -4364,31 +4171,72 @@ msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" msgid "Restricted or Premium Channel" msgstr "Eingeschränkter oder Premium-Kanal" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../mod/thing.php:94 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../mod/thing.php:167 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eintrag löschen?" +#: ../../mod/thing.php:171 +msgid "Thing added" +msgstr "Sache hinzugefügt" + +#: ../../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:254 +msgid "Show Thing" +msgstr "Sache anzeigen" + +#: ../../mod/thing.php:261 +msgid "item not found." +msgstr "Eintrag nicht gefunden" + +#: ../../mod/thing.php:289 +msgid "Edit Thing" +msgstr "Sache bearbeiten" + +#: ../../mod/thing.php:291 ../../mod/thing.php:338 +msgid "Select a profile" +msgstr "Wähle ein Profil" + +#: ../../mod/thing.php:295 ../../mod/thing.php:341 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" + +#: ../../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:297 ../../mod/thing.php:343 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" + +#: ../../mod/thing.php:299 ../../mod/thing.php:344 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" + +#: ../../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:336 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" #: ../../mod/attach.php:9 msgid "Item not available." msgstr "Element nicht verfügbar." -#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#: ../../mod/probe.php:24 ../../mod/probe.php:30 #, php-format msgid "Fetching URL returns error: %1$s" msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" -#: ../../mod/dav.php:121 -msgid "RedMatrix channel" -msgstr "RedMatrix-Kanal" - #: ../../mod/profile_photo.php:108 msgid "Image uploaded but image cropping failed." msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." @@ -4428,7 +4276,7 @@ msgstr "Wähle ein Profil:" msgid "Upload Profile Photo" msgstr "Lade neues Profilfoto hoch" -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 +#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 msgid "or" msgstr "oder" @@ -4465,138 +4313,194 @@ msgstr "Hochladen des Bilds fehlgeschlagen." msgid "Image size reduction [%s] failed." msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." -#: ../../mod/block.php:27 ../../mod/page.php:33 +#: ../../mod/block.php:27 ../../mod/page.php:36 msgid "Invalid item." msgstr "Ungültiges Element." -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:52 msgid "Channel not found." msgstr "Kanal nicht gefunden." -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 -#: ../../mod/page.php:81 ../../index.php:241 +#: ../../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." -#: ../../mod/network.php:84 -msgid "No such group" -msgstr "Sammlung nicht gefunden" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" -#: ../../mod/network.php:122 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." -#: ../../mod/network.php:176 -msgid "Collection is empty" -msgstr "Sammlung ist leer" +#: ../../mod/like.php:21 +msgid "" +"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/network.php:184 -msgid "Collection: " -msgstr "Sammlung:" +#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 +msgid "Invalid request." +msgstr "Ungültige Anfrage." -#: ../../mod/network.php:197 -msgid "Connection: " -msgstr "Verbindung:" +#: ../../mod/like.php:143 +msgid "thing" +msgstr "Sache" -#: ../../mod/network.php:200 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." +#: ../../mod/like.php:189 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." -#: ../../mod/events.php:87 +#: ../../mod/like.php:231 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." + +#: ../../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: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: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: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: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: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:507 +msgid "Action completed." +msgstr "Aktion durchgeführt." + +#: ../../mod/like.php:508 +msgid "Thank you." +msgstr "Vielen Dank." + +#: ../../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:827 +#: ../../mod/events.php:505 ../../mod/photos.php:839 msgid "Previous" msgstr "Voriges" -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 +#: ../../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:625 +#: ../../mod/events.php:664 msgid "Event details" msgstr "Termin-Details" -#: ../../mod/events.php:626 +#: ../../mod/events.php:665 msgid "Starting date and Title are required." msgstr "Startdatum und Titel sind erforderlich." -#: ../../mod/events.php:628 +#: ../../mod/events.php:667 msgid "Categories (comma-separated list)" msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../mod/events.php:630 +#: ../../mod/events.php:669 msgid "Event Starts:" msgstr "Termin beginnt:" -#: ../../mod/events.php:637 +#: ../../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:639 +#: ../../mod/events.php:678 msgid "Event Finishes:" msgstr "Termin endet:" -#: ../../mod/events.php:641 ../../mod/events.php:642 +#: ../../mod/events.php:680 ../../mod/events.php:681 msgid "Adjust for viewer timezone" msgstr "An die Zeitzone des Betrachters anpassen" -#: ../../mod/events.php:641 +#: ../../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:643 -msgid "Description:" -msgstr "Beschreibung:" - -#: ../../mod/events.php:647 +#: ../../mod/events.php:686 msgid "Title:" msgstr "Titel:" -#: ../../mod/events.php:649 +#: ../../mod/events.php:688 msgid "Share this event" msgstr "Den Termin teilen" @@ -4611,12 +4515,12 @@ msgstr "Öffentliche Server" #: ../../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." +"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 Server sind öffentlich und erlauben die Registrierung bei $Projectname. Alle Server dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern 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/pubsites.php:25 msgid "Rate this hub" @@ -4650,599 +4554,13 @@ msgstr "Bewerten" msgid "View ratings" msgstr "Bewertungen ansehen" -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Name ist erforderlich" +#: ../../mod/rpost.php:131 ../../mod/editpost.php:158 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Schlüssel und Geheimnis werden benötigt" - -#: ../../mod/settings.php:120 -msgid "Diaspora Policy Settings updated." -msgstr "Diaspora-Einstellungen aktualisiert." - -#: ../../mod/settings.php:228 -msgid "Passwords do not match. Password unchanged." -msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." - -#: ../../mod/settings.php:232 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." - -#: ../../mod/settings.php:246 -msgid "Password changed." -msgstr "Kennwort geändert." - -#: ../../mod/settings.php:248 -msgid "Password update failed. Please try again." -msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." - -#: ../../mod/settings.php:262 -msgid "Not valid email." -msgstr "Keine gültige E-Mail Adresse." - -#: ../../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/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/settings.php:513 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -#: ../../mod/settings.php:644 -msgid "Add application" -msgstr "Anwendung hinzufügen" - -#: ../../mod/settings.php:585 -msgid "Name of application" -msgstr "Name der Anwendung" - -#: ../../mod/settings.php:586 ../../mod/settings.php:612 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../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/settings.php:587 ../../mod/settings.php:613 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:588 ../../mod/settings.php:614 -msgid "Redirect" -msgstr "Umleitung" - -#: ../../mod/settings.php:588 -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" - -#: ../../mod/settings.php:589 -msgid "Optional" -msgstr "Optional" - -#: ../../mod/settings.php:600 -msgid "You can't edit this application." -msgstr "Diese Anwendung kann nicht bearbeitet werden." - -#: ../../mod/settings.php:643 -msgid "Connected Apps" -msgstr "Verbundene Apps" - -#: ../../mod/settings.php:647 -msgid "Client key starts with" -msgstr "Client Key beginnt mit" - -#: ../../mod/settings.php:648 -msgid "No name" -msgstr "Kein Name" - -#: ../../mod/settings.php:649 -msgid "Remove authorization" -msgstr "Authorisierung aufheben" - -#: ../../mod/settings.php:663 -msgid "No feature settings configured" -msgstr "Keine Funktions-Einstellungen konfiguriert" - -#: ../../mod/settings.php:676 -msgid "Feature Settings" -msgstr "Funktions-Einstellungen" - -#: ../../mod/settings.php:679 -msgid "Diaspora Policy Settings" -msgstr "Diaspora-Einstellungen" - -#: ../../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/settings.php:681 -msgid "Submit Diaspora Policy Settings" -msgstr "Diaspora-Einstellungen speichern" - -#: ../../mod/settings.php:704 -msgid "Account Settings" -msgstr "Konto-Einstellungen" - -#: ../../mod/settings.php:705 -msgid "Password Settings" -msgstr "Kennwort-Einstellungen" - -#: ../../mod/settings.php:706 -msgid "New Password:" -msgstr "Neues Passwort:" - -#: ../../mod/settings.php:707 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: ../../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/settings.php:709 ../../mod/settings.php:1045 -msgid "Email Address:" -msgstr "Email Adresse:" - -#: ../../mod/settings.php:710 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Konto entfernen" - -#: ../../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/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/settings.php:728 -msgid "Off" -msgstr "Aus" - -#: ../../mod/settings.php:728 -msgid "On" -msgstr "An" - -#: ../../mod/settings.php:735 -msgid "Additional Features" -msgstr "Zusätzliche Funktionen" - -#: ../../mod/settings.php:759 -msgid "Connector Settings" -msgstr "Connector-Einstellungen" - -#: ../../mod/settings.php:798 -msgid "No special theme for mobile devices" -msgstr "Keine spezielle Theme für mobile Geräte" - -#: ../../mod/settings.php:801 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s – (experimentell)" - -#: ../../mod/settings.php:804 ../../mod/admin.php:367 -msgid "mobile" -msgstr "mobil" - -#: ../../mod/settings.php:840 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: ../../mod/settings.php:846 -msgid "Display Theme:" -msgstr "Anzeige-Theme:" - -#: ../../mod/settings.php:847 -msgid "Mobile Theme:" -msgstr "Mobile Theme:" - -#: ../../mod/settings.php:848 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom auf Mobilgeräten aktivieren" - -#: ../../mod/settings.php:849 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: ../../mod/settings.php:849 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 Sekunden, kein Maximum" - -#: ../../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/settings.php:850 -msgid "Maximum of 100 items" -msgstr "Maximum: 100 Beiträge" - -#: ../../mod/settings.php:851 -msgid "Don't show emoticons" -msgstr "Emoticons nicht anzeigen" - -#: ../../mod/settings.php:852 -msgid "Link post titles to source" -msgstr "Beitragstitel zum Originalbeitrag verlinken" - -#: ../../mod/settings.php:853 -msgid "System Page Layout Editor - (advanced)" -msgstr "System-Seitenlayout-Editor (für Experten)" - -#: ../../mod/settings.php:856 -msgid "Use blog/list mode on channel page" -msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" - -#: ../../mod/settings.php:856 ../../mod/settings.php:857 -msgid "(comments displayed separately)" -msgstr "(Kommentare werden separat angezeigt)" - -#: ../../mod/settings.php:857 -msgid "Use blog/list mode on matrix page" -msgstr "Blog-/Listenmodus auf der Matrixseite verwenden" - -#: ../../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/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/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/settings.php:893 -msgid "Nobody except yourself" -msgstr "Niemand außer Dir selbst" - -#: ../../mod/settings.php:894 -msgid "Only those you specifically allow" -msgstr "Nur die, denen Du es explizit erlaubst" - -#: ../../mod/settings.php:895 -msgid "Approved connections" -msgstr "Angenommene Verbindungen" - -#: ../../mod/settings.php:896 -msgid "Any connections" -msgstr "Beliebige Verbindungen" - -#: ../../mod/settings.php:897 -msgid "Anybody on this website" -msgstr "Jeder auf dieser Website" - -#: ../../mod/settings.php:898 -msgid "Anybody in this network" -msgstr "Alle Red-Nutzer" - -#: ../../mod/settings.php:899 -msgid "Anybody authenticated" -msgstr "Jeder authentifizierte" - -#: ../../mod/settings.php:900 -msgid "Anybody on the internet" -msgstr "Jeder im Internet" - -#: ../../mod/settings.php:974 -msgid "Publish your default profile in the network directory" -msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" - -#: ../../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/settings.php:988 -msgid "Your channel address is" -msgstr "Deine Kanal-Adresse lautet" - -#: ../../mod/settings.php:1036 -msgid "Channel Settings" -msgstr "Kanal-Einstellungen" - -#: ../../mod/settings.php:1043 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: ../../mod/settings.php:1046 -msgid "Your Timezone:" -msgstr "Ihre Zeitzone:" - -#: ../../mod/settings.php:1047 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: ../../mod/settings.php:1047 -msgid "Geographical location to display on your posts" -msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" - -#: ../../mod/settings.php:1048 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: ../../mod/settings.php:1050 -msgid "Adult Content" -msgstr "Nicht jugendfreie Inhalte" - -#: ../../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/settings.php:1052 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Datenschutz-Einstellungen" - -#: ../../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/settings.php:1056 -msgid "Hide my online presence" -msgstr "Meine Online-Präsenz verbergen" - -#: ../../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/settings.php:1058 -msgid "Simple Privacy Settings:" -msgstr "Einfache Privatsphäre-Einstellungen" - -#: ../../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/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/settings.php:1061 -msgid "Private - default private, never open or public" -msgstr "Privat – Standard privat, nie offen oder öffentlich" - -#: ../../mod/settings.php:1062 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockiert – Alle standardmäßig blockiert" - -#: ../../mod/settings.php:1064 -msgid "Allow others to tag your posts" -msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" - -#: ../../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/settings.php:1066 -msgid "Advanced Privacy Settings" -msgstr "Fortgeschrittene Privatsphäre-Einstellungen" - -#: ../../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/settings.php:1068 -msgid "0 or blank prevents expiration" -msgstr "0 oder kein Inhalt verhindern das Verfallen" - -#: ../../mod/settings.php:1069 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Kontaktanfragen pro Tag:" - -#: ../../mod/settings.php:1069 -msgid "May reduce spam activity" -msgstr "Kann die Spam-Aktivität verringern" - -#: ../../mod/settings.php:1070 -msgid "Default Post Permissions" -msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" - -#: ../../mod/settings.php:1071 ../../mod/mitem.php:161 ../../mod/mitem.php:204 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - -#: ../../mod/settings.php:1075 -msgid "Channel permissions category:" -msgstr "Zugriffsrechte-Kategorie des Kanals:" - -#: ../../mod/settings.php:1081 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" - -#: ../../mod/settings.php:1081 -msgid "Useful to reduce spamming" -msgstr "Nützlich, um Spam zu verringern" - -#: ../../mod/settings.php:1084 -msgid "Notification Settings" -msgstr "Benachrichtigungs-Einstellungen" - -#: ../../mod/settings.php:1085 -msgid "By default post a status message when:" -msgstr "Sende standardmäßig Status-Nachrichten, wenn:" - -#: ../../mod/settings.php:1086 -msgid "accepting a friend request" -msgstr "Du eine Verbindungsanfrage annimmst" - -#: ../../mod/settings.php:1087 -msgid "joining a forum/community" -msgstr "Du einem Forum beitrittst" - -#: ../../mod/settings.php:1088 -msgid "making an interesting profile change" -msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" - -#: ../../mod/settings.php:1089 -msgid "Send a notification email when:" -msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" - -#: ../../mod/settings.php:1090 -msgid "You receive a connection request" -msgstr "Du eine Verbindungsanfrage erhältst" - -#: ../../mod/settings.php:1091 -msgid "Your connections are confirmed" -msgstr "Eine Verbindung bestätigt wurde" - -#: ../../mod/settings.php:1092 -msgid "Someone writes on your profile wall" -msgstr "Jemand auf Deine Pinnwand schreibt" - -#: ../../mod/settings.php:1093 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" - -#: ../../mod/settings.php:1094 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" - -#: ../../mod/settings.php:1095 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" - -#: ../../mod/settings.php:1096 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" - -#: ../../mod/settings.php:1097 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" - -#: ../../mod/settings.php:1100 -msgid "Show visual notifications including:" -msgstr "Visuelle Benachrichtigungen anzeigen für:" - -#: ../../mod/settings.php:1102 -msgid "Unseen matrix activity" -msgstr "Ungesehene Matrix-Aktivität" - -#: ../../mod/settings.php:1103 -msgid "Unseen channel activity" -msgstr "Ungesehene Kanal-Aktivität" - -#: ../../mod/settings.php:1104 -msgid "Unseen private messages" -msgstr "Ungelesene persönliche Nachrichten" - -#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 -msgid "Recommended" -msgstr "Empfohlen" - -#: ../../mod/settings.php:1105 -msgid "Upcoming events" -msgstr "Baldige Termine" - -#: ../../mod/settings.php:1106 -msgid "Events today" -msgstr "Heutige Termine" - -#: ../../mod/settings.php:1107 -msgid "Upcoming birthdays" -msgstr "Baldige Geburtstage" - -#: ../../mod/settings.php:1107 -msgid "Not available in all themes" -msgstr "Nicht in allen Themes verfügbar" - -#: ../../mod/settings.php:1108 -msgid "System (personal) notifications" -msgstr "System – (persönliche) Benachrichtigungen" - -#: ../../mod/settings.php:1109 -msgid "System info messages" -msgstr "System – Info-Nachrichten" - -#: ../../mod/settings.php:1110 -msgid "System critical alerts" -msgstr "System – kritische Warnungen" - -#: ../../mod/settings.php:1111 -msgid "New connections" -msgstr "Neue Verbindungen" - -#: ../../mod/settings.php:1112 -msgid "System Registrations" -msgstr "System – Registrierungen" - -#: ../../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/settings.php:1115 -msgid "Notify me of events this many days in advance" -msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" - -#: ../../mod/settings.php:1115 -msgid "Must be greater than 0" -msgstr "Muss größer als 0 sein" - -#: ../../mod/settings.php:1117 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" - -#: ../../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/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/settings.php:1122 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" - -#: ../../mod/settings.php:1124 -msgid "Personal menu to display in your channel pages" -msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" - -#: ../../mod/settings.php:1125 -msgid "Remove this channel" -msgstr "Diesen Kanal löschen" - -#: ../../mod/cloud.php:120 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Schlagwort entfernt" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" - -#: ../../mod/tagrm.php:133 ../../mod/delegate.php:130 ../../mod/photos.php:873 -msgid "Remove" -msgstr "Entferne" +#: ../../mod/dav.php:121 +msgid "$Projectname channel" +msgstr "$Projectname-Kanal" #: ../../mod/group.php:20 msgid "Collection created." @@ -5280,465 +4598,134 @@ msgstr "Löschen der Sammlung nicht möglich." msgid "Collection Editor" msgstr "Sammlung-Editor" -#: ../../mod/group.php:196 +#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 msgid "Members" msgstr "Mitglieder" -#: ../../mod/group.php:198 +#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 msgid "All Connected Channels" msgstr "Alle verbundenen Kanäle" -#: ../../mod/group.php:233 +#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 msgid "Click on a channel to add or remove." msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../mod/siteinfo.php:93 +#: ../../mod/siteinfo.php:112 #, php-format msgid "Version %s" msgstr "Version %s" -#: ../../mod/siteinfo.php:114 +#: ../../mod/siteinfo.php:133 msgid "Installed plugins/addons/apps:" msgstr "Installierte Plugins/Addons/Apps" -#: ../../mod/siteinfo.php:127 +#: ../../mod/siteinfo.php:146 msgid "No installed plugins/addons/apps" msgstr "Keine installierten Plugins/Addons/Apps" -#: ../../mod/siteinfo.php:136 -msgid "Red" -msgstr "Red" +#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:64 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../mod/siteinfo.php:137 +#: ../../mod/siteinfo.php:156 msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " +"This is a hub of $Projectname - 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." +msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." -#: ../../mod/siteinfo.php:139 +#: ../../mod/siteinfo.php:158 msgid "Tag: " msgstr "Schlagwort: " -#: ../../mod/siteinfo.php:141 +#: ../../mod/siteinfo.php:160 msgid "Last background fetch: " msgstr "Letzter Hintergrundabruf:" -#: ../../mod/siteinfo.php:144 +#: ../../mod/siteinfo.php:163 msgid "Running at web location" msgstr "Erreichbar unter der Web-Adresse" -#: ../../mod/siteinfo.php:145 +#: ../../mod/siteinfo.php:164 msgid "" -"Please visit RedMatrix.me to learn more" -" about the Red Matrix." -msgstr "Bitte besuchen Sie RedMatrix.me, um mehr über RedMatrix zu erfahren." +"Please visit redmatrix.me to learn more" +" about $Projectname." +msgstr "Bitte besuchen Sie redmatrix.me, um mehr über $Projectname zu erfahren." -#: ../../mod/siteinfo.php:146 +#: ../../mod/siteinfo.php:165 msgid "Bug reports and issues: please visit" msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../mod/siteinfo.php:149 +#: ../../mod/siteinfo.php:167 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" + +#: ../../mod/siteinfo.php:168 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/siteinfo.php:151 +#: ../../mod/siteinfo.php:170 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:238 -msgid "Not Found" -msgstr "Nicht gefunden" +#: ../../mod/item.php:440 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" -msgstr "Red Matrix Server - Installation" +#: ../../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/setup.php:172 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." +#: ../../mod/item.php:914 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." -#: ../../mod/setup.php:176 -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/item.php:1146 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Kann Tabelle nicht erstellen." - -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Die Datenbank Deines Hubs wurde installiert." - -#: ../../mod/setup.php:194 -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/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/setup.php:261 -msgid "System check" -msgstr "Systemprüfung" - -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Bitte nochmal prüfen" - -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Datenbank Verbindung" - -#: ../../mod/setup.php:290 -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." - -#: ../../mod/setup.php:291 -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." - -#: ../../mod/setup.php:292 -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." - -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Datenbank-Servername" - -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "Standard ist localhost" - -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Datenbank-Port" - -#: ../../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/setup.php:298 -msgid "Database Login Name" -msgstr "Datenbank-Benutzername" - -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Datenbank-Kennwort" - -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Datenbank-Name" - -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Datenbanktyp" - -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "E-Mail Adresse des Seiten-Administrators" - -#: ../../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/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "Server-URL" - -#: ../../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/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Standard-Zeitzone für Deinen Server" - -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Seiteneinstellungen" - -#: ../../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/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/setup.php:400 -msgid "PHP executable path" -msgstr "PHP Pfad zu ausführbarer Datei" - -#: ../../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/setup.php:405 -msgid "Command line PHP" -msgstr "PHP Befehlszeile" - -#: ../../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/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." - -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../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/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/setup.php:441 -msgid "Generate encryption keys" -msgstr "Verschlüsselungsschlüssel generieren" - -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "libCurl-PHP-Modul" - -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "GD-Grafik-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 oder 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" - -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "Apache-mod_rewrite-Modul" - -#: ../../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/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" - -#: ../../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/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/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/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/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/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/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/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/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 "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/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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst." - -#: ../../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/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php ist beschreibbar" - -#: ../../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/setup.php:525 +#: ../../mod/item.php:1153 #, 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 "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." -#: ../../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/setup.php:527 +#: ../../mod/item.php:1160 #, 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 "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." -#: ../../mod/setup.php:530 -#, php-format -msgid "%s is writable" -msgstr "%s ist beschreibbar" +#: ../../mod/network.php:91 +msgid "No such group" +msgstr "Sammlung nicht gefunden" -#: ../../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/network.php:129 +msgid "No such channel" +msgstr "Kanal nicht gefunden" -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "store ist schreibbar" +#: ../../mod/network.php:143 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" -#: ../../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/network.php:198 +msgid "Collection is empty" +msgstr "Sammlung ist leer" -#: ../../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/network.php:207 +msgid "Collection: " +msgstr "Sammlung:" -#: ../../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/network.php:226 +msgid "Connection: " +msgstr "Verbindung:" -#: ../../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/setup.php:581 -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/setup.php:582 -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/setup.php:584 -msgid "SSL certificate validation" -msgstr "SSL Zertifikatverifizierung" - -#: ../../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/setup.php:592 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" - -#: ../../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/setup.php:625 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." - -#: ../../mod/setup.php:660 -msgid "

What next

" -msgstr "

Was als Nächstes

" - -#: ../../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/network.php:233 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." #: ../../mod/common.php:10 msgid "No channel." @@ -5752,203 +4739,292 @@ msgstr "Gemeinsame Verbindungen" msgid "No connections in common." msgstr "Keine gemeinsamen Verbindungen." -#: ../../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/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:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Alle" - -#: ../../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:" -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webseite" +#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 +msgid "Block Name" +msgstr "Datenblockname" -#: ../../mod/impel.php:38 -msgid "block" -msgstr "Block" +#: ../../mod/blocks.php:149 +msgid "Block Title" +msgstr "Titel des Blocks" -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "Layout" +#: ../../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/impel.php:117 +#: ../../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: +++" +msgstr "$Projectname-Gäste: Benutzername: {Ihre E-Mail-Adresse}, Passwort: +++" + +#: ../../mod/photos.php:78 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." + +#: ../../mod/photos.php:98 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../mod/photos.php:120 ../../mod/photos.php:655 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../mod/photos.php:160 ../../mod/photos.php:942 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../mod/photos.php:452 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" + +#: ../../mod/photos.php:496 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." + +#: ../../mod/photos.php:535 #, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." -#: ../../mod/tagger.php:96 +#: ../../mod/photos.php:538 #, 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" +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." -#: ../../mod/item.php:165 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." +#: ../../mod/photos.php:562 +msgid "Upload Photos" +msgstr "Fotos hochladen" -#: ../../mod/item.php:424 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" -#: ../../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/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" -#: ../../mod/item.php:865 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../mod/photos.php:568 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" -#: ../../mod/item.php:1083 +#: ../../mod/photos.php:596 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" + +#: ../../mod/photos.php:637 ../../mod/photos.php:1169 +#: ../../mod/photos.php:1185 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" + +#: ../../mod/photos.php:661 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" + +#: ../../mod/photos.php:663 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" + +#: ../../mod/photos.php:687 ../../mod/photos.php:1217 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../mod/photos.php:716 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../mod/photos.php:761 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." + +#: ../../mod/photos.php:763 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../mod/photos.php:821 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../mod/photos.php:828 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:843 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../mod/photos.php:921 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../mod/photos.php:923 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../mod/photos.php:924 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" + +#: ../../mod/photos.php:931 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../mod/photos.php:933 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../mod/photos.php:937 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../mod/photos.php:940 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" + +#: ../../mod/photos.php:1132 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../mod/photos.php:1137 +msgid "Map" +msgstr "Karte" + +#: ../../mod/photos.php:1223 +msgid "View Album" +msgstr "Album ansehen" + +#: ../../mod/photos.php:1246 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../mod/search.php:206 #, 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." +msgid "Items tagged with: %s" +msgstr "Beiträge mit Schlagwort: %s" -#: ../../mod/item.php:1089 +#: ../../mod/search.php:208 #, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" -#: ../../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/match.php:22 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Sache aktualisiert" +#: ../../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/thing.php:156 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" +#: ../../mod/match.php:63 +msgid "is interested in:" +msgstr "interessiert sich für:" -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Sache hinzugefügt" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Sache anzeigen" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Eintrag nicht gefunden" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Sache bearbeiten" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Wähle ein Profil" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" - -#: ../../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/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +#: ../../mod/match.php:70 +msgid "No matches" +msgstr "Keine Übereinstimmungen" #: ../../mod/chatsvc.php:111 msgid "Away" @@ -5958,9 +5034,25 @@ msgstr "Abwesend" msgid "Online" msgstr "Online" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal hinzugefügt." +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Lesezeichenordner wählen" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Lesezeichen speichern" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL des Lesezeichens" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Beschreibung" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" #: ../../mod/notify.php:53 ../../mod/notifications.php:94 msgid "No more system notifications." @@ -5980,7 +5072,7 @@ msgstr "RSS" #: ../../mod/pdledit.php:13 msgid "Layout updated." -msgstr "Layout aktualisiert." +msgstr "Gestaltung aktualisiert." #: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 msgid "Edit System Page Description" @@ -5988,67 +5080,15 @@ msgstr "Systemseitenbeschreibung bearbeiten" #: ../../mod/pdledit.php:48 msgid "Layout not found." -msgstr "Layout nicht gefunden." +msgstr "Gestaltung nicht gefunden." #: ../../mod/pdledit.php:54 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/appman.php:37 -msgid "Malformed app." -msgstr "Fehlerhafte App." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Code einbetten" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bearbeiten" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App erstellen" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Name der App" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" - -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Beschreibung" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL zum Icon" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versions-ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Preis der App" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" +msgstr "Gestaltungshilfe" #: ../../mod/filer.php:49 msgid "- select -" @@ -6059,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" @@ -6136,25 +5176,38 @@ 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/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:108 -msgid "Edit Layout" -msgstr "Layout 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 "Layout löschen?" +msgstr "Gestaltung löschen?" -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Layout löschen" +#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 +msgid "Layout Description (Optional)" +msgstr "Gestaltungsbeschreibung (Optional)" + +#: ../../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." @@ -6197,21 +5250,141 @@ msgstr "Name des Chatraums" msgid "%1$s's Chatrooms" msgstr "%1$ss Chaträume" -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" +#: ../../mod/mitem.php:24 ../../mod/menu.php:138 +msgid "Menu not found." +msgstr "Menü nicht gefunden" -#: ../../mod/editwebpage.php:150 +#: ../../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?" -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Webseite löschen" +#: ../../mod/editwebpage.php:173 +msgid "Page link title" +msgstr "Seitentitel-Link" -#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22 -msgid "This site is not a directory server" -msgstr "Diese Website ist kein Verzeichnis-Server" +#: ../../mod/editwebpage.php:224 +msgid "Edit Webpage" +msgstr "Webseite bearbeiten" + +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "Dieser Verzeichnis-Server benötigt ein Zugangstoken" #: ../../mod/lostpass.php:15 msgid "No valid account found." @@ -6221,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)" @@ -6237,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:1560 +#: ../../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 "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." +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" @@ -6293,7 +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 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" + +#: ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" + +#: ../../mod/editblock.php:117 +msgid "Delete block?" +msgstr "Block löschen?" + +#: ../../mod/editblock.php:179 +msgid "Edit Block" +msgstr "Block bearbeiten" #: ../../mod/invite.php:25 msgid "Total invitation limit exceeded." @@ -6341,20 +5530,21 @@ msgid "Your message:" msgstr "Deine Nachricht:" #: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Schließe Dich uns in der RedMatrix an!" +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" #: ../../mod/invite.php:134 msgid "You will need to supply this invitation code: " msgstr "Gib folgenden Einladungs-Code ein:" #: ../../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)" +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Server (sie sind alle miteinander verbunden)" #: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein." +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." #: ../../mod/invite.php:138 msgid "or visit " @@ -6420,7 +5610,7 @@ msgstr "Neue Quelle" 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." +msgstr "Importieren Sie alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteilen Sie sie gemäß der Ihrer Kanaleinstellungen." #: ../../mod/sources.php:102 ../../mod/sources.php:134 msgid "Only import content with these words (one per line)" @@ -6455,145 +5645,137 @@ msgstr "Quelle gelöscht" msgid "Unable to remove source." msgstr "Konnte die Quelle nicht löschen." -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Menü aktualisiert." - -#: ../../mod/menu.php:35 +#: ../../mod/menu.php:45 msgid "Unable to update menu." msgstr "Kann Menü nicht aktualisieren." -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Menü erstellt." - -#: ../../mod/menu.php:44 +#: ../../mod/menu.php:56 msgid "Unable to create menu." msgstr "Kann Menü nicht erstellen." -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Menüs verwalten" +#: ../../mod/menu.php:92 ../../mod/menu.php:104 +msgid "Menu Name" +msgstr "Name des Menüs" -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Löschen" +#: ../../mod/menu.php:92 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" +#: ../../mod/menu.php:93 ../../mod/menu.php:105 +msgid "Menu Title" +msgstr "Menütitel" -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Neues Menü erstellen" +#: ../../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:83 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" +#: ../../mod/menu.php:94 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" - -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" - -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Neues Menü" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Menü Name" - -#: ../../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/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Menü Titel" - -#: ../../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/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 +#: ../../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:108 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menü nicht gefunden" +#: ../../mod/menu.php:95 ../../mod/menu.php:153 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Menü gelöscht." +#: ../../mod/menu.php:107 +msgid "Drop" +msgstr "Löschen" -#: ../../mod/menu.php:116 +#: ../../mod/menu.php:111 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../mod/menu.php:113 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../mod/menu.php:114 ../../mod/menu.php:148 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../mod/menu.php:115 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../mod/menu.php:130 msgid "Menu could not be deleted." msgstr "Menü konnte nicht gelöscht werden." -#: ../../mod/menu.php:122 +#: ../../mod/menu.php:143 msgid "Edit Menu" msgstr "Menü bearbeiten" -#: ../../mod/menu.php:124 +#: ../../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:130 ../../mod/mitem.php:213 -msgid "Modify" -msgstr "Ändern" +#: ../../mod/menu.php:149 +msgid "Menu name" +msgstr "Menü Name" -#: ../../mod/filestorage.php:81 +#: ../../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:150 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../mod/menu.php:150 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../mod/menu.php:151 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../mod/filestorage.php:82 msgid "Permission Denied." msgstr "Zugriff verweigert." -#: ../../mod/filestorage.php:97 +#: ../../mod/filestorage.php:98 msgid "File not found." msgstr "Datei nicht gefunden." -#: ../../mod/filestorage.php:140 +#: ../../mod/filestorage.php:141 msgid "Edit file permissions" msgstr "Dateiberechtigungen bearbeiten" -#: ../../mod/filestorage.php:149 +#: ../../mod/filestorage.php:150 msgid "Set/edit permissions" msgstr "Berechtigungen setzen/ändern" -#: ../../mod/filestorage.php:150 +#: ../../mod/filestorage.php:151 msgid "Include all files and sub folders" msgstr "Alle Dateien und Unterverzeichnisse einbinden" -#: ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:152 msgid "Return to file list" msgstr "Zurück zur Dateiliste" -#: ../../mod/filestorage.php:153 +#: ../../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/filestorage.php:154 +#: ../../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/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Diese Datei an einen neuen Beitrag anhängen" - #: ../../mod/filestorage.php:157 +msgid "Share this file" +msgstr "Diese Datei freigeben" + +#: ../../mod/filestorage.php:158 msgid "Show URL to this file" msgstr "URL zu dieser Datei anzeigen" -#: ../../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/filestorage.php:159 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." @@ -6612,7 +5794,7 @@ msgstr "Kontakte vorschlagen" msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: ../../mod/magic.php:70 +#: ../../mod/magic.php:69 msgid "Hub not found." msgstr "Server nicht gefunden." @@ -6652,13 +5834,15 @@ msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." msgid "Visible To" msgstr "Sichtbar für" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." +#: ../../mod/impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: ../../mod/impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s ist fehlgeschlagen" #: ../../mod/profiles.php:18 ../../mod/profiles.php:174 #: ../../mod/profiles.php:231 ../../mod/profiles.php:600 @@ -6687,7 +5871,7 @@ msgstr "Dieses Profil kann nicht exportiert werden." #: ../../mod/profiles.php:241 msgid "Profile Name is required." -msgstr "Profil-Name erforderlich." +msgstr "Profilname ist erforderlich." #: ../../mod/profiles.php:404 msgid "Marital Status" @@ -6717,7 +5901,7 @@ msgstr "Religion" msgid "Political Views" msgstr "Politische Ansichten" -#: ../../mod/profiles.php:431 +#: ../../mod/profiles.php:431 ../../mod/id.php:33 msgid "Gender" msgstr "Geschlecht" @@ -6733,7 +5917,7 @@ msgstr "Webseite" msgid "Interests" msgstr "Hobbys/Interessen" -#: ../../mod/profiles.php:447 ../../mod/admin.php:871 +#: ../../mod/profiles.php:447 ../../mod/admin.php:994 msgid "Address" msgstr "Adresse" @@ -6901,7 +6085,7 @@ msgstr "Schule/Ausbildung" msgid "This is your default profile." msgstr "Das ist Dein Standardprofil." -#: ../../mod/profiles.php:728 ../../mod/directory.php:188 +#: ../../mod/profiles.php:728 msgid "Age: " msgstr "Alter:" @@ -6937,113 +6121,437 @@ msgstr "Webseite: " msgid "Description: " msgstr "Beschreibung: " -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." +#: ../../mod/viewsrc.php:38 +msgid "Source of Item" +msgstr "Quelle des Elements" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für diese Seite" +#: ../../mod/setup.php:187 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Server-Einrichtung" -#: ../../mod/delegate.php:123 +#: ../../mod/setup.php:191 +msgid "Could not connect to database." +msgstr "Kann nicht mit der Datenbank verbinden." + +#: ../../mod/setup.php:195 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!" +"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/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" +#: ../../mod/setup.php:202 +msgid "Could not create table." +msgstr "Kann Tabelle nicht erstellen." -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" +#: ../../mod/setup.php:207 +msgid "Your site database has been installed." +msgstr "Die Datenbank Deines Hubs wurde installiert." -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" +#: ../../mod/setup.php:211 +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/delegate.php:131 -msgid "Add" -msgstr "Hinzufügen" +#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Lies die Datei \"install/INSTALL.txt\"." -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Keine Einträge." +#: ../../mod/setup.php:277 +msgid "System check" +msgstr "Systemprüfung" -#: ../../mod/directory.php:194 +#: ../../mod/setup.php:282 +msgid "Check again" +msgstr "Bitte nochmal prüfen" + +#: ../../mod/setup.php:304 +msgid "Database connection" +msgstr "Datenbank Verbindung" + +#: ../../mod/setup.php:305 +msgid "" +"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/setup.php:306 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktieren Sie Ihren Hosting-Provider oder Administrator, falls Sie Fragen zu diesen Einstellungen haben." + +#: ../../mod/setup.php:307 +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." + +#: ../../mod/setup.php:311 +msgid "Database Server Name" +msgstr "Datenbank-Servername" + +#: ../../mod/setup.php:311 +msgid "Default is localhost" +msgstr "Standard ist localhost" + +#: ../../mod/setup.php:312 +msgid "Database Port" +msgstr "Datenbank-Port" + +#: ../../mod/setup.php:312 +msgid "Communication port number - use 0 for default" +msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" + +#: ../../mod/setup.php:313 +msgid "Database Login Name" +msgstr "Datenbank-Benutzername" + +#: ../../mod/setup.php:314 +msgid "Database Login Password" +msgstr "Datenbank-Kennwort" + +#: ../../mod/setup.php:315 +msgid "Database Name" +msgstr "Datenbank-Name" + +#: ../../mod/setup.php:316 +msgid "Database Type" +msgstr "Datenbanktyp" + +#: ../../mod/setup.php:318 ../../mod/setup.php:359 +msgid "Site administrator email address" +msgstr "E-Mail Adresse des Seiten-Administrators" + +#: ../../mod/setup.php:318 ../../mod/setup.php:359 +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/setup.php:319 ../../mod/setup.php:361 +msgid "Website URL" +msgstr "URL der Webseite" + +#: ../../mod/setup.php:319 ../../mod/setup.php:361 +msgid "Please use SSL (https) URL if available." +msgstr "Nutze wenn möglich eine SSL-URL (https)." + +#: ../../mod/setup.php:321 ../../mod/setup.php:363 +msgid "Please select a default timezone for your website" +msgstr "Standard-Zeitzone für Deinen Server" + +#: ../../mod/setup.php:348 +msgid "Site settings" +msgstr "Seiteneinstellungen" + +#: ../../mod/setup.php:413 +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/setup.php:414 +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/setup.php:418 +msgid "PHP executable path" +msgstr "PHP Pfad zu ausführbarer Datei" + +#: ../../mod/setup.php:418 +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/setup.php:423 +msgid "Command line PHP" +msgstr "PHP Befehlszeile" + +#: ../../mod/setup.php:432 +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/setup.php:433 +msgid "This is required for message delivery to work." +msgstr "Das ist für die funktionierende Auslieferung von Nachrichten erforderlich." + +#: ../../mod/setup.php:436 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/setup.php:454 #, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d Bewertung" -msgstr[1] "%d Bewertungen" +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/directory.php:206 -msgid "Gender: " -msgstr "Geschlecht:" +#: ../../mod/setup.php:459 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." -#: ../../mod/directory.php:208 -msgid "Status: " -msgstr "Status:" +#: ../../mod/setup.php:461 +msgid "PHP upload limits" +msgstr "PHP-Hochladebeschränkungen" -#: ../../mod/directory.php:210 -msgid "Homepage: " -msgstr "Webseite:" +#: ../../mod/setup.php:484 +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/directory.php:213 -msgid "Hometown: " -msgstr "Wohnort:" +#: ../../mod/setup.php:485 +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/directory.php:215 -msgid "About: " -msgstr "Über:" +#: ../../mod/setup.php:488 +msgid "Generate encryption keys" +msgstr "Verschlüsselungsschlüssel generieren" -#: ../../mod/directory.php:273 -msgid "Public Forum:" -msgstr "Öffentliches Forum:" +#: ../../mod/setup.php:500 +msgid "libCurl PHP module" +msgstr "libCurl-PHP-Modul" -#: ../../mod/directory.php:276 -msgid "Keywords: " -msgstr "Schlüsselwörter:" +#: ../../mod/setup.php:501 +msgid "GD graphics PHP module" +msgstr "GD-Grafik-PHP-Modul" -#: ../../mod/directory.php:331 -msgid "Finding:" -msgstr "Ergebnisse:" +#: ../../mod/setup.php:502 +msgid "OpenSSL PHP module" +msgstr "OpenSSL-PHP-Modul" -#: ../../mod/directory.php:336 -msgid "next page" -msgstr "nächste Seite" +#: ../../mod/setup.php:503 +msgid "mysqli or postgres PHP module" +msgstr "mysqli oder postgres PHP-Modul" -#: ../../mod/directory.php:336 -msgid "previous page" -msgstr "vorherige Seite" +#: ../../mod/setup.php:504 +msgid "mb_string PHP module" +msgstr "mb_string-PHP-Modul" -#: ../../mod/directory.php:353 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." +#: ../../mod/setup.php:505 +msgid "mcrypt PHP module" +msgstr "mcrypt-PHP-Modul" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" +#: ../../mod/setup.php:506 +msgid "xml PHP module" +msgstr "xml-PHP-Modul" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" +#: ../../mod/setup.php:510 ../../mod/setup.php:512 +msgid "Apache mod_rewrite module" +msgstr "Apache-mod_rewrite-Modul" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" +#: ../../mod/setup.php:510 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite ist erforderlich, aber nicht installiert." -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" +#: ../../mod/setup.php:516 ../../mod/setup.php:519 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +#: ../../mod/setup.php:516 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Fehler: proc_open ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert" + +#: ../../mod/setup.php:524 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul libCURL ist erforderlich, aber nicht installiert." + +#: ../../mod/setup.php:528 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung ist erforderlich, aber nicht installiert." + +#: ../../mod/setup.php:532 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul openssl ist erforderlich, aber nicht installiert." + +#: ../../mod/setup.php:536 +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/setup.php:540 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mb_string ist erforderlich, aber nicht installiert." + +#: ../../mod/setup.php:544 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mcrypt ist erforderlich, aber nicht installiert." + +#: ../../mod/setup.php:548 +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/setup.php:566 +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/setup.php:567 +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/setup.php:568 +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/setup.php:569 +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/setup.php:572 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php ist beschreibbar" + +#: ../../mod/setup.php:586 +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/setup.php:587 +#, 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." + +#: ../../mod/setup.php:588 ../../mod/setup.php:609 +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/setup.php:589 +#, 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." + +#: ../../mod/setup.php:592 +#, php-format +msgid "%s is writable" +msgstr "%s ist beschreibbar" + +#: ../../mod/setup.php:608 +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/setup.php:612 +msgid "store is writable" +msgstr "store ist schreibbar" + +#: ../../mod/setup.php:645 +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/setup.php:646 +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/setup.php:647 +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/setup.php:648 +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/setup.php:649 +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/setup.php:650 +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/setup.php:652 +msgid "SSL certificate validation" +msgstr "SSL Zertifikatverifizierung" + +#: ../../mod/setup.php:658 +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/setup.php:661 +msgid "Url rewrite is working" +msgstr "Url rewrite funktioniert" + +#: ../../mod/setup.php:670 +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/setup.php:694 +msgid "Errors encountered creating database tables." +msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." + +#: ../../mod/setup.php:728 +msgid "

What next

" +msgstr "

Was als Nächstes

" + +#: ../../mod/setup.php:729 +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/openid.php:26 +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:287 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." + +#: ../../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/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 " @@ -7051,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 " @@ -7064,11 +6572,11 @@ msgid "" "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/viewconnections.php:58 +#: ../../mod/viewconnections.php:62 msgid "No connections." msgstr "Keine Verbindungen." -#: ../../mod/viewconnections.php:71 +#: ../../mod/viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "%ss Profil [%s] besuchen" @@ -7081,654 +6589,787 @@ msgstr "Ungültige Signatur des Ziels" msgid "Theme settings updated." msgstr "Theme-Einstellungen aktualisiert." -#: ../../mod/admin.php:97 ../../mod/admin.php:415 +#: ../../mod/admin.php:93 ../../mod/admin.php:452 msgid "Site" msgstr "Seite" -#: ../../mod/admin.php:98 +#: ../../mod/admin.php:94 msgid "Accounts" msgstr "Konten" -#: ../../mod/admin.php:99 ../../mod/admin.php:863 +#: ../../mod/admin.php:95 ../../mod/admin.php:985 msgid "Channels" msgstr "Kanäle" -#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 +#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 msgid "Plugins" msgstr "Plug-Ins" -#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 +#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 msgid "Themes" msgstr "Themes" -#: ../../mod/admin.php:102 ../../mod/admin.php:517 -msgid "Server" -msgstr "Server" +#: ../../mod/admin.php:98 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" -#: ../../mod/admin.php:103 +#: ../../mod/admin.php:100 msgid "Profile Config" msgstr "Profilkonfiguration" -#: ../../mod/admin.php:104 +#: ../../mod/admin.php:101 msgid "DB updates" msgstr "DB-Aktualisierungen" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 msgid "Logs" msgstr "Protokolle" -#: ../../mod/admin.php:124 +#: ../../mod/admin.php:121 msgid "Plugin Features" msgstr "Plug-In Funktionen" -#: ../../mod/admin.php:126 +#: ../../mod/admin.php:123 msgid "User registrations waiting for confirmation" msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" -#: ../../mod/admin.php:206 +#: ../../mod/admin.php:200 +msgid "# Accounts" +msgstr "Anzahl der Konten" + +#: ../../mod/admin.php:201 +msgid "# blocked accounts" +msgstr "Anzahl der blockierten Konten" + +#: ../../mod/admin.php:202 +msgid "# expired accounts" +msgstr "Anzahl der abgelaufenen Konten" + +#: ../../mod/admin.php:203 +msgid "# expiring accounts" +msgstr "Anzahl der ablaufenden Konten" + +#: ../../mod/admin.php:216 +msgid "# Channels" +msgstr "Anzahl der Kanäle" + +#: ../../mod/admin.php:217 +msgid "# primary" +msgstr "Anzahl der primären Kanäle" + +#: ../../mod/admin.php:218 +msgid "# clones" +msgstr "Anzahl der Klone" + +#: ../../mod/admin.php:224 msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: ../../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 +#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 +#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 +#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 +#: ../../mod/admin.php:1395 msgid "Administration" msgstr "Administration" -#: ../../mod/admin.php:212 +#: ../../mod/admin.php:241 msgid "Summary" msgstr "Zusammenfassung" -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Registrierte Benutzer" +#: ../../mod/admin.php:244 +msgid "Registered accounts" +msgstr "Registrierte Konten" -#: ../../mod/admin.php:216 ../../mod/admin.php:520 +#: ../../mod/admin.php:245 ../../mod/admin.php:552 msgid "Pending registrations" msgstr "Ausstehende Registrierungen" -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Version" +#: ../../mod/admin.php:246 +msgid "Registered channels" +msgstr "Registrierte Kanäle" -#: ../../mod/admin.php:219 ../../mod/admin.php:521 +#: ../../mod/admin.php:247 ../../mod/admin.php:553 msgid "Active plugins" msgstr "Aktive Plug-Ins" -#: ../../mod/admin.php:330 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." +#: ../../mod/admin.php:248 +msgid "Version" +msgstr "Version" -#: ../../mod/admin.php:369 +#: ../../mod/admin.php:363 +msgid "Site settings updated." +msgstr "Seiteneinstellungen aktualisiert." + +#: ../../mod/admin.php:400 ../../mod/settings.php:813 +msgid "mobile" +msgstr "mobil" + +#: ../../mod/admin.php:402 msgid "experimental" msgstr "experimentell" -#: ../../mod/admin.php:371 +#: ../../mod/admin.php:404 msgid "unsupported" msgstr "nicht unterstützt" -#: ../../mod/admin.php:395 +#: ../../mod/admin.php:429 msgid "Yes - with approval" msgstr "Ja - mit Zustimmung" -#: ../../mod/admin.php:401 +#: ../../mod/admin.php:435 msgid "My site is not a public server" msgstr "Mein Server ist kein öffentlicher Server" -#: ../../mod/admin.php:402 +#: ../../mod/admin.php:436 msgid "My site has paid access only" msgstr "Mein Server erlaubt nur bezahlten Zugang" -#: ../../mod/admin.php:403 +#: ../../mod/admin.php:437 msgid "My site has free access only" msgstr "Mein Server erlaubt ausschließlich freien Zugang" -#: ../../mod/admin.php:404 +#: ../../mod/admin.php:438 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../mod/admin.php:417 ../../mod/register.php:207 +#: ../../mod/admin.php:454 ../../mod/register.php:207 msgid "Registration" msgstr "Registrierung" -#: ../../mod/admin.php:418 +#: ../../mod/admin.php:455 msgid "File upload" msgstr "Dateiupload" -#: ../../mod/admin.php:419 +#: ../../mod/admin.php:456 msgid "Policies" msgstr "Richtlinien" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:461 msgid "Site name" msgstr "Seitenname" -#: ../../mod/admin.php:425 +#: ../../mod/admin.php:462 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:463 msgid "Administrator Information" msgstr "Administrator-Informationen" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:463 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/admin.php:427 +#: ../../mod/admin.php:464 msgid "System language" msgstr "System-Sprache" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:465 msgid "System theme" msgstr "System-Theme" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:465 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/admin.php:429 +#: ../../mod/admin.php:466 msgid "Mobile system theme" msgstr "Mobile System-Theme:" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:466 msgid "Theme for mobile devices" msgstr "Theme für mobile Geräte" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:468 msgid "Enable Diaspora Protocol" msgstr "Diaspora-Protokoll aktivieren" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:468 msgid "Communicate with Diaspora and Friendica - experimental" msgstr "Kommunikation mit Diaspora und Friendica – experimentell" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:469 msgid "Allow Feeds as Connections" msgstr "Feeds als Verbindungen erlauben" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:469 msgid "(Heavy system resource usage)" msgstr "(führt zu hoher Systemlast)" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:470 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:470 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/admin.php:434 +#: ../../mod/admin.php:471 msgid "Does this site allow new member registration?" msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:472 msgid "Which best describes the types of account offered by this hub?" msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:473 msgid "Register text" msgstr "Registrierungstext" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:473 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:474 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage des Servers, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" + +#: ../../mod/admin.php:474 +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/admin.php:475 +msgid "Preserve site homepage URL" +msgstr "Homepage-URL schützen" + +#: ../../mod/admin.php:475 +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/admin.php:476 msgid "Accounts abandoned after x days" msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:476 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/admin.php:438 +#: ../../mod/admin.php:477 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:477 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/admin.php:439 +#: ../../mod/admin.php:478 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:478 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/admin.php:440 +#: ../../mod/admin.php:479 msgid "Not allowed email domains" msgstr "Nicht erlaubte Domains für E-Mails" -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:479 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/admin.php:441 +#: ../../mod/admin.php:480 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: ../../mod/admin.php:441 +#: ../../mod/admin.php:480 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 +#: ../../mod/admin.php:481 msgid "Verify Email Addresses" msgstr "E-Mail-Adressen überprüfen" -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:481 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/admin.php:443 +#: ../../mod/admin.php:482 msgid "Force publish" msgstr "Veröffentlichung erzwingen" -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:482 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/admin.php:444 +#: ../../mod/admin.php:483 msgid "Disable discovery tab" msgstr "Den „Entdecken“-Reiter ausblenden" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:483 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:445 -msgid "No login on Homepage" -msgstr "Kein Login auf der Homepage" +#: ../../mod/admin.php:484 +msgid "login on Homepage" +msgstr "Anmeldemaske auf der Homepage" -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:484 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)." +"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/admin.php:447 +#: ../../mod/admin.php:486 msgid "Proxy user" msgstr "Proxy Benutzer" -#: ../../mod/admin.php:448 +#: ../../mod/admin.php:487 msgid "Proxy URL" msgstr "Proxy URL" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:488 msgid "Network timeout" msgstr "Netzwerk-Timeout" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:488 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:450 +#: ../../mod/admin.php:489 msgid "Delivery interval" msgstr "Auslieferung Intervall" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:489 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/admin.php:451 +#: ../../mod/admin.php:490 msgid "Poll interval" msgstr "Abfrageintervall" -#: ../../mod/admin.php:451 +#: ../../mod/admin.php:490 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/admin.php:452 +#: ../../mod/admin.php:491 msgid "Maximum Load Average" msgstr "Maximales Load Average" -#: ../../mod/admin.php:452 +#: ../../mod/admin.php:491 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/admin.php:508 +#: ../../mod/admin.php:492 +msgid "Expiration period in days for imported (matrix/network) content" +msgstr "Setze den Zeitraum (in Tagen), ab wann importierte Inhalte aus der RedMatrix (dem Netzwerk) ablaufen sollen" + +#: ../../mod/admin.php:492 +msgid "0 for no expiration of imported content" +msgstr "Setze 0, damit importierte Inhalte niemals ablaufen (entfernt werden)" + +#: ../../mod/admin.php:540 msgid "No server found" msgstr "Kein Server gefunden" -#: ../../mod/admin.php:515 ../../mod/admin.php:740 +#: ../../mod/admin.php:547 ../../mod/admin.php:831 msgid "ID" msgstr "ID" -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:547 msgid "for channel" msgstr "für Kanal" -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:547 msgid "on server" msgstr "auf Server" -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:547 msgid "Status" msgstr "Status" -#: ../../mod/admin.php:536 +#: ../../mod/admin.php:549 +msgid "Server" +msgstr "Server" + +#: ../../mod/admin.php:566 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: ../../mod/admin.php:546 +#: ../../mod/admin.php:576 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." -#: ../../mod/admin.php:549 +#: ../../mod/admin.php:579 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s wurde erfolgreich ausgeführt." -#: ../../mod/admin.php:553 +#: ../../mod/admin.php:583 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." -#: ../../mod/admin.php:556 +#: ../../mod/admin.php:586 #, php-format msgid "Update function %s could not be found." msgstr "Update-Funktion %s konnte nicht gefunden werden." -#: ../../mod/admin.php:571 +#: ../../mod/admin.php:602 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Aktualisierungen." -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:606 msgid "Failed Updates" msgstr "Fehlgeschlagene Aktualisierungen" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:608 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" -#: ../../mod/admin.php:578 +#: ../../mod/admin.php:609 msgid "Attempt to execute this update step automatically" msgstr "Versuche, diesen Updateschritt automatisch auszuführen" -#: ../../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/admin.php:641 +msgid "Queue Statistics" +msgstr "Warteschlangenstatistiken" -#: ../../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/admin.php:642 +msgid "Total Entries" +msgstr "Einträge insgesamt" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:643 +msgid "Priority" +msgstr "Priorität" + +#: ../../mod/admin.php:644 +msgid "Destination URL" +msgstr "Ziel-URL" + +#: ../../mod/admin.php:645 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markieren" + +#: ../../mod/admin.php:646 +msgid "Empty queue for this hub" +msgstr "Warteschlange für diesen Hub leeren" + +#: ../../mod/admin.php:647 +msgid "Last known contact" +msgstr "Letzter bekannter Kontakt" + +#: ../../mod/admin.php:683 +#, 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/admin.php:691 +#, php-format +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:660 +#: ../../mod/admin.php:739 #, php-format -msgid "User '%s' unblocked" -msgstr "Benutzer '%s' freigegeben" +msgid "Account '%s' deleted" +msgstr "Konte '%s' gelöscht" -#: ../../mod/admin.php:660 +#: ../../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:727 ../../mod/admin.php:739 +#: ../../mod/admin.php:755 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Konto '%s' freigegeben" + +#: ../../mod/admin.php:818 ../../mod/admin.php:830 msgid "Users" msgstr "Benutzer" -#: ../../mod/admin.php:729 ../../mod/admin.php:865 +#: ../../mod/admin.php:820 ../../mod/admin.php:987 msgid "select all" msgstr "Alle auswählen" -#: ../../mod/admin.php:730 +#: ../../mod/admin.php:821 msgid "User registrations waiting for confirm" msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" -#: ../../mod/admin.php:731 +#: ../../mod/admin.php:822 msgid "Request date" msgstr "Antragsdatum" -#: ../../mod/admin.php:732 +#: ../../mod/admin.php:823 msgid "No registrations." msgstr "Keine Registrierungen." -#: ../../mod/admin.php:733 +#: ../../mod/admin.php:824 ../../mod/connedit.php:699 msgid "Approve" msgstr "Genehmigen" -#: ../../mod/admin.php:734 +#: ../../mod/admin.php:825 msgid "Deny" msgstr "Verweigern" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:827 ../../mod/connedit.php:531 +msgid "Block" +msgstr "Blockieren" + +#: ../../mod/admin.php:828 ../../mod/connedit.php:531 +msgid "Unblock" +msgstr "Freigeben" + +#: ../../mod/admin.php:831 msgid "Register date" msgstr "Registrierungs-Datum" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:831 msgid "Last login" msgstr "Letzte Anmeldung" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:831 msgid "Expires" msgstr "Verfällt" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:831 msgid "Service Class" msgstr "Service-Klasse" -#: ../../mod/admin.php:742 +#: ../../mod/admin.php:833 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " +"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 account {0} will be deleted!\\n\\nEverything this account has 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?" +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: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/admin.php:776 +#: ../../mod/admin.php:870 #, 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/admin.php:783 +#: ../../mod/admin.php:879 +#, 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/admin.php:886 #, 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:802 +#: ../../mod/admin.php:906 msgid "Channel not found" msgstr "Kanal nicht gefunden" -#: ../../mod/admin.php:813 +#: ../../mod/admin.php:917 #, php-format msgid "Channel '%s' deleted" msgstr "Kanal '%s' gelöscht" -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" - -#: ../../mod/admin.php:824 +#: ../../mod/admin.php:929 #, php-format msgid "Channel '%s' censored" msgstr "Kanal '%s' gesperrt" -#: ../../mod/admin.php:867 +#: ../../mod/admin.php:929 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" + +#: ../../mod/admin.php:940 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Code für Kanal '%s' freigegeben" + +#: ../../mod/admin.php:940 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Code für Kanal '%s' gesperrt." + +#: ../../mod/admin.php:989 msgid "Censor" msgstr "Sperren" -#: ../../mod/admin.php:868 +#: ../../mod/admin.php:990 msgid "Uncensor" msgstr "Freigeben" -#: ../../mod/admin.php:871 +#: ../../mod/admin.php:991 +msgid "Allow Code" +msgstr "Code erlauben" + +#: ../../mod/admin.php:992 +msgid "Disallow Code" +msgstr "Code nicht erlauben" + +#: ../../mod/admin.php:994 msgid "UID" msgstr "UID" -#: ../../mod/admin.php:873 +#: ../../mod/admin.php:996 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/admin.php:874 +#: ../../mod/admin.php:997 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/admin.php:913 +#: ../../mod/admin.php:1037 #, php-format msgid "Plugin %s disabled." msgstr "Plug-In %s deaktiviert." -#: ../../mod/admin.php:917 +#: ../../mod/admin.php:1041 #, php-format msgid "Plugin %s enabled." msgstr "Plug-In %s aktiviert." -#: ../../mod/admin.php:927 ../../mod/admin.php:1129 +#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 msgid "Disable" msgstr "Deaktivieren" -#: ../../mod/admin.php:929 ../../mod/admin.php:1131 +#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 msgid "Enable" msgstr "Aktivieren" -#: ../../mod/admin.php:955 ../../mod/admin.php:1160 +#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 msgid "Toggle" msgstr "Umschalten" -#: ../../mod/admin.php:963 ../../mod/admin.php:1170 +#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 msgid "Author: " msgstr "Autor: " -#: ../../mod/admin.php:964 ../../mod/admin.php:1171 +#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 msgid "Maintainer: " msgstr "Betreuer:" -#: ../../mod/admin.php:1093 +#: ../../mod/admin.php:1214 msgid "No themes found." msgstr "Keine Theme gefunden." -#: ../../mod/admin.php:1152 +#: ../../mod/admin.php:1270 msgid "Screenshot" msgstr "Bildschirmfoto" -#: ../../mod/admin.php:1200 +#: ../../mod/admin.php:1316 msgid "[Experimental]" msgstr "[Experimentell]" -#: ../../mod/admin.php:1201 +#: ../../mod/admin.php:1317 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: ../../mod/admin.php:1228 +#: ../../mod/admin.php:1341 msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." +msgstr "Protokolleinstellungen aktualisiert." -#: ../../mod/admin.php:1284 +#: ../../mod/admin.php:1398 msgid "Clear" msgstr "Leeren" -#: ../../mod/admin.php:1290 +#: ../../mod/admin.php:1404 msgid "Debugging" msgstr "Debugging" -#: ../../mod/admin.php:1291 +#: ../../mod/admin.php:1405 msgid "Log file" msgstr "Protokolldatei" -#: ../../mod/admin.php:1291 +#: ../../mod/admin.php:1405 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/admin.php:1292 +#: ../../mod/admin.php:1406 msgid "Log level" msgstr "Protokollstufe" -#: ../../mod/admin.php:1339 +#: ../../mod/admin.php:1452 msgid "New Profile Field" msgstr "Neues Profilfeld" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 msgid "Field nickname" msgstr "Kurzname für das Feld" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 msgid "System name of field" msgstr "Systemname des Feldes" -#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 +#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 msgid "Input type" msgstr "Art des Inhalts" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 +#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 msgid "Field Name" msgstr "Feldname" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 +#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 msgid "Label on profile pages" msgstr "Bezeichnung auf Profilseiten" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 +#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 msgid "Help text" msgstr "Hilfetext" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 +#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 msgid "Additional info (optional)" msgstr "Zusätzliche Informationen (optional)" -#: ../../mod/admin.php:1354 +#: ../../mod/admin.php:1466 msgid "Field definition not found" msgstr "Feld-Definition nicht gefunden" -#: ../../mod/admin.php:1360 +#: ../../mod/admin.php:1472 msgid "Edit Profile Field" msgstr "Profilfeld bearbeiten" @@ -7740,20 +7381,80 @@ msgstr "Konnte Deinen Server nicht finden." msgid "Post successful." msgstr "Veröffentlichung erfolgreich." -#: ../../mod/post.php:229 +#: ../../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/register.php:50 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." +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." + +#: ../../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/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/register.php:126 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: ../../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/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registrierung auf einem anderen, angeschlossenen Server" + +#: ../../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/register.php:185 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" + +#: ../../mod/register.php:191 #, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Bitte melde dich an." +#: ../../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/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/register.php:213 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Passwort" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" #: ../../mod/removeaccount.php:30 msgid "" @@ -7765,11 +7466,19 @@ msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geä msgid "Remove This Account" msgstr "Dieses Konto löschen" +#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 +msgid "WARNING: " +msgstr "WARNUNG: " + #: ../../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." +"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/removeaccount.php:58 ../../mod/removeme.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/removeaccount.php:59 ../../mod/removeme.php:59 msgid "Please enter your password for verification:" @@ -7787,31 +7496,677 @@ msgid "" "removed from the network" msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt" +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 +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_home.php:21 ../../mod/update_public.php:21 msgid "[Embedded content - reload page to view]" msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "Wall Fotos" +#: ../../mod/lockview.php:37 +msgid "Remote privacy information not available." +msgstr "Privatsphäreeinstellungen anderer Nutzer sind nicht verfügbar." -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" +#: ../../mod/lockview.php:58 +msgid "Visible to:" +msgstr "Sichtbar für:" -#: ../../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/settings.php:76 +msgid "Name is required" +msgstr "Name ist erforderlich" -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "interessiert sich für:" +#: ../../mod/settings.php:80 +msgid "Key and Secret are required" +msgstr "Schlüssel und Geheimnis sind erforderlich" -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Keine Übereinstimmungen" +#: ../../mod/settings.php:130 +msgid "Diaspora Policy Settings updated." +msgstr "Diaspora-Richtlinieneinstellungen aktualisiert." + +#: ../../mod/settings.php:238 +msgid "Passwords do not match. Password unchanged." +msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." + +#: ../../mod/settings.php:242 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." + +#: ../../mod/settings.php:256 +msgid "Password changed." +msgstr "Kennwort geändert." + +#: ../../mod/settings.php:258 +msgid "Password update failed. Please try again." +msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." + +#: ../../mod/settings.php:272 +msgid "Not valid email." +msgstr "Keine gültige E-Mail Adresse." + +#: ../../mod/settings.php:275 +msgid "Protected email address. Cannot change to that email." +msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." + +#: ../../mod/settings.php:284 +msgid "System failure storing new email. Please try again." +msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." + +#: ../../mod/settings.php:523 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +#: ../../mod/settings.php:649 +msgid "Add application" +msgstr "Anwendung hinzufügen" + +#: ../../mod/settings.php:590 +msgid "Name of application" +msgstr "Name der Anwendung" + +#: ../../mod/settings.php:591 ../../mod/settings.php:617 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:591 ../../mod/settings.php:592 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" + +#: ../../mod/settings.php:592 ../../mod/settings.php:618 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../mod/settings.php:593 ../../mod/settings.php:619 +msgid "Redirect" +msgstr "Umleitung" + +#: ../../mod/settings.php:593 +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:594 ../../mod/settings.php:620 +msgid "Icon url" +msgstr "Symbol-URL" + +#: ../../mod/settings.php:594 +msgid "Optional" +msgstr "Optional" + +#: ../../mod/settings.php:605 +msgid "You can't edit this application." +msgstr "Diese Anwendung kann nicht bearbeitet werden." + +#: ../../mod/settings.php:648 +msgid "Connected Apps" +msgstr "Verbundene Apps" + +#: ../../mod/settings.php:652 +msgid "Client key starts with" +msgstr "Client Key beginnt mit" + +#: ../../mod/settings.php:653 +msgid "No name" +msgstr "Kein Name" + +#: ../../mod/settings.php:654 +msgid "Remove authorization" +msgstr "Authorisierung aufheben" + +#: ../../mod/settings.php:668 +msgid "No feature settings configured" +msgstr "Keine Funktionseinstellungen konfiguriert" + +#: ../../mod/settings.php:685 +msgid "Feature/Addon Settings" +msgstr "Funktions-/Addon-Einstellungen" + +#: ../../mod/settings.php:687 +msgid "Settings for the built-in Diaspora emulator" +msgstr "Einstellungen für den eingebauten Diaspora-Emulator" + +#: ../../mod/settings.php:688 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "Jedem Diaspora-Mitglied erlauben, Deine öffentlichen Beiträge zu kommentieren" + +#: ../../mod/settings.php:689 +msgid "Enable the Diaspora protocol for this channel" +msgstr "Diaspora-Protokoll für diesen Kanal aktivieren" + +#: ../../mod/settings.php:690 +msgid "Diaspora Policy Settings" +msgstr "Diaspora-Richtlinieneinstellungen" + +#: ../../mod/settings.php:691 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "Verhindern, dass Deine hashtags zu anderen Seiten umgeleitet werden" + +#: ../../mod/settings.php:715 +msgid "Account Settings" +msgstr "Kontoeinstellungen" + +#: ../../mod/settings.php:716 +msgid "Enter New Password:" +msgstr "Neues Passwort eingeben:" + +#: ../../mod/settings.php:717 +msgid "Confirm New Password:" +msgstr "Neues Passwort bestätigen:" + +#: ../../mod/settings.php:717 +msgid "Leave password fields blank unless changing" +msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" + +#: ../../mod/settings.php:719 ../../mod/settings.php:1057 +msgid "Email Address:" +msgstr "Email Adresse:" + +#: ../../mod/settings.php:721 +msgid "Remove this account including all its channels" +msgstr "Dieses Konto inklusive all seiner Kanäle löschen" + +#: ../../mod/settings.php:737 +msgid "Off" +msgstr "Aus" + +#: ../../mod/settings.php:737 +msgid "On" +msgstr "An" + +#: ../../mod/settings.php:744 +msgid "Additional Features" +msgstr "Zusätzliche Funktionen" + +#: ../../mod/settings.php:768 +msgid "Connector Settings" +msgstr "Verbindereinstellungen" + +#: ../../mod/settings.php:807 +msgid "No special theme for mobile devices" +msgstr "Keine spezielle Theme für mobile Geräte" + +#: ../../mod/settings.php:810 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (experimentell)" + +#: ../../mod/settings.php:849 +msgid "Display Settings" +msgstr "Anzeigeeinstellungen" + +#: ../../mod/settings.php:850 +msgid "Theme Settings" +msgstr "Theme-Einstellungen" + +#: ../../mod/settings.php:851 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme-Einstellungen" + +#: ../../mod/settings.php:852 +msgid "Content Settings" +msgstr "Inhaltseinstellungen" + +#: ../../mod/settings.php:858 +msgid "Display Theme:" +msgstr "Anzeige-Theme:" + +#: ../../mod/settings.php:859 +msgid "Mobile Theme:" +msgstr "Mobile Theme:" + +#: ../../mod/settings.php:860 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom auf Mobilgeräten aktivieren" + +#: ../../mod/settings.php:861 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: ../../mod/settings.php:861 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 Sekunden, kein Maximum" + +#: ../../mod/settings.php:862 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" + +#: ../../mod/settings.php:862 +msgid "Maximum of 100 items" +msgstr "Maximum: 100 Beiträge" + +#: ../../mod/settings.php:863 +msgid "Show emoticons (smilies) as images" +msgstr "Emoticons (Smilies) als Bilder anzeigen" + +#: ../../mod/settings.php:864 +msgid "Link post titles to source" +msgstr "Beitragstitel zum Originalbeitrag verlinken" + +#: ../../mod/settings.php:865 +msgid "System Page Layout Editor - (advanced)" +msgstr "Systemseitengestaltungseditor - (erweitert)" + +#: ../../mod/settings.php:868 +msgid "Use blog/list mode on channel page" +msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" + +#: ../../mod/settings.php:868 ../../mod/settings.php:869 +msgid "(comments displayed separately)" +msgstr "(Kommentare werden separat angezeigt)" + +#: ../../mod/settings.php:869 +msgid "Use blog/list mode on matrix page" +msgstr "Blog-/Listenmodus auf der Matrixseite verwenden" + +#: ../../mod/settings.php:870 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" + +#: ../../mod/settings.php:870 ../../mod/settings.php:871 +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/settings.php:871 +msgid "Matrix page max height of content (in pixels)" +msgstr "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)" + +#: ../../mod/settings.php:905 +msgid "Nobody except yourself" +msgstr "Niemand außer Dir selbst" + +#: ../../mod/settings.php:906 +msgid "Only those you specifically allow" +msgstr "Nur die, denen Du es explizit erlaubst" + +#: ../../mod/settings.php:907 +msgid "Approved connections" +msgstr "Angenommene Verbindungen" + +#: ../../mod/settings.php:908 +msgid "Any connections" +msgstr "Beliebige Verbindungen" + +#: ../../mod/settings.php:909 +msgid "Anybody on this website" +msgstr "Jeder auf dieser Website" + +#: ../../mod/settings.php:910 +msgid "Anybody in this network" +msgstr "Alle Red-Nutzer" + +#: ../../mod/settings.php:911 +msgid "Anybody authenticated" +msgstr "Jeder authentifizierte" + +#: ../../mod/settings.php:912 +msgid "Anybody on the internet" +msgstr "Jeder im Internet" + +#: ../../mod/settings.php:986 +msgid "Publish your default profile in the network directory" +msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" + +#: ../../mod/settings.php:991 +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/settings.php:1000 +msgid "Your channel address is" +msgstr "Deine Kanal-Adresse lautet" + +#: ../../mod/settings.php:1048 +msgid "Channel Settings" +msgstr "Kanaleinstellungen" + +#: ../../mod/settings.php:1055 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: ../../mod/settings.php:1058 +msgid "Your Timezone:" +msgstr "Ihre Zeitzone:" + +#: ../../mod/settings.php:1059 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: ../../mod/settings.php:1059 +msgid "Geographical location to display on your posts" +msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" + +#: ../../mod/settings.php:1060 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: ../../mod/settings.php:1062 +msgid "Adult Content" +msgstr "Nicht jugendfreie Inhalte" + +#: ../../mod/settings.php:1062 +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/settings.php:1064 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Datenschutzeinstellungen" + +#: ../../mod/settings.php:1066 +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/settings.php:1068 +msgid "Hide my online presence" +msgstr "Meine Online-Präsenz verbergen" + +#: ../../mod/settings.php:1068 +msgid "Prevents displaying in your profile that you are online" +msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" + +#: ../../mod/settings.php:1070 +msgid "Simple Privacy Settings:" +msgstr "Einfache Privatsphäreeinstellungen:" + +#: ../../mod/settings.php:1071 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" + +#: ../../mod/settings.php:1072 +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/settings.php:1073 +msgid "Private - default private, never open or public" +msgstr "Privat – Standard privat, nie offen oder öffentlich" + +#: ../../mod/settings.php:1074 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockiert – Alle standardmäßig blockiert" + +#: ../../mod/settings.php:1076 +msgid "Allow others to tag your posts" +msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" + +#: ../../mod/settings.php:1076 +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/settings.php:1078 +msgid "Advanced Privacy Settings" +msgstr "Fortgeschrittene Privatsphäreeinstellungen" + +#: ../../mod/settings.php:1080 +msgid "Expire other channel content after this many days" +msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" + +#: ../../mod/settings.php:1080 +msgid "0 or blank prevents expiration" +msgstr "0 oder kein Inhalt verhindern das Verfallen" + +#: ../../mod/settings.php:1081 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Kontaktanfragen pro Tag:" + +#: ../../mod/settings.php:1081 +msgid "May reduce spam activity" +msgstr "Kann die Spam-Aktivität verringern" + +#: ../../mod/settings.php:1082 +msgid "Default Post Permissions" +msgstr "Standardmäßige Beitragsberechtigungen" + +#: ../../mod/settings.php:1087 +msgid "Channel permissions category:" +msgstr "Zugriffsrechte-Kategorie des Kanals:" + +#: ../../mod/settings.php:1093 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" + +#: ../../mod/settings.php:1093 +msgid "Useful to reduce spamming" +msgstr "Nützlich, um Spam zu verringern" + +#: ../../mod/settings.php:1096 +msgid "Notification Settings" +msgstr "Benachrichtigungseinstellungen" + +#: ../../mod/settings.php:1097 +msgid "By default post a status message when:" +msgstr "Sende standardmäßig Status-Nachrichten, wenn:" + +#: ../../mod/settings.php:1098 +msgid "accepting a friend request" +msgstr "Du eine Verbindungsanfrage annimmst" + +#: ../../mod/settings.php:1099 +msgid "joining a forum/community" +msgstr "Du einem Forum beitrittst" + +#: ../../mod/settings.php:1100 +msgid "making an interesting profile change" +msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" + +#: ../../mod/settings.php:1101 +msgid "Send a notification email when:" +msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" + +#: ../../mod/settings.php:1102 +msgid "You receive a connection request" +msgstr "Du eine Verbindungsanfrage erhältst" + +#: ../../mod/settings.php:1103 +msgid "Your connections are confirmed" +msgstr "Eine Verbindung bestätigt wurde" + +#: ../../mod/settings.php:1104 +msgid "Someone writes on your profile wall" +msgstr "Jemand auf Deine Pinnwand schreibt" + +#: ../../mod/settings.php:1105 +msgid "Someone writes a followup comment" +msgstr "Jemand einen Beitrag kommentiert" + +#: ../../mod/settings.php:1106 +msgid "You receive a private message" +msgstr "Du eine private Nachricht erhältst" + +#: ../../mod/settings.php:1107 +msgid "You receive a friend suggestion" +msgstr "Du einen Kontaktvorschlag erhältst" + +#: ../../mod/settings.php:1108 +msgid "You are tagged in a post" +msgstr "Du in einem Beitrag erwähnt wurdest" + +#: ../../mod/settings.php:1109 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" + +#: ../../mod/settings.php:1112 +msgid "Show visual notifications including:" +msgstr "Visuelle Benachrichtigungen anzeigen für:" + +#: ../../mod/settings.php:1114 +msgid "Unseen matrix activity" +msgstr "Ungesehene Matrix-Aktivität" + +#: ../../mod/settings.php:1115 +msgid "Unseen channel activity" +msgstr "Ungesehene Kanal-Aktivität" + +#: ../../mod/settings.php:1116 +msgid "Unseen private messages" +msgstr "Ungelesene persönliche Nachrichten" + +#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 +#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 +msgid "Recommended" +msgstr "Empfohlen" + +#: ../../mod/settings.php:1117 +msgid "Upcoming events" +msgstr "Baldige Termine" + +#: ../../mod/settings.php:1118 +msgid "Events today" +msgstr "Heutige Termine" + +#: ../../mod/settings.php:1119 +msgid "Upcoming birthdays" +msgstr "Baldige Geburtstage" + +#: ../../mod/settings.php:1119 +msgid "Not available in all themes" +msgstr "Nicht in allen Themes verfügbar" + +#: ../../mod/settings.php:1120 +msgid "System (personal) notifications" +msgstr "System – (persönliche) Benachrichtigungen" + +#: ../../mod/settings.php:1121 +msgid "System info messages" +msgstr "System – Info-Nachrichten" + +#: ../../mod/settings.php:1122 +msgid "System critical alerts" +msgstr "System – kritische Warnungen" + +#: ../../mod/settings.php:1123 +msgid "New connections" +msgstr "Neue Verbindungen" + +#: ../../mod/settings.php:1124 +msgid "System Registrations" +msgstr "System – Registrierungen" + +#: ../../mod/settings.php:1125 +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/settings.php:1127 +msgid "Notify me of events this many days in advance" +msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" + +#: ../../mod/settings.php:1127 +msgid "Must be greater than 0" +msgstr "Muss größer als 0 sein" + +#: ../../mod/settings.php:1129 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Konto-/Seitentypeinstellungen" + +#: ../../mod/settings.php:1130 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" + +#: ../../mod/settings.php:1133 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Bitte aktivieren Sie den Expertenmodus (unter Einstellungen > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" + +#: ../../mod/settings.php:1134 +msgid "Miscellaneous Settings" +msgstr "Sonstige Einstellungen" + +#: ../../mod/settings.php:1136 +msgid "Personal menu to display in your channel pages" +msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" + +#: ../../mod/settings.php:1137 ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Kanal löschen" + +#: ../../mod/settings.php:1138 +msgid "Remove this channel." +msgstr "Diesen Kanal löschen" + +#: ../../mod/id.php:11 +msgid "First Name" +msgstr "Vorname" + +#: ../../mod/id.php:12 +msgid "Last Name" +msgstr "Nachname" + +#: ../../mod/id.php:13 +msgid "Nickname" +msgstr "Spitzname" + +#: ../../mod/id.php:14 +msgid "Full Name" +msgstr "Voller Name" + +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" +msgstr "Profilfoto 16 px" + +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" +msgstr "Profilfoto 32 px" + +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" +msgstr "Profilfoto 48 px" + +#: ../../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/id.php:25 +msgid "Profile Photo 128px" +msgstr "Profilfoto 128 px" + +#: ../../mod/id.php:26 +msgid "Timezone" +msgstr "Zeitzone" + +#: ../../mod/id.php:27 +msgid "Homepage URL" +msgstr "Homepage-URL" + +#: ../../mod/id.php:29 +msgid "Birth Year" +msgstr "Geburtsjahr" + +#: ../../mod/id.php:30 +msgid "Birth Month" +msgstr "Geburtsmonat" + +#: ../../mod/id.php:31 +msgid "Birth Day" +msgstr "Geburtstag" + +#: ../../mod/id.php:32 +msgid "Birthdate" +msgstr "Geburtsdatum" #: ../../mod/message.php:41 msgid "Conversation removed." @@ -7829,113 +8184,13 @@ msgstr "Unterhaltung löschen" msgid "D, d M Y - g:i A" msgstr "D, d. M Y - G:i" -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menü-Element aktualisiert." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menü-Bestandteil hinzugefügt." - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Menü-Bestandteile verwalten" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Neues Menü-Bestandteil" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Link Text" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL des Links" - -#: ../../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/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../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/mitem.php:181 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - #: ../../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/vote.php:97 msgid "Total votes" -msgstr "Stimmen gesamt" +msgstr "Stimmen insgesamt" #: ../../mod/vote.php:98 msgid "Average Rating" @@ -7952,10 +8207,8 @@ msgid "Remove This Channel" msgstr "Diesen Kanal löschen" #: ../../mod/removeme.php:58 -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." +msgid "This channel will be completely removed from the network. " +msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." #: ../../mod/removeme.php:60 msgid "Remove this channel and all its clones from the network" @@ -7967,85 +8220,280 @@ msgid "" "removed from the network" msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanal löschen" +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Konnte nicht auf den Kontakteintrag zugreifen." -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hilfe zu dieser Funktion" +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Gewähltes Profil nicht gefunden." -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layout-Name" +#: ../../mod/connedit.php:219 +msgid "Connection updated." +msgstr "Verbindung aktualisiert." -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" +#: ../../mod/connedit.php:221 +msgid "Failed to update connection record." +msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." +#: ../../mod/connedit.php:267 +msgid "is now connected to" +msgstr "ist jetzt verbunden mit" -#: ../../mod/like.php:21 +#: ../../mod/connedit.php:392 +msgid "Could not access address book record." +msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." + +#: ../../mod/connedit.php:406 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." + +#: ../../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:494 +msgid "Connection has been removed." +msgstr "Verbindung wurde gelöscht." + +#: ../../mod/connedit.php:513 +#, php-format +msgid "View %s's profile" +msgstr "%ss Profil ansehen" + +#: ../../mod/connedit.php:517 +msgid "Refresh Permissions" +msgstr "Zugriffsrechte neu laden" + +#: ../../mod/connedit.php:520 +msgid "Fetch updated permissions" +msgstr "Aktualisierte Zugriffsrechte abfragen" + +#: ../../mod/connedit.php:524 +msgid "Recent Activity" +msgstr "Kürzliche Aktivitäten" + +#: ../../mod/connedit.php:527 +msgid "View recent posts and comments" +msgstr "Betrachte die neuesten Beiträge und Kommentare" + +#: ../../mod/connedit.php:534 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" + +#: ../../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:539 ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorieren" + +#: ../../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: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:547 +msgid "Archive" +msgstr "Archivieren" + +#: ../../mod/connedit.php:550 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." +"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/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Ungültige Anfrage." +#: ../../mod/connedit.php:551 +msgid "This connection is archived!" +msgstr "Die Verbindung ist archiviert." -#: ../../mod/like.php:143 -msgid "thing" -msgstr "Sache" +#: ../../mod/connedit.php:555 +msgid "Unhide" +msgstr "Wieder sichtbar machen" -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." +#: ../../mod/connedit.php:555 +msgid "Hide" +msgstr "Verstecken" -#: ../../mod/like.php:228 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." +#: ../../mod/connedit.php:558 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../mod/like.php:387 +#: ../../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:647 +msgid "Approve this connection" +msgstr "Verbindung genehmigen" + +#: ../../mod/connedit.php:647 +msgid "Accept connection to allow communication" +msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" + +#: ../../mod/connedit.php:652 +msgid "Set Affinity" +msgstr "Beziehung festlegen" + +#: ../../mod/connedit.php:655 +msgid "Set Profile" +msgstr "Profil festlegen" + +#: ../../mod/connedit.php:658 +msgid "Set Affinity & Profile" +msgstr "Beziehung und Profile festlegen" + +#: ../../mod/connedit.php:675 +msgid "Apply these permissions automatically" +msgstr "Diese Berechtigungen automatisch anwenden" + +#: ../../mod/connedit.php:677 +msgid "This connection's address is" +msgstr "Die Adresse des Kontakts lautet" + +#: ../../mod/connedit.php:680 +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 verwendet." + +#: ../../mod/connedit.php:682 +msgid "Slide to adjust your degree of friendship" +msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" + +#: ../../mod/connedit.php:684 +msgid "Slide to adjust your rating" +msgstr "Verschieben, um deine Bewertung festzulegen" + +#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 +msgid "Optionally explain your rating" +msgstr "Optional kannst du deine Bewertung beschreiben" + +#: ../../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 "" +"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 "Do not import posts with this text" +msgstr "Importiere keine Einträge mit diesem Text" + +#: ../../mod/connedit.php:691 +msgid "This information is public!" +msgstr "Diese Information ist öffentlich!" + +#: ../../mod/connedit.php:696 +msgid "Connection Pending Approval" +msgstr "Verbindung wartet auf Bestätigung" + +#: ../../mod/connedit.php:697 +msgid "Connection Request" +msgstr "Verbindungs Anfrage" + +#: ../../mod/connedit.php:698 #, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s stimmt %2$ss %3$s zu" +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/like.php:389 +#: ../../mod/connedit.php:700 +msgid "Approve Later" +msgstr "Bestätige später" + +#: ../../mod/connedit.php:703 +msgid "inherited" +msgstr "geerbt" + +#: ../../mod/connedit.php:705 #, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s lehnt %2$ss %3$s ab" +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: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/connedit.php:707 +msgid "Their Settings" +msgstr "Deren Einstellungen" -#: ../../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/connedit.php:708 +msgid "My Settings" +msgstr "Meine Einstellungen" -#: ../../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/connedit.php:710 +msgid "Individual Permissions" +msgstr "Individuelle Zugriffsrechte" -#: ../../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/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/like.php:481 -msgid "Action completed." -msgstr "Aktion durchgeführt." +#: ../../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/like.php:482 -msgid "Thank you." -msgstr "Vielen Dank." +#: ../../mod/connedit.php:713 +msgid "Last update:" +msgstr "Letzte Aktualisierung:" + +#: ../../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/rmagic.php:40 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" + +#: ../../mod/rmagic.php:44 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." + +#: ../../mod/rmagic.php:84 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" + +#: ../../mod/rmagic.php:85 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" + +#: ../../mod/rmagic.php:86 +msgid "Authenticate" +msgstr "Authentifizieren" #: ../../mod/mail.php:33 msgid "Unable to lookup recipient." @@ -8125,6 +8573,16 @@ msgstr "Ungültiger Anfrage-Identifikator." msgid "Discard" msgstr "Verwerfen" +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Bitte melde dich an." + +#: ../../mod/post.php:236 +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/new_channel.php:109 msgid "Add a Channel" msgstr "Kanal hinzufügen" @@ -8169,144 +8627,53 @@ msgstr "Kanaltyp" msgid "Read more about roles" msgstr "Mehr Informationen über Rollen" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App 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/appman.php:37 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album nicht gefunden." +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Album löschen" +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../mod/photos.php:159 ../../mod/photos.php:924 -msgid "Delete Photo" -msgstr "Foto löschen" +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App erstellen" -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Name der App" -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" -#: ../../mod/photos.php:523 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL zum Icon" -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Fotos hochladen" +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versions-ID" -#: ../../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/appman.php:96 +msgid "Price of app" +msgstr "Preis der App" -#: ../../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/photos.php:556 -msgid "Do not show a status post for this upload" -msgstr "Keine Statusnachricht für diesen Upload anzeigen" - -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../mod/photos.php:625 ../../mod/photos.php:1149 -#: ../../mod/photos.php:1165 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" - -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" - -#: ../../mod/photos.php:675 ../../mod/photos.php:1197 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../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/photos.php:751 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../mod/photos.php:903 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../mod/photos.php:905 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../mod/photos.php:906 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../mod/photos.php:913 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../mod/photos.php:915 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../mod/photos.php:919 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../mod/photos.php:922 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" - -#: ../../mod/photos.php:1114 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../mod/photos.php:1203 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../mod/photos.php:1226 -msgid "Recent Photos" -msgstr "Neueste Fotos" +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" #: ../../mod/ping.php:263 msgid "sent you a private message" @@ -8320,6 +8687,27 @@ msgstr "hat deinen Kanal hinzugefügt" msgid "posted an event" msgstr "hat einen Termin veröffentlicht" +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" +msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" + +#: ../../mod/layouts.php:180 +msgid "Layout Description" +msgstr "Gestaltungsbeschreibung" + +#: ../../mod/layouts.php:185 +msgid "Download PDL file" +msgstr "PDL-Datei herunterladen" + +#: ../../mod/home.php:73 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" + +#: ../../mod/page.php:126 +msgid "Lorem Ipsum" +msgstr "Lorem Ipsum" + #: ../../mod/bookmarks.php:38 msgid "Bookmark added" msgstr "Lesezeichen hinzugefügt" @@ -8332,110 +8720,30 @@ msgstr "Meine Lesezeichen" msgid "My Connections Bookmarks" msgstr "Lesezeichen meiner Kontakte" -#: ../../mod/channel.php:87 +#: ../../mod/channel.php:97 msgid "Insufficient permissions. Request redirected to profile page." msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." -#: ../../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/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/register.php:50 +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" + +#: ../../mod/pconfig.php:50 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." +"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/register.php:84 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." - -#: ../../mod/register.php:117 +#: ../../mod/suggest.php:35 msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." - -#: ../../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/register.php:126 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: ../../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/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrierung auf einem anderen, angeschlossenen Server" - -#: ../../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/register.php:185 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" - -#: ../../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/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/register.php:213 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Passwort" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" - -#: ../../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/rmagic.php:38 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authentifizieren" +"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/poll.php:64 msgid "Poll" @@ -8443,36 +8751,40 @@ msgstr "Umfrage" #: ../../mod/poll.php:69 msgid "View Results" -msgstr "Ergebnisse" +msgstr "Ergebnisse ansehen" #: ../../mod/service_limits.php:19 msgid "No service class restrictions found." msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../mod/sharedwithme.php:99 +#: ../../mod/sharedwithme.php:94 msgid "Files: shared with me" msgstr "Dateien, die mit mir geteilt wurden" -#: ../../mod/sharedwithme.php:103 +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "NEU" + +#: ../../mod/sharedwithme.php:99 msgid "Remove all files" msgstr "Alle Dateien löschen" -#: ../../mod/sharedwithme.php:104 +#: ../../mod/sharedwithme.php:100 msgid "Remove this file" msgstr "Diese Datei löschen" #: ../../view/theme/apw/php/config.php:202 #: ../../view/theme/apw/php/config.php:236 msgid "Schema Default" -msgstr "Standard-Schema" +msgstr "Schemastandard" #: ../../view/theme/apw/php/config.php:203 msgid "Sans-Serif" -msgstr "Sans-Serif" +msgstr "Sans Serif" #: ../../view/theme/apw/php/config.php:204 msgid "Monospace" -msgstr "Monospace" +msgstr "Monospace (dicktengleich)" #: ../../view/theme/apw/php/config.php:259 #: ../../view/theme/redbasic/php/config.php:102 @@ -8480,14 +8792,13 @@ msgid "Theme settings" msgstr "Theme-Einstellungen" #: ../../view/theme/apw/php/config.php:260 -#: ../../view/theme/redbasic/php/config.php:103 msgid "Set scheme" -msgstr "Schema" +msgstr "Schema festlegen" #: ../../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" +msgstr "Schriftgröße für Beiträge und Kommentare festlegen" #: ../../view/theme/apw/php/config.php:262 msgid "Set font face" @@ -8495,31 +8806,31 @@ msgstr "Schriftart" #: ../../view/theme/apw/php/config.php:263 msgid "Set iconset" -msgstr "Icon-Set" +msgstr "Symbolsatz festlegen" #: ../../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)" +msgstr "Ausmaß der großen Schatten (Default 15px 15px 15px)" #: ../../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)" +msgstr "Ausmaß der kleinen Schatten festlegen (Voreinstellung 5px 5px 5px)" #: ../../view/theme/apw/php/config.php:266 msgid "Set shadow color, default #000" -msgstr "Farbe der Schatten (Voreinstellung #000)" +msgstr "Schattenfarbe (Voreinstellung #000)" #: ../../view/theme/apw/php/config.php:267 msgid "Set radius size, default 5px" -msgstr "Ecken-Radius (Voreinstellung 5px)" +msgstr "Eckenradius (Voreinstellung 5px)" #: ../../view/theme/apw/php/config.php:268 msgid "Set line-height for posts and comments" -msgstr "Zeilenhöhe in Beiträgen und Kommentaren" +msgstr "Zeilenhöhe für Beiträge und Kommentare" #: ../../view/theme/apw/php/config.php:269 msgid "Set background image" -msgstr "Hintergrundbild" +msgstr "Hintergrundbild festlegen" #: ../../view/theme/apw/php/config.php:270 msgid "Set background attachment" @@ -8527,15 +8838,15 @@ msgstr "Hintergrunddatei" #: ../../view/theme/apw/php/config.php:271 msgid "Set background color" -msgstr "Hintergrundfarbe" +msgstr "Hintergrundfarbe festlegen" #: ../../view/theme/apw/php/config.php:272 msgid "Set section background image" -msgstr "Hintergrundbild für die Section" +msgstr "Hintergrundbild für die section" #: ../../view/theme/apw/php/config.php:273 msgid "Set section background color" -msgstr "Hintergrundfarbe für die Section" +msgstr "Hintergrundfarbe für die section" #: ../../view/theme/apw/php/config.php:274 msgid "Set color of items - use hex" @@ -8547,15 +8858,15 @@ msgstr "Farbe für Links – Hex benutzen" #: ../../view/theme/apw/php/config.php:276 msgid "Set max-width for items. Default 400px" -msgstr "Maximale Breite von Beiträgen (Voreinstellung 400px)" +msgstr "Maximalbreite von Beiträgen (Voreinstellung 400px)" #: ../../view/theme/apw/php/config.php:277 msgid "Set min-width for items. Default 240px" -msgstr "Minimale Breite von Beiträgen (Voreinstellung 240px)" +msgstr "Minimalbreite von Beiträgen (Voreinstellung 240px)" #: ../../view/theme/apw/php/config.php:278 msgid "Set the generic content wrapper width. Default 48%" -msgstr "Breite des \"generic content wrapper\" (Voreinstellung 48%)" +msgstr "Breite des „generic content wrapper“ (Voreinstellung 48%)" #: ../../view/theme/apw/php/config.php:279 msgid "Set color of fonts - use hex" @@ -8563,11 +8874,11 @@ msgstr "Schriftfarbe – Hex benutzen" #: ../../view/theme/apw/php/config.php:280 msgid "Set background-size element" -msgstr "Größe des Hintergrund-Elements" +msgstr "size-Element für den Hintergrund" #: ../../view/theme/apw/php/config.php:281 msgid "Item opacity" -msgstr "Deckkraft der Beiträge" +msgstr "Deckkraft für Beiträge" #: ../../view/theme/apw/php/config.php:282 msgid "Display post previews only" @@ -8575,7 +8886,7 @@ msgstr "Nur Beitragsvorschau anzeigen" #: ../../view/theme/apw/php/config.php:283 msgid "Display side bar on channel page" -msgstr "Zeige die Seitenleiste auf der Kanal-Seite" +msgstr "Seitenleiste auf der Kanalseite anzeigen" #: ../../view/theme/apw/php/config.php:284 msgid "Colour of the navigation bar" @@ -8583,32 +8894,36 @@ msgstr "Farbe der Navigationsleiste" #: ../../view/theme/apw/php/config.php:285 msgid "Item float" -msgstr "Beitragsfluss" +msgstr "float für Beiträge" #: ../../view/theme/apw/php/config.php:286 msgid "Left offset of the section element" -msgstr "Linker Rand des Section Elements" +msgstr "Linker offset des section-Elements" #: ../../view/theme/apw/php/config.php:287 msgid "Right offset of the section element" -msgstr "Rechter Rand des Section Elements" +msgstr "Rechter offset des section-Elements" #: ../../view/theme/apw/php/config.php:288 msgid "Section width" -msgstr "Breite der Section" +msgstr "Breite der section" #: ../../view/theme/apw/php/config.php:289 msgid "Left offset of the aside" -msgstr "Linker Rand des Aside-Elements" +msgstr "Linker offset der Seitenleiste" #: ../../view/theme/apw/php/config.php:290 msgid "Right offset of the aside element" -msgstr "Rechter Rand des Aside-Elements" +msgstr "Rechter offset der Seitenleiste" -#: ../../view/theme/redbasic/php/config.php:84 +#: ../../view/theme/redbasic/php/config.php:82 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" msgstr "Schmale Navigationsleiste" @@ -8655,115 +8970,125 @@ msgstr "Farbe der Schrift des Banners" #: ../../view/theme/redbasic/php/config.php:115 msgid "Set the background color" -msgstr "Hintergrundfarbe" +msgstr "Hintergrundfarbe festlegen" #: ../../view/theme/redbasic/php/config.php:116 msgid "Set the background image" -msgstr "Hintergrundbild" +msgstr "Hintergrundbild festlegen" #: ../../view/theme/redbasic/php/config.php:117 msgid "Set the background color of items" -msgstr "Hintergrundfarbe für Beiträge" +msgstr "Hintergrundfarbe für Beiträge festlegen" #: ../../view/theme/redbasic/php/config.php:118 msgid "Set the background color of comments" -msgstr "Hintergrundfarbe für Kommentare" +msgstr "Hintergrundfarbe für Kommentare festlegen" #: ../../view/theme/redbasic/php/config.php:119 msgid "Set the border color of comments" -msgstr "Farbe des Randes von Kommentaren" +msgstr "Farbe des Randes von Kommentaren festlegen" #: ../../view/theme/redbasic/php/config.php:120 msgid "Set the indent for comments" -msgstr "Einzugsbreite für Kommentare" +msgstr "Einzugsbreite für Kommentare festlegen" #: ../../view/theme/redbasic/php/config.php:121 msgid "Set the basic color for item icons" -msgstr "Grundfarbe für Beitrags-Icons" +msgstr "Grundfarbe für Beitragssymbole festlegen" #: ../../view/theme/redbasic/php/config.php:122 msgid "Set the hover color for item icons" -msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" +msgstr "Farbe für Beitragssymbole unter dem Mauszeiger festlegen" #: ../../view/theme/redbasic/php/config.php:123 msgid "Set font-size for the entire application" -msgstr "Schriftgröße für die gesamte Anwendung" +msgstr "Schriftgröße für die gesamte Anwendung festlegen" + +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Example: 14px" +msgstr "Beispiel: 14px" #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-color for posts and comments" -msgstr "Schriftfarbe für Beiträge und Kommentare" +msgstr "Schriftfarbe für Beiträge und Kommentare festlegen" #: ../../view/theme/redbasic/php/config.php:126 msgid "Set radius of corners" -msgstr "Ecken-Radius" +msgstr "Eckenradius festlegen" #: ../../view/theme/redbasic/php/config.php:127 msgid "Set shadow depth of photos" -msgstr "Schattentiefe von Fotos" +msgstr "Schattentiefe von Fotos festlegen" #: ../../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 "Center page content" +msgstr "Seiteninhalt zentrieren" #: ../../view/theme/redbasic/php/config.php:130 msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)" +msgstr "Mindestdeckkraft der Navigationsleiste festlegen - zum Verstecken" #: ../../view/theme/redbasic/php/config.php:131 msgid "Set size of conversation author photo" -msgstr "Größe der Avatare von Themenstartern" +msgstr "Größe der Avatare von Themenstartern festlegen" #: ../../view/theme/redbasic/php/config.php:132 msgid "Set size of followup author photos" -msgstr "Größe der Avatare von Kommentatoren" +msgstr "Größe der Avatare von Kommentatoren festlegen" -#: ../../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:1355 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1360 +#: ../../boot.php:1358 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1527 +#: ../../boot.php:1525 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." -#: ../../boot.php:1555 +#: ../../boot.php:1553 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1556 +#: ../../boot.php:1554 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1559 +#: ../../boot.php:1557 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:2177 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" + +#: ../../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:2315 +#, php-format +msgid "[red] Website SSL error for %s" +msgstr "[red] Website-SSL-Fehler für %s" + +#: ../../boot.php:2352 +msgid "Cron/Scheduled tasks not running." +msgstr "Cron-Aufgaben laufen nicht." + +#: ../../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 2679e9eb1..a4a92552a 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -7,17 +7,84 @@ 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["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["Edit"] = "Bearbeiten"; +$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"; +$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["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 ist erforderlich."; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden"; +$a->strings["Please enter the required information."] = "Bitte gib die erforderlichen 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["Miscellaneous"] = "Verschiedenes"; +$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +$a->strings["Required"] = "Erforderlich"; +$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["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["Edit"] = "Bearbeiten"; $a->strings["View"] = "Ansicht"; $a->strings["Preview"] = "Vorschau"; $a->strings["Actions"] = "Aktionen"; @@ -25,97 +92,45 @@ $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["Public Timeline"] = "Öffentliche Zeitleiste"; +$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"] = "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"] = "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["prev"] = "vorherige"; $a->strings["first"] = "erste"; $a->strings["last"] = "letzte"; @@ -129,6 +144,7 @@ $a->strings["%d Connection"] = array( ); $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"; @@ -187,70 +203,22 @@ $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["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"] = "Design"; +$a->strings["Design Tools"] = "Gestaltungswerkzeuge"; $a->strings["Blocks"] = "Blöcke"; $a->strings["Menus"] = "Menüs"; -$a->strings["Layouts"] = "Layouts"; +$a->strings["Layouts"] = "Gestaltungen"; $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["parent"] = "Übergeordnetes Verzeichnis"; $a->strings["Principal"] = "Prinzipal"; $a->strings["Addressbook"] = "Adressbuch"; @@ -273,20 +241,12 @@ $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["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."; @@ -299,11 +259,11 @@ $a->strings["Save and load profile details across sites/channels"] = "Speichere $a->strings["Web Pages"] = "Webseiten"; $a->strings["Provide managed web pages on your channel"] = "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"; $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["Enables a tool to store notes and reminders"] = "Aktiviert ein Werkzeug zum Speichern von Notizen und Erinnerungen"; $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"; @@ -312,33 +272,36 @@ $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["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["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"; $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"; $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["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-/Kommentar-Tools"; +$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentarwerkzeuge"; $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,137 +309,174 @@ $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["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["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["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["Remove term"] = "Eintrag löschen"; +$a->strings["Everything"] = "Alles"; +$a->strings["Archives"] = "Archive"; +$a->strings["Me"] = "Ich"; +$a->strings["Family"] = "Familie"; +$a->strings["Friends"] = "Freunde"; +$a->strings["Acquaintances"] = "Bekannte"; +$a->strings["All"] = "Alle"; +$a->strings["Refresh"] = "Aktualisieren"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Channel settings"] = "Kanaleinstellungen"; +$a->strings["Additional features"] = "Zusätzliche Funktionen"; +$a->strings["Feature/Addon settings"] = "Funktion-/Addon-Einstellungen"; +$a->strings["Display settings"] = "Anzeigeeinstellungen"; +$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-Kanaleinstellungen"; +$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["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["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["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."; +$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["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."; $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["Protocol blocked for this channel."] = "Das Protokoll wurde für diesen Kanal blockiert."; $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["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__ 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["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["like"] = "mag"; +$a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; +$a->strings["dislike"] = "lehne ab"; +$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"] = "via %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["Insert Link"] = "Link einfügen"; +$a->strings["Video"] = "Video"; +$a->strings["Encrypt text"] = "Text verschlüsseln"; +$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["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["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; $a->strings["Logout"] = "Abmelden"; $a->strings["End this session"] = "Beende diese Sitzung"; $a->strings["Home"] = "Home"; @@ -485,6 +485,7 @@ $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 Profile"] = "Profile bearbeiten"; $a->strings["Edit your profile"] = "Profil bearbeiten"; $a->strings["Photos"] = "Fotos"; $a->strings["Your photos"] = "Deine Bilder"; @@ -532,82 +533,184 @@ $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["Account/Channel Settings"] = "Konto-/Kanaleinstellungen"; $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["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["likes"] = "gefä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"; $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["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["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["Other"] = "Andere"; +$a->strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +$a->strings["channel"] = "Kanal"; +$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["__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"; +$a->strings["__ctx:title__ Agree"] = "Zustimmungen"; +$a->strings["__ctx:title__ Disagree"] = "Ablehnungen"; +$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["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Gespeichert unter:"; +$a->strings["View in context"] = "Im Zusammenhang anschauen"; +$a->strings["remove"] = "lösche"; +$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 Photos"] = "Fotos ansehen"; +$a->strings["Matrix Activity"] = "Matrix-Aktivität"; +$a->strings["Edit Contact"] = "Kontakt 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( + 0 => "%2\$d Person gefällt das.", + 1 => "%2\$d Leuten gefällt das.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "%2\$d Person gefällt das nicht.", + 1 => "%2\$d Leuten gefällt das nicht.", +); +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => ", und %d andere", +); +$a->strings["%s like this."] = "%s gefällt das."; +$a->strings["%s don't like this."] = "%s gefällt das nicht."; +$a->strings["Visible to everybody"] = "Sichtbar für jeden"; +$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; +$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; +$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; +$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["Share"] = "Teilen"; +$a->strings["Page link name"] = "Link zur Seite"; +$a->strings["Post as"] = "Veröffentlichen als"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["upload photo"] = "Foto hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anfügen"; +$a->strings["Insert web link"] = "Link einfügen"; +$a->strings["web link"] = "Web-Link"; +$a->strings["Insert video link"] = "Video-Link einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Link einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Legen Sie Ihren Standort fest"; +$a->strings["set location"] = "Standort festlegen"; +$a->strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +$a->strings["Clear browser location"] = "Browser-Standort löschen"; +$a->strings["clear location"] = "Standort löschen"; +$a->strings["Title (optional)"] = "Titel (optional)"; +$a->strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +$a->strings["Permission settings"] = "Berechtigungseinstellungen"; +$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 festlegen"; +$a->strings["OK"] = "Ok"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["Discover"] = "Entdecken"; +$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; +$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["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"; +$a->strings["Starred"] = "Markiert"; +$a->strings["Favourite Posts"] = "Markierte Beiträge"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; +$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["Photo Albums"] = "Fotoalben"; +$a->strings["Files and Storage"] = "Dateien und Speicher"; +$a->strings["Chatrooms"] = "Chaträume"; +$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +$a->strings["Manage Webpages"] = "Webseiten verwalten"; +$a->strings["__ctx:noun__ Attending"] = array( + 0 => "Zusage", + 1 => "Zusagen", +); +$a->strings["__ctx:noun__ Not Attending"] = array( + 0 => "Absage", + 1 => "Absagen", +); +$a->strings["__ctx:noun__ Undecided"] = array( + 0 => " Unentschlossen", + 1 => "Unentschlossene", +); +$a->strings["__ctx:noun__ Agree"] = array( + 0 => "Zustimmung", + 1 => "Zustimmungen", +); +$a->strings["__ctx:noun__ Disagree"] = array( + 0 => "Ablehnung", + 1 => "Ablehnungen", +); +$a->strings["__ctx:noun__ Abstain"] = array( + 0 => "Enthaltung", + 1 => "Enthaltungen", +); $a->strings["Permission denied"] = "Keine Berechtigung"; $a->strings["(Unknown)"] = "(Unbekannt)"; $a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; @@ -619,26 +722,20 @@ $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["Permission denied."] = "Zugang verweigert"; $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["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["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["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; +$a->strings["Logged out."] = "Ausgeloggt."; +$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +$a->strings["Login failed."] = "Login fehlgeschlagen."; $a->strings["%d invitation available"] = array( 0 => "%d Einladung verfügbar", 1 => "%d Einladungen verfügbar", @@ -662,23 +759,89 @@ $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["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["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["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, j. 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["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["Transgender"] = "Transgender"; $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"; @@ -726,7 +889,6 @@ $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"; @@ -738,189 +900,31 @@ $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["channel"] = "Kanal"; -$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["__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"; -$a->strings["__ctx:title__ Agree"] = "Zustimmungen"; -$a->strings["__ctx:title__ Disagree"] = "Ablehnungen"; -$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["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Gespeichert unter:"; -$a->strings["View in context"] = "Im Zusammenhang anschauen"; -$a->strings["remove"] = "lösche"; -$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 Photos"] = "Fotos ansehen"; -$a->strings["Matrix Activity"] = "Matrix-Aktivität"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Send PM"] = "Sende PN"; -$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( - 0 => "%2\$d Person gefällt das.", - 1 => "%2\$d Leuten gefällt das.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "%2\$d Person gefällt das nicht.", - 1 => "%2\$d Leuten gefällt das nicht.", -); -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = array( - 0 => "", - 1 => ", und %d andere", -); -$a->strings["%s like this."] = "%s gefällt das."; -$a->strings["%s don't like this."] = "%s gefällt das nicht."; -$a->strings["Visible to everybody"] = "Sichtbar für jeden"; -$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; -$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; -$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; -$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["Share"] = "Teilen"; -$a->strings["Page link title"] = "Seitentitel-Link"; -$a->strings["Post as"] = "Veröffentlichen als"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["upload photo"] = "Foto hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anfügen"; -$a->strings["Insert web link"] = "Link einfügen"; -$a->strings["web link"] = "Web-Link"; -$a->strings["Insert video link"] = "Video-Link einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Link einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Standort"; -$a->strings["set location"] = "Standort"; -$a->strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; -$a->strings["Clear browser location"] = "Browser-Standort löschen"; -$a->strings["clear location"] = "Standort löschen"; -$a->strings["Title (optional)"] = "Titel (optional)"; -$a->strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -$a->strings["Permission settings"] = "Berechtigungs-Einstellungen"; -$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["OK"] = "Ok"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["Discover"] = "Entdecken"; -$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; -$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["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"; -$a->strings["Starred"] = "Markiert"; -$a->strings["Favourite Posts"] = "Markierte Beiträge"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; -$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["Files and Storage"] = "Dateien und Speicher"; -$a->strings["Chatrooms"] = "Chaträume"; -$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -$a->strings["Manage Webpages"] = "Webseiten verwalten"; -$a->strings["__ctx:noun__ Attending"] = array( - 0 => "Zusage", - 1 => "Zusagen", -); -$a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "Absage", - 1 => "Absagen", -); -$a->strings["__ctx:noun__ Undecided"] = array( - 0 => " Unentschlossen", - 1 => "Unentschlossene", -); -$a->strings["__ctx:noun__ Agree"] = array( - 0 => "Zustimmung", - 1 => "Zustimmungen", -); -$a->strings["__ctx:noun__ Disagree"] = array( - 0 => "Ablehnung", - 1 => "Ablehnungen", -); -$a->strings["__ctx:noun__ Abstain"] = array( - 0 => "Enthaltung", - 1 => "Enthaltungen", -); -$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["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"; +$a->strings["menu"] = "Menü"; +$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["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["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["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"; @@ -929,6 +933,31 @@ $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["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."; @@ -936,90 +965,12 @@ $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["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["Page Title"] = "Seitentitel"; +$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["Remove"] = "Entferne"; $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"; @@ -1029,12 +980,22 @@ $a->strings["Potential connections will then see the following text before proce $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["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["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."; @@ -1056,12 +1017,23 @@ $a->strings["Image size reduction [%s] failed."] = "Reduzierung der Bildgröße $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["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["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."; @@ -1069,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"; @@ -1083,12 +1057,11 @@ $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"; $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["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 Server sind öffentlich und erlauben die Registrierung bei \$Projectname. Alle Server dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern 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"; @@ -1097,151 +1070,8 @@ $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["Edit post"] = "Bearbeite Beitrag"; +$a->strings["\$Projectname channel"] = "\$Projectname-Kanal"; $a->strings["Collection created."] = "Sammlung erstellt."; $a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; $a->strings["Collection updated."] = "Sammlung aktualisiert."; @@ -1257,105 +1087,38 @@ $a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hi $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["\$Projectname"] = "\$Projectname"; +$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["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["Please visit redmatrix.me to learn more about \$Projectname."] = "Bitte besuchen Sie 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["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["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:"; +$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["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["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; $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"; @@ -1371,70 +1134,84 @@ $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["Block Name"] = "Datenblockname"; +$a->strings["Block Title"] = "Titel des Blocks"; +$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["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."; +$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["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"; +$a->strings["Show Oldest First"] = "Älteste zuerst anzeigen"; +$a->strings["View Photo"] = "Foto ansehen"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; +$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["View Full Size"] = "In voller Größe anzeigen"; +$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["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["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; +$a->strings["Search results for: %s"] = "Suchergebnisse für: %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["Away"] = "Abwesend"; $a->strings["Online"] = "Online"; -$a->strings["Channel added."] = "Kanal hinzugefügt."; +$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["Description"] = "Beschreibung"; +$a->strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; $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["Layout updated."] = "Gestaltung aktualisiert."; $a->strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -$a->strings["Layout not found."] = "Layout nicht gefunden."; +$a->strings["Layout not found."] = "Gestaltung 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["Layout Help"] = "Gestaltungshilfe"; $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["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)"; @@ -1442,10 +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["Edit Layout"] = "Layout bearbeiten"; -$a->strings["Delete layout?"] = "Layout löschen?"; -$a->strings["Delete Layout"] = "Layout löschen"; +$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["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"; @@ -1456,10 +1235,40 @@ $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["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["Delete Webpage"] = "Webseite löschen"; -$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; +$a->strings["Page link title"] = "Seitentitel-Link"; +$a->strings["Edit Webpage"] = "Webseite bearbeiten"; +$a->strings["This directory server requires an access token"] = "Dieser Verzeichnis-Server benötigt ein Zugangstoken"; $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)"; @@ -1470,14 +1279,18 @@ $a->strings["Your password has been reset as requested."] = "Dein Passwort wurde $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 may be changed from the Settings page after successful login."] = "Ihr 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["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["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"; @@ -1491,10 +1304,10 @@ $a->strings["You have no more invitations available"] = "Du hast keine weiteren $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["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 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["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]"; $a->strings["Location not found."] = "Klon nicht gefunden."; @@ -1510,7 +1323,7 @@ $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["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importieren Sie alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteilen Sie sie gemäß der Ihrer Kanaleinstellungen."; $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"; @@ -1519,30 +1332,28 @@ $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["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["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 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["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"; @@ -1551,9 +1362,9 @@ $a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzei $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["Share this file"] = "Diese Datei freigeben"; $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["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; $a->strings["Contact not found."] = "Kontakt nicht gefunden"; $a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden."; $a->strings["Suggest Friends"] = "Kontakte vorschlagen"; @@ -1568,15 +1379,15 @@ $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["%s element installed"] = "Element für %s installiert"; +$a->strings["%s element installation failed"] = "Installation des Elements %s ist fehlgeschlagen"; $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["Profile Name is required."] = "Profilname ist erforderlich."; $a->strings["Marital Status"] = "Familienstand"; $a->strings["Romantic Partner"] = "Romantische Partner"; $a->strings["Likes"] = "Gefällt"; @@ -1639,33 +1450,94 @@ $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["%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["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["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["Source of Item"] = "Quelle des Elements"; +$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 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"; +$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"] = "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"; +$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 ist für die funktionierende Auslieferung von Nachrichten erforderlich."; +$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 ist erforderlich, 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 ist erforderlich, 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 ist erforderlich, 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 ist erforderlich, aber nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl ist erforderlich, 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 ist erforderlich, aber nicht installiert."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt ist erforderlich, 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["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["%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"; @@ -1679,20 +1551,29 @@ $a->strings["Accounts"] = "Konten"; $a->strings["Channels"] = "Kanäle"; $a->strings["Plugins"] = "Plug-Ins"; $a->strings["Themes"] = "Themes"; -$a->strings["Server"] = "Server"; +$a->strings["Inspect queue"] = "Warteschlange kontrollieren"; $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["Site settings updated."] = "Site-Einstellungen aktualisiert."; +$a->strings["Version"] = "Version"; +$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; +$a->strings["mobile"] = "mobil"; $a->strings["experimental"] = "experimentell"; $a->strings["unsupported"] = "nicht unterstützt"; $a->strings["Yes - with approval"] = "Ja - mit Zustimmung"; @@ -1722,6 +1603,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 Servers, 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,8 +1623,8 @@ $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"; @@ -1750,11 +1635,14 @@ $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"] = "Setze den Zeitraum (in Tagen), ab wann importierte Inhalte aus der RedMatrix (dem Netzwerk) ablaufen sollen"; +$a->strings["0 for no expiration of imported content"] = "Setze 0, damit importierte Inhalte niemals ablaufen (entfernt werden)"; $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,17 +1652,25 @@ $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 bekannter 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"] = "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"; @@ -1782,26 +1678,36 @@ $a->strings["Request date"] = "Antragsdatum"; $a->strings["No registrations."] = "Keine Registrierungen."; $a->strings["Approve"] = "Genehmigen"; $a->strings["Deny"] = "Verweigern"; +$a->strings["Block"] = "Blockieren"; +$a->strings["Unblock"] = "Freigeben"; $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", ); +$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 nicht erlauben"; $a->strings["UID"] = "UID"; $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?"; @@ -1816,7 +1722,7 @@ $a->strings["No themes found."] = "Keine Theme gefunden."; $a->strings["Screenshot"] = "Bildschirmfoto"; $a->strings["[Experimental]"] = "[Experimentell]"; $a->strings["[Unsupported]"] = "[Nicht unterstützt]"; -$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; +$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert."; $a->strings["Clear"] = "Leeren"; $a->strings["Debugging"] = "Debugging"; $a->strings["Log file"] = "Protokolldatei"; @@ -1834,76 +1740,270 @@ $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["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."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; +$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["Terms of Service"] = "Nutzungsbedingungen"; +$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; +$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["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["WARNING: "] = "WARNUNG: "; +$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["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 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["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["Remote privacy information not available."] = "Privatsphäreeinstellungen anderer Nutzer sind nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["Name is required"] = "Name ist erforderlich"; +$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis sind erforderlich"; +$a->strings["Diaspora Policy Settings updated."] = "Diaspora-Richtlinieneinstellungen 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 Funktionseinstellungen konfiguriert"; +$a->strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; +$a->strings["Settings for the built-in Diaspora emulator"] = "Einstellungen für den eingebauten Diaspora-Emulator"; +$a->strings["Allow any Diaspora member to comment on your public posts"] = "Jedem Diaspora-Mitglied erlauben, Deine öffentlichen Beiträge zu kommentieren"; +$a->strings["Enable the Diaspora protocol for this channel"] = "Diaspora-Protokoll für diesen Kanal aktivieren"; +$a->strings["Diaspora Policy Settings"] = "Diaspora-Richtlinieneinstellungen"; +$a->strings["Prevent your hashtags from being redirected to other sites"] = "Verhindern, dass Deine hashtags zu anderen Seiten umgeleitet werden"; +$a->strings["Account Settings"] = "Kontoeinstellungen"; +$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"] = "Verbindereinstellungen"; +$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"] = "Anzeigeeinstellungen"; +$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)"] = "Systemseitengestaltungseditor - (erweitert)"; +$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"] = "Kanaleinstellungen"; +$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 Datenschutzeinstellungen"; +$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äreeinstellungen:"; +$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äreeinstellungen"; +$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"] = "Standardmäßige Beitragsberechtigungen"; +$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"] = "Benachrichtigungseinstellungen"; +$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 Konto-/Seitentypeinstellungen"; +$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!"] = "Bitte aktivieren Sie den Expertenmodus (unter Einstellungen > 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 Channel"] = "Kanal löschen"; +$a->strings["Remove this channel."] = "Diesen Kanal löschen"; +$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["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["Total votes"] = "Stimmen insgesamt"; $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["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["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["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["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 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["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["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 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["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["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."; @@ -1923,6 +2023,8 @@ $a->strings["No secure communications available. You may be abl $a->strings["Send Reply"] = "Antwort senden"; $a->strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; $a->strings["Discard"] = "Verwerfen"; +$a->strings["Please login."] = "Bitte melde dich an."; +$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["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["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; @@ -1932,112 +2034,78 @@ $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["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["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."; -$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["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"; -$a->strings["Show Oldest First"] = "Älteste zuerst anzeigen"; -$a->strings["View Photo"] = "Foto ansehen"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; -$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["View Full Size"] = "In voller Größe anzeigen"; -$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["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["View Album"] = "Album ansehen"; -$a->strings["Recent Photos"] = "Neueste Fotos"; +$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["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["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["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; +$a->strings["Layout Description"] = "Gestaltungsbeschreibung"; +$a->strings["Download PDL file"] = "PDL-Datei herunterladen"; +$a->strings["Welcome to %s"] = "Willkommen auf %s"; +$a->strings["Lorem Ipsum"] = "Lorem Ipsum"; $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["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."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; -$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["Terms of Service"] = "Nutzungsbedingungen"; -$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; -$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["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["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"; +$a->strings["View Results"] = "Ergebnisse ansehen"; $a->strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; $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["Schema Default"] = "Schemastandard"; +$a->strings["Sans-Serif"] = "Sans Serif"; +$a->strings["Monospace"] = "Monospace (dicktengleich)"; $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 scheme"] = "Schema festlegen"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; $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 iconset"] = "Symbolsatz festlegen"; +$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ausmaß der großen Schatten (Default 15px 15px 15px)"; +$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ausmaß der kleinen Schatten festlegen (Voreinstellung 5px 5px 5px)"; +$a->strings["Set shadow color, default #000"] = "Schattenfarbe (Voreinstellung #000)"; +$a->strings["Set radius size, default 5px"] = "Eckenradius (Voreinstellung 5px)"; +$a->strings["Set line-height for posts and comments"] = "Zeilenhöhe für Beiträge und Kommentare"; +$a->strings["Set background image"] = "Hintergrundbild festlegen"; $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 background color"] = "Hintergrundfarbe festlegen"; +$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 max-width for items. Default 400px"] = "Maximalbreite von Beiträgen (Voreinstellung 400px)"; +$a->strings["Set min-width for items. Default 240px"] = "Minimalbreite 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["Set background-size element"] = "size-Element für den Hintergrund"; +$a->strings["Item opacity"] = "Deckkraft für 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["Display side bar on channel page"] = "Seitenleiste auf der Kanalseite anzeigen"; $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["Item float"] = "float für Beiträge"; +$a->strings["Left offset of the section element"] = "Linker offset des section-Elements"; +$a->strings["Right offset of the section element"] = "Rechter offset des section-Elements"; +$a->strings["Section width"] = "Breite der section"; +$a->strings["Left offset of the aside"] = "Linker offset der Seitenleiste"; +$a->strings["Right offset of the aside element"] = "Rechter offset der Seitenleiste"; $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"; @@ -2049,31 +2117,33 @@ $a->strings["Navigation bar icon color "] = "Farbe für die Icons der Navigation $a->strings["Navigation bar active icon color "] = "Farbe für aktive Icons der Navigationsleiste"; $a->strings["link color"] = "Farbe für Links"; $a->strings["Set font-color for banner"] = "Farbe der Schrift des Banners"; -$a->strings["Set the background color"] = "Hintergrundfarbe"; -$a->strings["Set the background image"] = "Hintergrundbild"; -$a->strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge"; -$a->strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare"; -$a->strings["Set the border color of comments"] = "Farbe des Randes von Kommentaren"; -$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["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 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["Set the background color"] = "Hintergrundfarbe festlegen"; +$a->strings["Set the background image"] = "Hintergrundbild festlegen"; +$a->strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge festlegen"; +$a->strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare festlegen"; +$a->strings["Set the border color of comments"] = "Farbe des Randes von Kommentaren festlegen"; +$a->strings["Set the indent for comments"] = "Einzugsbreite für Kommentare festlegen"; +$a->strings["Set the basic color for item icons"] = "Grundfarbe für Beitragssymbole festlegen"; +$a->strings["Set the hover color for item icons"] = "Farbe für Beitragssymbole unter dem Mauszeiger festlegen"; +$a->strings["Set font-size for the entire application"] = "Schriftgröße für die gesamte Anwendung festlegen"; +$a->strings["Example: 14px"] = "Beispiel: 14px"; +$a->strings["Set font-color for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare festlegen"; +$a->strings["Set radius of corners"] = "Eckenradius festlegen"; +$a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos festlegen"; +$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["Center page content"] = "Seiteninhalt zentrieren"; +$a->strings["Set minimum opacity of nav bar - to hide it"] = "Mindestdeckkraft der Navigationsleiste festlegen - zum Verstecken"; +$a->strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern festlegen"; +$a->strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren festlegen"; $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["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["[red] Website SSL error for %s"] = "[red] Website-SSL-Fehler für %s"; +$a->strings["Cron/Scheduled tasks not running."] = "Cron-Aufgaben laufen nicht."; +$a->strings["[red] Cron tasks not running on %s"] = "[red] Cron-Aufgaben für %s laufen nicht"; diff --git a/view/es/hmessages.po b/view/es/hmessages.po index bb0ba9839..fa8cbd33a 100644 --- a/view/es/hmessages.po +++ b/view/es/hmessages.po @@ -1,20 +1,20 @@ -# 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: -# boquiabierto , 2013-2014 # Alfonso , 2015 # jeroenpraat , 2015 # Manuel Jiménez Friaza , 2015 # Rafael, 2015 +# Rafael, 2015 # tony baldwin , 2014 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 00:05-0700\n" -"PO-Revision-Date: 2015-09-14 18:21+0000\n" +"POT-Creation-Date: 2015-10-16 00:03-0700\n" +"PO-Revision-Date: 2015-10-18 14:15+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (http://www.transifex.com/Friendica/red-matrix/language/es/)\n" "MIME-Version: 1.0\n" @@ -23,231 +23,355 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:141 +#: ../../include/photos.php:26 ../../include/chat.php:133 +#: ../../include/items.php:4378 ../../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:875 ../../include/attach.php:946 +#: ../../include/attach.php:1098 ../../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/rate.php:111 ../../mod/mail.php:118 +#: ../../mod/editpost.php:13 ../../mod/editblock.php:65 ../../mod/item.php:206 +#: ../../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/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/channel.php:100 ../../mod/channel.php:214 +#: ../../mod/channel.php:254 ../../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 "Acceso denegado." + +#: ../../include/photos.php:109 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -#: ../../mod/photos.php:92 ../../mod/photos.php:637 -msgid "Profile Photos" -msgstr "Fotos de perfil" +#: ../../include/photos.php:116 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " -#: ../../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 "Editar" +#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 +msgid "Unable to process image" +msgstr "No ha sido posible procesar la imagen" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frecuentemente" +#: ../../include/photos.php:228 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Cada hora" +#: ../../include/photos.php:431 ../../include/conversation.php:1609 +msgid "Photo Albums" +msgstr "Álbumes de fotos" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Dos veces al día" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Diariamente" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Semanalmente" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensualmente" - -#: ../../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 "Correo electrónico" - -#: ../../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/notify.php:23 -msgid "created a new post" -msgstr "ha creado una nueva entrada" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "ha comentado la entrada de %s" +#: ../../include/photos.php:435 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" #: ../../include/Import/import_diaspora.php:17 msgid "No username found in import file." msgstr "No se ha encontrado el nombre de usuario en el fichero importado." -#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 +#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 msgid "Unable to create a unique channel address. Import failed." msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." -#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 +#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:486 msgid "Import completed." msgstr "Importación completada." -#: ../../include/group.php:26 +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:265 +msgid "parent" +msgstr "padre" + +#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2490 +msgid "Collection" +msgstr "Colección" + +#: ../../include/RedDAV/RedBrowser.php:134 +msgid "Principal" +msgstr "Principal" + +#: ../../include/RedDAV/RedBrowser.php:137 +msgid "Addressbook" +msgstr "Libreta de direcciones" + +#: ../../include/RedDAV/RedBrowser.php:140 +msgid "Calendar" +msgstr "Calendario" + +#: ../../include/RedDAV/RedBrowser.php:143 +msgid "Schedule Inbox" +msgstr "Programar bandeja de entrada" + +#: ../../include/RedDAV/RedBrowser.php:146 +msgid "Schedule Outbox" +msgstr "Programar bandeja de salida" + +#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:355 +#: ../../include/apps.php:410 ../../include/conversation.php:1023 +#: ../../mod/photos.php:747 ../../mod/photos.php:1186 +msgid "Unknown" +msgstr "Desconocido" + +#: ../../include/RedDAV/RedBrowser.php:227 +#, php-format +msgid "%1$s used" +msgstr "%1$s usado" + +#: ../../include/RedDAV/RedBrowser.php:232 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s usado de %2$s (%3$s%)" + +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/apps.php:135 +#: ../../include/conversation.php:1613 ../../include/nav.php:93 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Ficheros" + +#: ../../include/RedDAV/RedBrowser.php:253 +msgid "Total" +msgstr "Total" + +#: ../../include/RedDAV/RedBrowser.php:255 +msgid "Shared" +msgstr "Compartido" + +#: ../../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 "Crear" + +#: ../../include/RedDAV/RedBrowser.php:257 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:772 +#: ../../mod/photos.php:1305 ../../mod/profile_photo.php:450 +msgid "Upload" +msgstr "Subir" + +#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:948 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 +#: ../../mod/sharedwithme.php:95 +msgid "Name" +msgstr "Nombre" + +#: ../../include/RedDAV/RedBrowser.php:262 +msgid "Type" +msgstr "Tipo" + +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 +msgid "Size" +msgstr "Tamaño" + +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 +msgid "Last Modified" +msgstr "Última modificación" + +#: ../../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 "Editar" + +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/apps.php:255 +#: ../../include/ItemObject.php:120 ../../include/conversation.php:657 +#: ../../mod/connedit.php:547 ../../mod/editblock.php:181 +#: ../../mod/admin.php:783 ../../mod/admin.php:942 ../../mod/photos.php:1117 +#: ../../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 "Eliminar" + +#: ../../include/RedDAV/RedBrowser.php:302 +msgid "Create new folder" +msgstr "Crear nueva carpeta" + +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Upload file" +msgstr "Subir fichero" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Pueden verse mi flujo de actividad y publicaciones normales" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Puede verse mi perfil de canal predeterminado." + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Pueden verse mis conexiones" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pueden verse mi repositorio de ficheros y mis fotos" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pueden verse mis páginas web" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Me pueden enviar sus entradas y flujo de actividad del canal" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Se me pueden enviar mensajes privados" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Puede marcarse contenido como me gusta/no me gusta" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Se puede charlar conmigo (cuando esté disponible)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pueden editarse mis páginas web" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Algo avanzado - muy útil en comunidades abiertas" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pueden administrarse mis recursos del canal" + +#: ../../include/permissions.php:46 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 "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto por favor cree otro grupo con un nombre diferente." +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Privacidad de grupo por defecto para nuevos contactos " +#: ../../include/permissions.php:867 +msgid "Social Networking" +msgstr "Redes sociales" -#: ../../include/group.php:254 ../../mod/admin.php:831 -msgid "All Channels" -msgstr "Todos los canales" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" +msgstr "Público en su mayor parte" -#: ../../include/group.php:276 -msgid "edit" -msgstr "editar" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" +msgstr "Restringido" -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Colecciones" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" +msgstr "Privado" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Editar colección" +#: ../../include/permissions.php:868 +msgid "Community Forum" +msgstr "Foro de discusión" -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "Añadir nueva colección" +#: ../../include/permissions.php:869 +msgid "Feed Republish" +msgstr "Republicar un \"feed\"" -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "El canal no se encuentra en ninguna colección" +#: ../../include/permissions.php:870 +msgid "Special Purpose" +msgstr "Propósito especial" -#: ../../include/group.php:303 ../../include/widgets.php:275 -msgid "add" -msgstr "añadir" +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" +msgstr "Página para fans" -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" +#: ../../include/permissions.php:870 +msgid "Group Repository" +msgstr "Repositorio de grupo" -#: ../../include/account.php:29 -msgid "Your email domain is not among those allowed on this site" -msgstr "Su dirección de correo no pertenece a los dominios permitidos en este sitio." +#: ../../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 "Otro" -#: ../../include/account.php:35 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." +#: ../../include/permissions.php:871 +msgid "Custom/Expert Mode" +msgstr "Modo personalizado/experto" -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "Es obligatorio que le inviten." +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Sala de chat sin nombre" -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "No se ha podido verificar su invitación." +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Nombre de sala duplicado." -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "Por favor introduzca la información requerida." +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Especificador de sala no válido." -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "La información de la cuenta no se ha podido guardar." +#: ../../include/chat.php:122 +msgid "Room not found." +msgstr "Sala no encontrada." -#: ../../include/account.php:246 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmación de registro para %s" - -#: ../../include/account.php:312 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" - -#: ../../include/account.php:314 ../../include/account.php:341 -#: ../../include/account.php:401 ../../include/network.php:1632 -msgid "Administrator" -msgstr "Administrador" - -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "su contraseña de registro" - -#: ../../include/account.php:339 ../../include/account.php:399 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles del registro de %s" - -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "Cuenta aprobada." - -#: ../../include/account.php:447 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registro revocado para %s" - -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "Cuenta verificada. Por favor, inicie sesión." - -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "Pulse aquí para actualizar" - -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Esta acción supera los límites establecidos por su plan de suscripción " - -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está disponible en su plan de suscripción." +#: ../../include/chat.php:143 +msgid "Room is full" +msgstr "La sala está llena." #: ../../include/datetime.php:48 msgid "Miscellaneous" @@ -257,12 +381,12 @@ msgstr "Varios" msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/datetime.php:235 ../../mod/events.php:672 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 +#: ../../include/datetime.php:235 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 ../../mod/events.php:689 msgid "Required" msgstr "Obligatorio" -#: ../../include/datetime.php:262 ../../boot.php:2353 +#: ../../include/datetime.php:262 ../../boot.php:2312 msgid "never" msgstr "nunca" @@ -342,92 +466,262 @@ msgstr "Cumpleaños de %1$s" msgid "Happy Birthday %1$s" msgstr "Feliz cumpleaños %1$s" -#: ../../include/dir_fns.php:126 -msgid "Directory Options" -msgstr "Opciones del directorio" +#: ../../include/features.php:38 +msgid "General Features" +msgstr "Características generales" -#: ../../include/dir_fns.php:128 -msgid "Safe Mode" -msgstr "Modo seguro" +#: ../../include/features.php:40 +msgid "Content Expiration" +msgstr "Caducidad del contenido" -#: ../../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 "No" +#: ../../include/features.php:40 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" -#: ../../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 "Sí" +#: ../../include/features.php:41 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" -#: ../../include/dir_fns.php:129 -msgid "Public Forums Only" -msgstr "Solo foros públicos" +#: ../../include/features.php:41 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" -#: ../../include/dir_fns.php:130 -msgid "This Website Only" -msgstr "Solo este sitio web" +#: ../../include/features.php:42 +msgid "Advanced Profiles" +msgstr "Perfiles avanzados" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nueva página" +#: ../../include/features.php:42 +msgid "Additional profile sections and selections" +msgstr "Secciones y selecciones de perfil adicionales" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:187 -#: ../../mod/blocks.php:159 ../../mod/layouts.php:188 -msgid "View" -msgstr "Ver" +#: ../../include/features.php:43 +msgid "Profile Import/Export" +msgstr "Importar/Exportar perfil" -#: ../../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 "Previsualizar" +#: ../../include/features.php:43 +msgid "Save and load profile details across sites/channels" +msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "Acciones" +#: ../../include/features.php:44 +msgid "Web Pages" +msgstr "Páginas web" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "Vínculo de la página" +#: ../../include/features.php:44 +msgid "Provide managed web pages on your channel" +msgstr "Proveer páginas web gestionadas en su canal" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Título" +#: ../../include/features.php:45 +msgid "Private Notes" +msgstr "Notas privadas" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:192 -#: ../../mod/blocks.php:150 ../../mod/menu.php:108 ../../mod/layouts.php:181 -msgid "Created" -msgstr "Creado" +#: ../../include/features.php:45 +msgid "Enables a tool to store notes and reminders" +msgstr "Activar una herramienta para almacenar notas y recordatorios" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:193 -#: ../../mod/blocks.php:151 ../../mod/menu.php:109 ../../mod/layouts.php:182 -msgid "Edited" -msgstr "Editado" +#: ../../include/features.php:46 +msgid "Navigation Channel Select" +msgstr "Navegación por el selector de canales" -#: ../../include/api.php:1234 -msgid "Public Timeline" -msgstr "Cronología pública" +#: ../../include/features.php:46 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../include/comanche.php:34 ../../mod/admin.php:390 -#: ../../view/theme/apw/php/config.php:185 +#: ../../include/features.php:47 +msgid "Photo Location" +msgstr "Ubicación de las fotos" + +#: ../../include/features.php:47 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." + +#: ../../include/features.php:49 +msgid "Expert Mode" +msgstr "Modo de experto" + +#: ../../include/features.php:49 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" + +#: ../../include/features.php:50 +msgid "Premium Channel" +msgstr "Canal premium" + +#: ../../include/features.php:50 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Les permite configurar restricciones y normas de uso a aquellos que conectan con su canal" + +#: ../../include/features.php:55 +msgid "Post Composition Features" +msgstr "Características de composición de entradas" + +#: ../../include/features.php:57 +msgid "Use Markdown" +msgstr "Usar Markdown" + +#: ../../include/features.php:57 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Permitir el uso de \"Markdown\" para formatear publicaciones" + +#: ../../include/features.php:58 +msgid "Large Photos" +msgstr "Fotos de gran tamaño" + +#: ../../include/features.php:58 +msgid "" +"Include large (640px) photo thumbnails in posts. If not enabled, use small " +"(320px) photo thumbnails" +msgstr "Incluir miniaturas de fotos grandes (640px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (320px)" + +#: ../../include/features.php:59 ../../include/widgets.php:545 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Orígenes de los contenidos del canal" + +#: ../../include/features.php:59 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" + +#: ../../include/features.php:60 +msgid "Even More Encryption" +msgstr "Más cifrado todavía" + +#: ../../include/features.php:60 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." + +#: ../../include/features.php:61 +msgid "Enable voting tools" +msgstr "Activar herramientas de votación" + +#: ../../include/features.php:61 +msgid "Provide a class of post which others can vote on" +msgstr "Proveer una clase de publicación en la que otros puedan votar" + +#: ../../include/features.php:67 +msgid "Network and Stream Filtering" +msgstr "Filtrado del contenido" + +#: ../../include/features.php:68 +msgid "Search by Date" +msgstr "Buscar por fecha" + +#: ../../include/features.php:68 +msgid "Ability to select posts by date ranges" +msgstr "Capacidad de seleccionar entradas por rango de fechas" + +#: ../../include/features.php:69 +msgid "Collections Filter" +msgstr "Filtrado de colecciones" + +#: ../../include/features.php:69 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Habilitar la muestra de entradas eligiendo colecciones" + +#: ../../include/features.php:70 ../../include/widgets.php:273 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" + +#: ../../include/features.php:70 +msgid "Save search terms for re-use" +msgstr "Guardar términos de búsqueda para su reutilización" + +#: ../../include/features.php:71 +msgid "Network Personal Tab" +msgstr "Actividad personal" + +#: ../../include/features.php:71 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." + +#: ../../include/features.php:72 +msgid "Network New Tab" +msgstr "Contenido nuevo" + +#: ../../include/features.php:72 +msgid "Enable tab to display all new Network activity" +msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" + +#: ../../include/features.php:73 +msgid "Affinity Tool" +msgstr "Herramienta de afinidad" + +#: ../../include/features.php:73 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrar la actividad del flujo por profundidad de relaciones" + +#: ../../include/features.php:74 +msgid "Connection Filtering" +msgstr "Filtrado de conexiones" + +#: ../../include/features.php:74 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" + +#: ../../include/features.php:75 +msgid "Suggest Channels" +msgstr "Sugerir canales" + +#: ../../include/features.php:75 +msgid "Show channel suggestions" +msgstr "Mostrar sugerencias de canales" + +#: ../../include/features.php:80 +msgid "Post/Comment Tools" +msgstr "Herramientas de entradas/comentarios" + +#: ../../include/features.php:81 +msgid "Tagging" +msgstr "Etiquetado" + +#: ../../include/features.php:81 +msgid "Ability to tag existing posts" +msgstr "Capacidad de etiquetar entradas existentes" + +#: ../../include/features.php:82 +msgid "Post Categories" +msgstr "Categorías de entradas" + +#: ../../include/features.php:82 +msgid "Add categories to your posts" +msgstr "Añadir categorías a sus publicaciones" + +#: ../../include/features.php:83 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "Carpetas guardadas" + +#: ../../include/features.php:83 +msgid "Ability to file posts under folders" +msgstr "Capacidad de archivar entradas en carpetas" + +#: ../../include/features.php:84 +msgid "Dislike Posts" +msgstr "Desagrado de publicaciones" + +#: ../../include/features.php:84 +msgid "Ability to dislike posts/comments" +msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" + +#: ../../include/features.php:85 +msgid "Star Posts" +msgstr "Entradas destacadas" + +#: ../../include/features.php:85 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" + +#: ../../include/features.php:86 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" + +#: ../../include/features.php:86 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Proveer nube de etiquetas personal en su página de canal" + +#: ../../include/comanche.php:34 ../../mod/admin.php:348 msgid "Default" msgstr "Predeterminado" @@ -435,12 +729,12 @@ msgstr "Predeterminado" msgid "Delete this item?" msgstr "¿Borrar este elemento?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:980 ../../mod/photos.php:1098 +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:683 +#: ../../mod/photos.php:1035 ../../mod/photos.php:1153 msgid "Comment" msgstr "Comentar" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:400 msgid "[+] show all" msgstr "[+] mostrar todo:" @@ -462,9 +756,9 @@ msgstr "Contraseña demasiado corta" #: ../../include/js_strings.php:12 msgid "Passwords do not match" -msgstr "Las contraseñas no cinciden" +msgstr "Las contraseñas no coinciden" -#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +#: ../../include/js_strings.php:13 ../../mod/photos.php:41 msgid "everybody" msgstr "cualquiera" @@ -492,8 +786,8 @@ msgstr "Nada nuevo por aquí" msgid "Rate This Channel (this is public)" msgstr "Valorar este canal (esto es público)" -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -#: ../../mod/connedit.php:683 +#: ../../include/js_strings.php:20 ../../mod/connedit.php:667 +#: ../../mod/rate.php:157 msgid "Rating" msgstr "Valoración" @@ -501,27 +795,25 @@ msgstr "Valoración" msgid "Describe (optional)" msgstr "Describir (opcional)" -#: ../../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 +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:684 +#: ../../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/rate.php:168 ../../mod/mail.php:371 +#: ../../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:625 +#: ../../mod/photos.php:996 ../../mod/photos.php:1036 +#: ../../mod/photos.php:1154 ../../mod/events.php:534 ../../mod/events.php:710 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/import.php:517 ../../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 "Enviar" @@ -543,7 +835,7 @@ msgstr "timeago.prefixFromNow" #: ../../include/js_strings.php:28 msgid "ago" -msgstr "de su publicación" +msgstr "antes" #: ../../include/js_strings.php:29 msgid "from now" @@ -606,2926 +898,500 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/text.php:391 -msgid "prev" -msgstr "anterior" - -#: ../../include/text.php:393 -msgid "first" -msgstr "primera" - -#: ../../include/text.php:422 -msgid "last" -msgstr "última" - -#: ../../include/text.php:425 -msgid "next" -msgstr "próxima" - -#: ../../include/text.php:435 -msgid "older" -msgstr "más antiguas" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "más recientes" - -#: ../../include/text.php:830 -msgid "No connections" -msgstr "Sin conexiones" - -#: ../../include/text.php:844 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Conexión" -msgstr[1] "%d Conexiones" - -#: ../../include/text.php:857 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "Ver conexiones" - -#: ../../include/text.php:914 ../../include/text.php:926 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "Buscar" - -#: ../../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 "Guardar" - -#: ../../include/text.php:990 -msgid "poke" -msgstr "dar un toque" - -#: ../../include/text.php:990 ../../include/conversation.php:243 -msgid "poked" -msgstr "ha recibido un toque" - -#: ../../include/text.php:991 -msgid "ping" -msgstr "avisar" - -#: ../../include/text.php:991 -msgid "pinged" -msgstr "avisado/a" - -#: ../../include/text.php:992 -msgid "prod" -msgstr "incitar" - -#: ../../include/text.php:992 -msgid "prodded" -msgstr "incitado/a" - -#: ../../include/text.php:993 -msgid "slap" -msgstr "abofetear" - -#: ../../include/text.php:993 -msgid "slapped" -msgstr "abofeteado/a" - -#: ../../include/text.php:994 -msgid "finger" -msgstr "señalar" - -#: ../../include/text.php:994 -msgid "fingered" -msgstr "señalado/a" - -#: ../../include/text.php:995 -msgid "rebuff" -msgstr "desairar" - -#: ../../include/text.php:995 -msgid "rebuffed" -msgstr "desairado/a" - -#: ../../include/text.php:1005 -msgid "happy" -msgstr "feliz" - -#: ../../include/text.php:1006 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1007 -msgid "mellow" -msgstr "amable" - -#: ../../include/text.php:1008 -msgid "tired" -msgstr "cansado/a" - -#: ../../include/text.php:1009 -msgid "perky" -msgstr "fesco/a" - -#: ../../include/text.php:1010 -msgid "angry" -msgstr "enfadado/a" - -#: ../../include/text.php:1011 -msgid "stupified" -msgstr "estupefacto/a" - -#: ../../include/text.php:1012 -msgid "puzzled" -msgstr "perplejo/a" - -#: ../../include/text.php:1013 -msgid "interested" -msgstr "interesado/a" - -#: ../../include/text.php:1014 -msgid "bitter" -msgstr "amargado/a" - -#: ../../include/text.php:1015 -msgid "cheerful" -msgstr "alegre" - -#: ../../include/text.php:1016 -msgid "alive" -msgstr "vivo/a" - -#: ../../include/text.php:1017 -msgid "annoyed" -msgstr "molesto/a" - -#: ../../include/text.php:1018 -msgid "anxious" -msgstr "ansioso/a" - -#: ../../include/text.php:1019 -msgid "cranky" -msgstr "de mal humor" - -#: ../../include/text.php:1020 -msgid "disturbed" -msgstr "perturbado/a" - -#: ../../include/text.php:1021 -msgid "frustrated" -msgstr "frustrado/a" - -#: ../../include/text.php:1022 -msgid "depressed" -msgstr "deprimido/a" - -#: ../../include/text.php:1023 -msgid "motivated" -msgstr "motivado/a" - -#: ../../include/text.php:1024 -msgid "relaxed" -msgstr "relajado/a" - -#: ../../include/text.php:1025 -msgid "surprised" -msgstr "sorprendido/a" - -#: ../../include/text.php:1197 -msgid "Monday" -msgstr "lunes" - -#: ../../include/text.php:1197 -msgid "Tuesday" -msgstr "martes" - -#: ../../include/text.php:1197 -msgid "Wednesday" -msgstr "miércoles" - -#: ../../include/text.php:1197 -msgid "Thursday" -msgstr "jueves" - -#: ../../include/text.php:1197 -msgid "Friday" -msgstr "viernes" - -#: ../../include/text.php:1197 -msgid "Saturday" -msgstr "sábado" - -#: ../../include/text.php:1197 -msgid "Sunday" -msgstr "domingo" - -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:44 ../../include/text.php:1144 msgid "January" msgstr "enero" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:45 ../../include/text.php:1144 msgid "February" msgstr "febrero" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:46 ../../include/text.php:1144 msgid "March" msgstr "marzo" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:47 ../../include/text.php:1144 msgid "April" msgstr "abril" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:48 +msgctxt "long" msgid "May" msgstr "mayo" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:49 ../../include/text.php:1144 msgid "June" msgstr "junio" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:50 ../../include/text.php:1144 msgid "July" msgstr "julio" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:51 ../../include/text.php:1144 msgid "August" msgstr "agosto" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:52 ../../include/text.php:1144 msgid "September" msgstr "septiembre" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:53 ../../include/text.php:1144 msgid "October" msgstr "octubre" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:54 ../../include/text.php:1144 msgid "November" msgstr "noviembre" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:55 ../../include/text.php:1144 msgid "December" msgstr "diciembre" -#: ../../include/text.php:1306 -msgid "unknown.???" -msgstr "desconocido???" +#: ../../include/js_strings.php:56 +msgid "Jan" +msgstr "Ene" -#: ../../include/text.php:1307 -msgid "bytes" -msgstr "bytes" +#: ../../include/js_strings.php:57 +msgid "Feb" +msgstr "Feb" -#: ../../include/text.php:1343 -msgid "remove category" -msgstr "eliminar categoría" +#: ../../include/js_strings.php:58 +msgid "Mar" +msgstr "Mar" -#: ../../include/text.php:1418 -msgid "remove from file" -msgstr "eliminar del fichero" +#: ../../include/js_strings.php:59 +msgid "Apr" +msgstr "Abr" -#: ../../include/text.php:1494 ../../include/text.php:1505 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" +#: ../../include/js_strings.php:60 +msgctxt "short" +msgid "May" +msgstr "May" -#: ../../include/text.php:1661 ../../mod/events.php:474 -msgid "Link to Source" -msgstr "Enlazar con la entrada en su ubicación original" +#: ../../include/js_strings.php:61 +msgid "Jun" +msgstr "Jun" -#: ../../include/text.php:1682 ../../include/text.php:1753 -msgid "default" -msgstr "por defecto" +#: ../../include/js_strings.php:62 +msgid "Jul" +msgstr "Jul" -#: ../../include/text.php:1690 -msgid "Page layout" -msgstr "Formato de la página" +#: ../../include/js_strings.php:63 +msgid "Aug" +msgstr "Ago" -#: ../../include/text.php:1690 -msgid "You can create your own with the layouts tool" -msgstr "Puede crear su propio formato gráfico con las herramientas de diseño" +#: ../../include/js_strings.php:64 +msgid "Sep" +msgstr "Sep" -#: ../../include/text.php:1731 -msgid "Page content type" -msgstr "Tipo de contenido de página" +#: ../../include/js_strings.php:65 +msgid "Oct" +msgstr "Oct" -#: ../../include/text.php:1765 -msgid "Select an alternate language" -msgstr "Selecciona un idioma alternativo" +#: ../../include/js_strings.php:66 +msgid "Nov" +msgstr "Nov" -#: ../../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:67 +msgid "Dec" +msgstr "Dic" -#: ../../include/text.php:1887 ../../include/conversation.php:123 -#: ../../mod/like.php:351 ../../mod/tagger.php:47 -msgid "event" -msgstr "evento" +#: ../../include/js_strings.php:68 ../../include/text.php:1140 +msgid "Sunday" +msgstr "domingo" -#: ../../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 "estado" +#: ../../include/js_strings.php:69 ../../include/text.php:1140 +msgid "Monday" +msgstr "lunes" -#: ../../include/text.php:1892 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "comentario" +#: ../../include/js_strings.php:70 ../../include/text.php:1140 +msgid "Tuesday" +msgstr "martes" -#: ../../include/text.php:1897 -msgid "activity" -msgstr "actividad" +#: ../../include/js_strings.php:71 ../../include/text.php:1140 +msgid "Wednesday" +msgstr "miércoles" -#: ../../include/text.php:2192 -msgid "Design Tools" -msgstr "Herramientas de diseño" +#: ../../include/js_strings.php:72 ../../include/text.php:1140 +msgid "Thursday" +msgstr "jueves" -#: ../../include/text.php:2195 ../../mod/blocks.php:147 -msgid "Blocks" -msgstr "Bloques" +#: ../../include/js_strings.php:73 ../../include/text.php:1140 +msgid "Friday" +msgstr "viernes" -#: ../../include/text.php:2196 ../../mod/menu.php:101 -msgid "Menus" -msgstr "Menús" +#: ../../include/js_strings.php:74 ../../include/text.php:1140 +msgid "Saturday" +msgstr "sábado" -#: ../../include/text.php:2197 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "Formato gráfico" +#: ../../include/js_strings.php:75 +msgid "Sun" +msgstr "Dom" -#: ../../include/text.php:2198 -msgid "Pages" -msgstr "Páginas" +#: ../../include/js_strings.php:76 +msgid "Mon" +msgstr "Lun" -#: ../../include/text.php:2549 ../../include/RedDAV/RedBrowser.php:131 -msgid "Collection" -msgstr "Colección" +#: ../../include/js_strings.php:77 +msgid "Tue" +msgstr "Mar" -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "parent" -msgstr "padre" +#: ../../include/js_strings.php:78 +msgid "Wed" +msgstr "Mié" -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "Principal" +#: ../../include/js_strings.php:79 +msgid "Thu" +msgstr "Jue" -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "Libreta de direcciones" +#: ../../include/js_strings.php:80 +msgid "Fri" +msgstr "Vie" -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "Calendario" +#: ../../include/js_strings.php:81 +msgid "Sat" +msgstr "Sáb" -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" -msgstr "Programar bandeja de entrada" +#: ../../include/js_strings.php:82 +msgctxt "calendar" +msgid "today" +msgstr "hoy" -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" -msgstr "Programar bandeja de salida" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "month" +msgstr "mes" -#: ../../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" -msgstr "Desconocido" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "week" +msgstr "semana" -#: ../../include/RedDAV/RedBrowser.php:227 +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "day" +msgstr "día" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "All day" +msgstr "Todos los días" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frecuentemente" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Cada hora" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Dos veces al día" + +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Diariamente" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Semanalmente" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensualmente" + +#: ../../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/id.php:15 +#: ../../mod/id.php:16 ../../mod/admin.php:779 ../../mod/admin.php:788 +#: ../../boot.php:1505 +msgid "Email" +msgstr "Correo electrónico" + +#: ../../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/activities.php:42 +msgid " and " +msgstr "y" + +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "perfil público" + +#: ../../include/activities.php:59 #, php-format -msgid "%1$s used" -msgstr "%1$s usado" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s cambió %2$s a “%3$s”" -#: ../../include/RedDAV/RedBrowser.php:232 +#: ../../include/activities.php:60 #, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s usado de %2$s (%3$s%)" +msgid "Visit %1$s's %2$s" +msgstr "Visitar %2$s de %1$s" -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/conversation.php:1620 ../../include/apps.php:135 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Ficheros" +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s actualizó %2$s, %3$s cambió." -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" -msgstr "Total" +#: ../../include/Contact.php:101 ../../include/identity.php:965 +#: ../../include/conversation.php:949 ../../include/widgets.php:136 +#: ../../include/widgets.php:174 ../../mod/directory.php:316 +#: ../../mod/match.php:64 ../../mod/suggest.php:52 +msgid "Connect" +msgstr "Conectar" -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" -msgstr "Compartido" +#: ../../include/Contact.php:118 +msgid "New window" +msgstr "Nueva ventana" -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../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 "Crear" +#: ../../include/Contact.php:119 +msgid "Open the selected location in a different window or browser tab" +msgstr "Abrir la ubicación seleccionada en una ventana o pestaña aparte" -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:718 ../../mod/photos.php:1248 -msgid "Upload" -msgstr "Subir" +#: ../../include/Contact.php:237 +#, php-format +msgid "User '%s' deleted" +msgstr "El usuario '%s' ha sido eliminado" -#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -#: ../../mod/sharedwithme.php:95 -msgid "Name" -msgstr "Nombre" +#: ../../include/dba/dba_driver.php:141 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" -#: ../../include/RedDAV/RedBrowser.php:262 -msgid "Type" -msgstr "Tipo" +#: ../../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 "Permiso denegado" -#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 -msgid "Size" -msgstr "Tamaño" +#: ../../include/items.php:1129 ../../include/items.php:1175 +msgid "(Unknown)" +msgstr "(Desconocido)" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 -msgid "Last Modified" -msgstr "Última modificación" +#: ../../include/items.php:1373 +msgid "Visible to anybody on the internet." +msgstr "Visible para cualquiera en internet." -#: ../../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: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 "Borrar" +#: ../../include/items.php:1375 +msgid "Visible to you only." +msgstr "Visible sólo para usted." -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "Crear nueva carpeta" +#: ../../include/items.php:1377 +msgid "Visible to anybody in this network." +msgstr "Visible para cualquiera en esta red." -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "Subir fichero" +#: ../../include/items.php:1379 +msgid "Visible to anybody authenticated." +msgstr "Visible para cualquiera que haya sido autenticado." + +#: ../../include/items.php:1381 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible para cualquiera en %s." + +#: ../../include/items.php:1383 +msgid "Visible to all connections." +msgstr "Visible para todas las conexiones." + +#: ../../include/items.php:1385 +msgid "Visible to approved connections." +msgstr "Visible para las conexiones permitidas." + +#: ../../include/items.php:1387 +msgid "Visible to specific connections." +msgstr "Visible para conexiones específicas." + +#: ../../include/items.php:4299 ../../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 "Elemento no encontrado." + +#: ../../include/items.php:4808 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Colección no encontrada." + +#: ../../include/items.php:4824 +msgid "Collection is empty." +msgstr "La colección está vacía." + +#: ../../include/items.php:4831 +#, php-format +msgid "Collection: %s" +msgstr "Colección: %s" + +#: ../../include/items.php:4841 ../../mod/connedit.php:658 +#, php-format +msgid "Connection: %s" +msgstr "Conexión: %s" + +#: ../../include/items.php:4843 +msgid "Connection not found." +msgstr "Conexión no encontrada" + +#: ../../include/api.php:1321 +msgid "Public Timeline" +msgstr "Cronología pública" + +#: ../../include/network.php:635 +msgid "view full size" +msgstr "Ver en el tamaño original" + +#: ../../include/network.php:1613 ../../include/enotify.php:57 +msgid "$Projectname Notification" +msgstr "Notificación de $Projectname" + +#: ../../include/network.php:1614 ../../include/enotify.php:58 +msgid "$projectname" +msgstr "$projectname" + +#: ../../include/network.php:1616 ../../include/enotify.php:60 +msgid "Thank You," +msgstr "Gracias," + +#: ../../include/network.php:1618 ../../include/enotify.php:62 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" + +#: ../../include/network.php:1660 ../../include/account.php:316 +#: ../../include/account.php:343 ../../include/account.php:403 +msgid "Administrator" +msgstr "Administrador" + +#: ../../include/network.php:1674 +msgid "No Subject" +msgstr "Sin asunto" #: ../../include/bookmarks.php:35 #, php-format msgid "%1$s's bookmarks" msgstr "Marcadores de %1$s" -#: ../../include/network.php:635 -msgid "view full size" -msgstr "Ver en el tamaño original" - -#: ../../include/network.php:1585 ../../include/enotify.php:58 -msgid "$Projectname Notification" -msgstr "Notificación de $Projectname" - -#: ../../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 "Gracias," - -#: ../../include/network.php:1590 ../../include/enotify.php:63 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" - -#: ../../include/network.php:1646 -msgid "No Subject" -msgstr "Sin asunto" - -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Características generales" - -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Caducidad del contenido" - -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" - -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" - -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" - -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Perfiles avanzados" - -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Secciones y selecciones de perfil adicionales" - -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Importar/Exportar perfil" - -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" - -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Páginas web" - -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Proveer páginas web gestionadas en su canal" - -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Notas privadas" - -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Activar una herramienta para almacenar notas y recordatorios" - -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Navegación por el selector de canales" - -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Cambiar canales directamente desde el menú de navegación desplegable" - -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "Ubicación de las fotos" - -#: ../../include/features.php:47 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlaza estas a un mapa." - -#: ../../include/features.php:49 -msgid "Expert Mode" -msgstr "Modo de experto" - -#: ../../include/features.php:49 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" - -#: ../../include/features.php:50 -msgid "Premium Channel" -msgstr "Canal premium" - -#: ../../include/features.php:50 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Les permite configurar restricciones y normas de uso a aquellos que conectan con su canal" - -#: ../../include/features.php:55 -msgid "Post Composition Features" -msgstr "Características de composición de entradas" - -#: ../../include/features.php:57 -msgid "Use Markdown" -msgstr "Usar Markdown" - -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Permitir el uso de \"Markdown\" para formatear publicaciones" - -#: ../../include/features.php:58 -msgid "Large Photos" -msgstr "Fotos de gran tamaño" - -#: ../../include/features.php:58 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Incluir miniaturas de fotos grandes (640px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (320px)" - -#: ../../include/features.php:59 ../../include/widgets.php:548 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Orígenes de los contenidos del canal" - -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" - -#: ../../include/features.php:60 -msgid "Even More Encryption" -msgstr "Más cifrado todavía" - -#: ../../include/features.php:60 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Permitir cifrado adicional de contenido punto-a-punto con una clave secreta compartida." - -#: ../../include/features.php:61 -msgid "Enable voting tools" -msgstr "Activar herramientas de votación" - -#: ../../include/features.php:61 -msgid "Provide a class of post which others can vote on" -msgstr "Proveer una clase de publicación en la que otros puedan votar" - -#: ../../include/features.php:67 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" - -#: ../../include/features.php:68 -msgid "Search by Date" -msgstr "Buscar por fecha" - -#: ../../include/features.php:68 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" - -#: ../../include/features.php:69 -msgid "Collections Filter" -msgstr "Filtrado de colecciones" - -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Habilitar la muestra de entradas eligiendo colecciones" - -#: ../../include/features.php:70 ../../include/widgets.php:274 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" - -#: ../../include/features.php:70 -msgid "Save search terms for re-use" -msgstr "Guardar términos de búsqueda para su reutilización" - -#: ../../include/features.php:71 -msgid "Network Personal Tab" -msgstr "Pestaña de red personal" - -#: ../../include/features.php:71 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." - -#: ../../include/features.php:72 -msgid "Network New Tab" -msgstr "Nueva pestaña de red" - -#: ../../include/features.php:72 -msgid "Enable tab to display all new Network activity" -msgstr "Habilitar una pestaña en la que se muestre toda la actividad de la red" - -#: ../../include/features.php:73 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" - -#: ../../include/features.php:73 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar la actividad del flujo por profundidad de relaciones" - -#: ../../include/features.php:74 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" - -#: ../../include/features.php:74 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones basadas en palabras clave / contenido" - -#: ../../include/features.php:75 -msgid "Suggest Channels" -msgstr "Sugerir canales" - -#: ../../include/features.php:75 -msgid "Show channel suggestions" -msgstr "Mostrar sugerencias de canales" - -#: ../../include/features.php:80 -msgid "Post/Comment Tools" -msgstr "Herramientas de entradas/comentarios" - -#: ../../include/features.php:81 -msgid "Tagging" -msgstr "Etiquetado" - -#: ../../include/features.php:81 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" - -#: ../../include/features.php:82 -msgid "Post Categories" -msgstr "Categorías de entradas" - -#: ../../include/features.php:82 -msgid "Add categories to your posts" -msgstr "Añadir categorías a sus publicaciones" - -#: ../../include/features.php:83 ../../include/widgets.php:304 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Carpetas guardadas" - -#: ../../include/features.php:83 -msgid "Ability to file posts under folders" -msgstr "Capacidad de archivar entradas en carpetas" - -#: ../../include/features.php:84 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" - -#: ../../include/features.php:84 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" - -#: ../../include/features.php:85 -msgid "Star Posts" -msgstr "Entradas destacadas" - -#: ../../include/features.php:85 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" - -#: ../../include/features.php:86 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" - -#: ../../include/features.php:86 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" - -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Categorías" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "Aplicaciones" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1515 -msgid "Personal" -msgstr "Personales" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Crear una aplicación personal" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Editar una aplicación personal" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../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 "Conectar" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: ../../include/widgets.php:143 ../../mod/connections.php:128 -msgid "Suggestions" -msgstr "Sugerencias" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Ver más..." - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Introducir la dirección del canal" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Ejemplo: paco@ejemplo.com, http://ejemplo.com/paco" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notas" - -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "Eliminar término" - -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Todo" - -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Hemeroteca" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:583 -msgid "Me" -msgstr "Yo" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:584 -msgid "Family" -msgstr "Familia" - -#: ../../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:585 -msgid "Friends" -msgstr "Amigos" - -#: ../../include/widgets.php:432 ../../mod/connedit.php:586 -msgid "Acquaintances" -msgstr "Conocidos/as" - -#: ../../include/widgets.php:433 ../../mod/connections.php:91 -#: ../../mod/connections.php:106 ../../mod/connedit.php:587 -msgid "All" -msgstr "Todas" - -#: ../../include/widgets.php:452 -msgid "Refresh" -msgstr "Recargar" - -#: ../../include/widgets.php:487 -msgid "Account settings" -msgstr "Configuración de la cuenta" - -#: ../../include/widgets.php:493 -msgid "Channel settings" -msgstr "Configuración del canal" - -#: ../../include/widgets.php:499 -msgid "Additional features" -msgstr "Características adicionales" - -#: ../../include/widgets.php:505 -msgid "Feature/Addon settings" -msgstr "Configuración de características o complementos" - -#: ../../include/widgets.php:511 -msgid "Display settings" -msgstr "Ajustes de visualización" - -#: ../../include/widgets.php:517 -msgid "Connected apps" -msgstr "Aplicaciones conectadas" - -#: ../../include/widgets.php:523 -msgid "Export channel" -msgstr "Exportar canal" - -#: ../../include/widgets.php:532 ../../mod/connedit.php:674 -msgid "Connection Default Permissions" -msgstr "Permisos predeterminados de conexión" - -#: ../../include/widgets.php:540 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" - -#: ../../include/widgets.php:556 ../../include/nav.php:208 -#: ../../include/apps.php:134 ../../mod/admin.php:1079 -#: ../../mod/admin.php:1279 -msgid "Settings" -msgstr "Ajustes" - -#: ../../include/widgets.php:569 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Mensajes" - -#: ../../include/widgets.php:572 -msgid "Check Mail" -msgstr "Comprobar correo" - -#: ../../include/widgets.php:577 ../../include/nav.php:199 -msgid "New Message" -msgstr "Nuevo mensaje" - -#: ../../include/widgets.php:652 -msgid "Chat Rooms" -msgstr "Salas de chat" - -#: ../../include/widgets.php:672 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" - -#: ../../include/widgets.php:692 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" - -#: ../../include/widgets.php:819 ../../include/widgets.php:877 -msgid "photo/image" -msgstr "foto/imagen" - -#: ../../include/widgets.php:972 ../../include/widgets.php:974 -msgid "Rate Me" -msgstr "Valorar este canal" - -#: ../../include/widgets.php:978 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" - -#: ../../include/widgets.php:989 -msgid "Public Hubs" -msgstr "Servidores públicos" - -#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 -msgid "l F d, Y \\@ g:i A" -msgstr "l d de F, Y \\@ G:i" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 -msgid "Starts:" -msgstr "Comienza:" - -#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 -msgid "Finishes:" -msgstr "Finaliza:" - -#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 -#: ../../include/identity.php:984 ../../mod/directory.php:302 -#: ../../mod/events.php:684 -msgid "Location:" -msgstr "Ubicación:" - -#: ../../include/event.php:549 -msgid "This event has been added to your calendar." -msgstr "Este evento ha sido añadido a su calendario." - -#: ../../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:Aviso] Nuevo correo recibido en %s" - -#: ../../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 le ha enviado un nuevo mensaje privado en %3$s." - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s le envió %2$s." - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "un mensaje privado" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." - -#: ../../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 comentó en [zrl=%3$s]a %4$s[/zrl]" - -#: ../../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 comentó en [zrl=%3$s]%4$s de %5$s[/zrl]" - -#: ../../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 comentó en [zrl=%3$s]su %4$s[/zrl]" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Aviso] Nuevo comentario de %2$s en la conversación #%1$d" - -#: ../../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 comentó un elemento/conversación que ha estado siguiendo." - -#: ../../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 "Para ver o comentar la conversación, visite %s" - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Aviso] %s escribió en su página de perfil" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s publicó en su página de perfil en %3$s" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s publicó en [zrl=%3$s]su página de perfil[/zrl]" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Aviso] %s le etiquetó" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s le etiquetó en %3$s" - -#: ../../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]le etiquetó[/zrl]." - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Aviso] %1$s le ha dado un toque" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s le dio un toque en %3$s" - -#: ../../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]le dio un toque[/zrl]." - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Aviso] %s etiquetó su entrada" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s etiquetó su publicación en %3$s" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s etiquetó [zrl=%3$s]su publicación[/zrl]" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Aviso] Solicitud de conexión recibida" - -#: ../../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, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" - -#: ../../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, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." - -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puede visitar su perfil en %s" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Aviso] recibió una sugerencia de conexión" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" - -#: ../../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, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." - -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "Nombre:" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." - -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "[Red:Aviso]" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[sin asunto]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "No ha sido posible determinar el remitente. " - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "No se han podido verificar las entradas guardadas." - -#: ../../include/diaspora.php:2148 ../../include/conversation.php:164 -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "a %1$s le gusta el %3$s de %2$s" - -#: ../../include/diaspora.php:2494 -msgid "Please choose" -msgstr "Por favor, elija" - -#: ../../include/diaspora.php:2496 -msgid "Agree" -msgstr "De acuerdo" - -#: ../../include/diaspora.php:2498 -msgid "Disagree" -msgstr "En desacuerdo" - -#: ../../include/diaspora.php:2500 -msgid "Abstain" -msgstr "Abstención" - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "El canal está bloqueado en este sitio." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Falta la ubicación del canal." - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Respuesta incompleta del canal." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "El canal ha sido eliminado y ya no existe." - -#: ../../include/follow.php:135 ../../include/follow.php:206 -msgid "Protocol disabled." -msgstr "Protocolo deshabilitado." - -#: ../../include/follow.php:144 -msgid "Protocol blocked for this channel." -msgstr "Protocolo bloqueado para este canal." - -#: ../../include/follow.php:179 -msgid "Channel discovery failed." -msgstr "El intento de acceder al canal ha fallado." - -#: ../../include/follow.php:195 -msgid "local account not found." -msgstr "No se ha encontrado la cuenta local." - -#: ../../include/follow.php:224 -msgid "Cannot connect to yourself." -msgstr "No puede conectarse consigo mismo." - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 -msgid "Private Message" -msgstr "Mensaje Privado" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 -msgid "Select" -msgstr "Seleccionar" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Guardar en carpeta" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Participaré" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "No participaré" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Quizá participe" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Estoy de acuerdo" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "No estoy de acuerdo" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Me abstengo" - -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 -#: ../../mod/photos.php:1027 -msgid "View all" -msgstr "Ver todo" - -#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 -#: ../../include/conversation.php:1712 ../../include/identity.php:1243 -#: ../../mod/photos.php:1019 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Me gusta" -msgstr[1] "Me gusta" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 -#: ../../mod/photos.php:1024 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No me gusta" -msgstr[1] "No me gusta" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Destacar añadiendo una estrella" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Eliminar estrella" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Activar o desactivar el estado de entrada preferida" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "preferidas" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 -msgid "Message signature validated" -msgstr "Firma de mensaje validada" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 -msgid "Message signature incorrect" -msgstr "Firma de mensaje incorrecta" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Añadir etiqueta" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 -msgid "I like this (toggle)" -msgstr "me gusta (cambiar)" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "me gusta" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 -msgid "dislike" -msgstr "no me gusta" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Compartir esto" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "compartir" - -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" - -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver el perfil de %s - %s" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "a" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "mediante" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "De página de perfil a página de perfil (de Muro a Muro)" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "Mediante el procedimiento página de perfil a página de perfil (de Muro a Muro)" - -#: ../../include/ItemObject.php:312 ../../include/conversation.php:727 -#, php-format -msgid "from %s" -msgstr "desde %s" - -#: ../../include/ItemObject.php:315 ../../include/conversation.php:730 -#, php-format -msgid "last edited: %s" -msgstr "último cambio: %s" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:731 -#, php-format -msgid "Expires: %s" -msgstr "Caduca: %s" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Guardar en Marcadores" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Añadir al calendario" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Marcar todo como visto" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1145 -msgctxt "noun" -msgid "Likes" -msgstr "Me gusta" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1146 -msgctxt "noun" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1151 -msgid "Close" -msgstr "Cerrar" - -#: ../../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 "Espera por favor" - -#: ../../include/ItemObject.php:665 ../../mod/photos.php:978 -#: ../../mod/photos.php:1096 -msgid "This is you" -msgstr "Este es usted" - -#: ../../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 "Negrita" - -#: ../../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 "Itálico " - -#: ../../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 "Subrayar" - -#: ../../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 "Citar" - -#: ../../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 "Código" - -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Imagen" - -#: ../../include/ItemObject.php:675 -msgid "Insert Link" -msgstr "Insertar enlace" - -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Vídeo" - -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1247 -#: ../../mod/editpost.php:151 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Cifrar texto" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nueva ventana" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abrir la ubicación seleccionada en una ventana o pestaña aparte" - -#: ../../include/Contact.php:212 -#, php-format -msgid "User '%s' deleted" -msgstr "El usuario '%s' ha sido eliminado" - -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "Ficheros adjuntos:" - -#: ../../include/bb2diaspora.php:461 -msgid "$Projectname event notification:" -msgstr "Notificación de eventos de $Projectname:" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 -msgid "Logout" -msgstr "Finalizar sesión" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Finalizar esta sesión" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Inicio" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Sus entradas y conversaciones" - -#: ../../include/nav.php:91 ../../include/conversation.php:953 -#: ../../mod/connedit.php:510 -msgid "View Profile" -msgstr "Ver el perfil" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Su página de perfil" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Editar perfiles" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../include/nav.php:95 ../../include/identity.php:956 -msgid "Edit Profile" -msgstr "Editar perfil" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Editar su perfil" - -#: ../../include/nav.php:97 ../../include/conversation.php:1611 -#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Sus fotos" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Sus ficheros" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Sus salas de chat" - -#: ../../include/nav.php:109 ../../include/conversation.php:1646 -#: ../../include/apps.php:129 -msgid "Bookmarks" -msgstr "Marcadores" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Sus marcadores" - -#: ../../include/nav.php:113 ../../include/conversation.php:1656 -#: ../../include/apps.php:136 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "Páginas web" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Sus páginas web" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1550 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Acceder" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - pulsar para finalizar sesión" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Página de inicio" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 -msgid "Register" -msgstr "Registrarse" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Crear una cuenta" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:176 -msgid "Help" -msgstr "Ayuda" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Ayuda y documentación" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Aplicaciones, utilidades, enlaces, juegos" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Buscar contenido del sitio" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -msgid "Directory" -msgstr "Directorio" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Directorio de canales" - -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "RedMatrix" - -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "Su red" - -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Marcar todas las notificaciones de la red como leídas" - -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Mi canal" - -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Mi canal" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" - -#: ../../include/nav.php:187 ../../mod/connections.php:267 -msgid "Connections" -msgstr "Conexiones" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Avisos" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones de sistema como leídas" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Correo" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Correo privado" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "Bandeja de entrada" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Bandeja de salida" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:503 -msgid "Events" -msgstr "Eventos" - -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Calendario de eventos" - -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Ver todos los eventos" - -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" - -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 -msgid "Channel Manager" -msgstr "Administración de canales" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" - -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Administrador" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" - -#: ../../include/nav.php:247 ../../include/conversation.php:861 -msgid "Loading..." -msgstr "Cargando..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@nombre, #etiqueta, contenido" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Espere por favor…" - -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Etiquetas" - -#: ../../include/taxonomy.php:287 -msgid "Keywords" -msgstr "Palabras clave" - -#: ../../include/taxonomy.php:308 -msgid "have" -msgstr "tener" - -#: ../../include/taxonomy.php:308 -msgid "has" -msgstr "tiene" - -#: ../../include/taxonomy.php:309 -msgid "want" -msgstr "quiero" - -#: ../../include/taxonomy.php:309 -msgid "wants" -msgstr "quiere" - -#: ../../include/taxonomy.php:310 -msgid "likes" -msgstr "le gusta" - -#: ../../include/taxonomy.php:311 -msgid "dislikes" -msgstr "no le gusta" - -#: ../../include/activities.php:39 -msgid " and " -msgstr "y" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "perfil público" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s cambió %2$s a “%3$s”" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visitar %2$s de %1$s" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s actualizó %2$s, %3$s cambió." - -#: ../../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 "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi flujo de actividad y publicaciones normales" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Puede verse mi perfil de canal predeterminado." - -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Pueden verse mis álbumes de fotos" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Pueden verse mis conexiones" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Pueden verse mis ficheros compartidos" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Me pueden enviar sus entradas y flujo de actividad su canal" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pueden crear entradas en mi página de inicio del canal (“muro”)" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Se me pueden enviar mensajes privados" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Pueden publicarse fotos en mis álbumes" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gustar/no me gusta." - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" - -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" - -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avanzado - útil para crear canales de foro o grupos" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Puede escribirse en mi carpeta de ficheros" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Puede editar mis páginas web" - -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" - -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" - -#: ../../include/permissions.php:48 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." - -#: ../../include/permissions.php:893 -msgid "Social Networking" -msgstr "Redes sociales" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Mostly Public" -msgstr "Público en su mayor parte" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Restricted" -msgstr "Restringido" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -msgid "Private" -msgstr "Privado" - -#: ../../include/permissions.php:894 -msgid "Community Forum" -msgstr "Foro de discusión" - -#: ../../include/permissions.php:895 -msgid "Feed Republish" -msgstr "Republicar un \"feed\"" - -#: ../../include/permissions.php:896 -msgid "Special Purpose" -msgstr "Propósito especial" - -#: ../../include/permissions.php:896 -msgid "Celebrity/Soapbox" -msgstr "Página para fans" - -#: ../../include/permissions.php:896 -msgid "Group Repository" -msgstr "Repositorio de grupo" - -#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Otro" - -#: ../../include/permissions.php:897 -msgid "Custom/Expert Mode" -msgstr "Modo personalizado/experto" - -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "canal" - -#: ../../include/conversation.php:167 ../../mod/like.php:399 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "a %1$s no le gusta el %3$s de %2$s" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ahora está conectado con %2$s" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s dio un toque a %2$s" - -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s está %2$s" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Likes" -msgstr "Me gusta" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Agree" -msgstr "De acuerdo" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Disagree" -msgstr "En desacuerdo" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Abstain" -msgstr "Abstención" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Attending" -msgstr "Participar" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Not attending" -msgstr "No participar" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Might attend" -msgstr "Quizá participe" - -#: ../../include/conversation.php:703 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver el perfil @ %s de %s" - -#: ../../include/conversation.php:718 -msgid "Categories:" -msgstr "Categorías:" - -#: ../../include/conversation.php:719 -msgid "Filed under:" -msgstr "Archivado bajo:" - -#: ../../include/conversation.php:746 -msgid "View in context" -msgstr "Mostrar en su contexto" - -#: ../../include/conversation.php:857 -msgid "remove" -msgstr "eliminar" - -#: ../../include/conversation.php:862 -msgid "Delete Selected Items" -msgstr "Eliminar elementos seleccionados" - -#: ../../include/conversation.php:950 -msgid "View Source" -msgstr "Ver la fuente original de la entrada" - -#: ../../include/conversation.php:951 -msgid "Follow Thread" -msgstr "Seguir el hilo" - -#: ../../include/conversation.php:952 -msgid "View Status" -msgstr "Ver estado" - -#: ../../include/conversation.php:954 -msgid "View Photos" -msgstr "Ver fotos" - -#: ../../include/conversation.php:955 -msgid "Matrix Activity" -msgstr "Actividad en la red de esta conexión" - -#: ../../include/conversation.php:957 -msgid "Edit Contact" -msgstr "Editar contacto" - -#: ../../include/conversation.php:958 -msgid "Send PM" -msgstr "Enviar Mensaje Privado" - -#: ../../include/conversation.php:959 ../../include/apps.php:145 -msgid "Poke" -msgstr "Dar un toque" - -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s likes this." -msgstr "a %s le gusta esto." - -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s doesn't like this." -msgstr "a %s no le gusta esto." - -#: ../../include/conversation.php:1077 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "a %2$d personas le gusta esto." -msgstr[1] "a %2$d personas les gusta esto." - -#: ../../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] "a %2$d personas no les gusta esto." -msgstr[1] "a %2$d personas no les gusta esto." - -#: ../../include/conversation.php:1085 -msgid "and" -msgstr "y" - -#: ../../include/conversation.php:1088 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", y %d persona más" -msgstr[1] ", y %d personas más" - -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s like this." -msgstr "a %s le gusta esto." - -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s don't like this." -msgstr "a %s no le gusta esto." - -#: ../../include/conversation.php:1151 -msgid "Visible to everybody" -msgstr "Visible para cualquiera" - -#: ../../include/conversation.php:1152 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Por favor, introduzca la dirección del enlace:" - -#: ../../include/conversation.php:1153 -msgid "Please enter a video link/URL:" -msgstr "Por favor, introduzca un enlace de vídeo:" - -#: ../../include/conversation.php:1154 -msgid "Please enter an audio link/URL:" -msgstr "Por favor, introduzca un enlace de audio:" - -#: ../../include/conversation.php:1155 -msgid "Tag term:" -msgstr "Término de la etiqueta:" - -#: ../../include/conversation.php:1156 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Guardar en carpeta:" - -#: ../../include/conversation.php:1157 -msgid "Where are you right now?" -msgstr "¿Donde está ahora?" - -#: ../../include/conversation.php:1158 ../../mod/editpost.php:47 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Caduca YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1185 ../../mod/webpages.php:182 -#: ../../mod/blocks.php:154 ../../mod/photos.php:961 ../../mod/layouts.php:184 -msgid "Share" -msgstr "Compartir" - -#: ../../include/conversation.php:1187 -msgid "Page link name" -msgstr "Nombre de enlace de página" - -#: ../../include/conversation.php:1190 -msgid "Post as" -msgstr "Publicar como" - -#: ../../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 "Subir foto" - -#: ../../include/conversation.php:1198 -msgid "upload photo" -msgstr "subir foto" - -#: ../../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 "Adjuntar fichero" - -#: ../../include/conversation.php:1200 -msgid "attach file" -msgstr "adjuntar fichero" - -#: ../../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 "Insertar enlace web" - -#: ../../include/conversation.php:1202 -msgid "web link" -msgstr "enlace web" - -#: ../../include/conversation.php:1203 -msgid "Insert video link" -msgstr "Insertar enlace de vídeo" - -#: ../../include/conversation.php:1204 -msgid "video link" -msgstr "enlace de vídeo" - -#: ../../include/conversation.php:1205 -msgid "Insert audio link" -msgstr "Insertar enlace de audio" - -#: ../../include/conversation.php:1206 -msgid "audio link" -msgstr "enlace de audio" - -#: ../../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 "Configure su localización" - -#: ../../include/conversation.php:1208 -msgid "set location" -msgstr "configure localización" - -#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 -msgid "Toggle voting" -msgstr "Cambiar votación" - -#: ../../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 "Eliminar localización del navegador" - -#: ../../include/conversation.php:1213 -msgid "clear location" -msgstr "eliminar localización" - -#: ../../include/conversation.php:1215 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:207 ../../mod/editblock.php:161 -msgid "Title (optional)" -msgstr "Título (opcional)" - -#: ../../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 "Categorías (opcional, lista separada por comas)" - -#: ../../include/conversation.php:1221 ../../mod/editpost.php:124 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:193 -#: ../../mod/editblock.php:150 -msgid "Permission settings" -msgstr "Configuración de permisos" - -#: ../../include/conversation.php:1222 -msgid "permissions" -msgstr "permisos" - -#: ../../include/conversation.php:1230 ../../mod/editpost.php:132 -#: ../../mod/editlayout.php:155 ../../mod/editwebpage.php:202 -#: ../../mod/editblock.php:158 -msgid "Public post" -msgstr "Entrada pública" - -#: ../../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 "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com" - -#: ../../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 "Configurar fecha de caducidad" - -#: ../../include/conversation.php:1249 ../../mod/events.php:674 -#: ../../mod/editpost.php:153 -msgid "OK" -msgstr "OK" - -#: ../../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 "Cancelar" - -#: ../../include/conversation.php:1492 -msgid "Discover" -msgstr "Descubrir" - -#: ../../include/conversation.php:1495 -msgid "Imported public streams" -msgstr "Flujos públicos importados" - -#: ../../include/conversation.php:1500 -msgid "Commented Order" -msgstr "Comentarios recientes" - -#: ../../include/conversation.php:1503 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentario" - -#: ../../include/conversation.php:1507 -msgid "Posted Order" -msgstr "Publicaciones recientes" - -#: ../../include/conversation.php:1510 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" - -#: ../../include/conversation.php:1518 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que le mencionan o involucran" - -#: ../../include/conversation.php:1524 ../../mod/connections.php:72 -#: ../../mod/connections.php:85 ../../mod/menu.php:110 -msgid "New" -msgstr "Nuevas" - -#: ../../include/conversation.php:1527 -msgid "Activity Stream - by date" -msgstr "Flujo de actividad - por fecha" - -#: ../../include/conversation.php:1533 -msgid "Starred" -msgstr "Preferidas" - -#: ../../include/conversation.php:1536 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" - -#: ../../include/conversation.php:1543 -msgid "Spam" -msgstr "Correo basura" - -#: ../../include/conversation.php:1546 -msgid "Posts flagged as SPAM" -msgstr "Publicaciones marcadas como basura" - -#: ../../include/conversation.php:1590 ../../mod/admin.php:993 -msgid "Channel" -msgstr "Canal" - -#: ../../include/conversation.php:1593 -msgid "Status Messages and Posts" -msgstr "Mensajes de estado y publicaciones" - -#: ../../include/conversation.php:1602 -msgid "About" -msgstr "Sobre mí" - -#: ../../include/conversation.php:1605 -msgid "Profile Details" -msgstr "Detalles del perfil" - -#: ../../include/conversation.php:1614 ../../include/photos.php:359 -msgid "Photo Albums" -msgstr "Álbumes de fotos" - -#: ../../include/conversation.php:1623 -msgid "Files and Storage" -msgstr "Ficheros y carpetas" - -#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 -msgid "Chatrooms" -msgstr "Salas de chat" - -#: ../../include/conversation.php:1649 -msgid "Saved Bookmarks" -msgstr "Marcadores guardados" - -#: ../../include/conversation.php:1659 -msgid "Manage Webpages" -msgstr "Administrar páginas web" - -#: ../../include/conversation.php:1718 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Asistir" -msgstr[1] "Participar" - -#: ../../include/conversation.php:1721 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "No asistir" -msgstr[1] "No participar" - -#: ../../include/conversation.php:1724 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso/a" -msgstr[1] "Indecisos/as" - -#: ../../include/conversation.php:1727 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Está de acuerdo" -msgstr[1] "Están de acuerdo" - -#: ../../include/conversation.php:1730 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "No está de acuerdo" -msgstr[1] "No están de acuerdo" - -#: ../../include/conversation.php:1733 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "se abstiene" -msgstr[1] "Se abstienen" - -#: ../../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:392 -msgid "Permission denied" -msgstr "Permiso denegado" - -#: ../../include/items.php:1038 ../../include/items.php:1084 -msgid "(Unknown)" -msgstr "(Desconocido)" - -#: ../../include/items.php:1310 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." - -#: ../../include/items.php:1312 -msgid "Visible to you only." -msgstr "Visible sólo para usted." - -#: ../../include/items.php:1314 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." - -#: ../../include/items.php:1316 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que haya sido autenticado." - -#: ../../include/items.php:1318 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." - -#: ../../include/items.php:1320 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." - -#: ../../include/items.php:1322 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." - -#: ../../include/items.php:1324 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." - -#: ../../include/items.php:4223 ../../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 "Elemento no encontrado." - -#: ../../include/items.php:4296 ../../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/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: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/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/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 -#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 -#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/bookmarks.php:46 -#: ../../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:393 -msgid "Permission denied." -msgstr "Acceso denegado." - -#: ../../include/items.php:4700 ../../mod/group.php:38 ../../mod/group.php:140 -#: ../../mod/bulksetclose.php:51 -msgid "Collection not found." -msgstr "Colección no encontrada." - -#: ../../include/items.php:4716 -msgid "Collection is empty." -msgstr "La colección está vacía." - -#: ../../include/items.php:4723 -#, php-format -msgid "Collection: %s" -msgstr "Colección: %s" - -#: ../../include/items.php:4733 ../../mod/connedit.php:674 -#, php-format -msgid "Connection: %s" -msgstr "Conexión: %s" - -#: ../../include/items.php:4735 -msgid "Connection not found." -msgstr "Conexión no encontrada" - -#: ../../include/zot.php:675 -msgid "Invalid data packet" -msgstr "Paquete de datos no válido" - -#: ../../include/zot.php:691 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la signatura del canal" - -#: ../../include/zot.php:2142 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "No ha sido posible de verificar la signatura del sitio para %s" - -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Contenido incorporado" - -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" - -#: ../../include/auth.php:131 -msgid "Logged out." -msgstr "Desconectado." - -#: ../../include/auth.php:272 -msgid "Failed authentication" -msgstr "Autenticación fallida." - -#: ../../include/auth.php:286 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "El acceso ha fallado." - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitación pendiente" -msgstr[1] "%d invitaciones disponibles" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457 -msgid "Advanced" -msgstr "Avanzado" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Encontrar canales" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Introducir nombre o interés" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Conectar/Seguir" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ejemplos: José Fernández, Pesca" - -#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 -#: ../../mod/directory.php:384 ../../mod/connections.php:273 -msgid "Find" -msgstr "Encontrar" - -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "Sugerencias de canales" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Perfil aleatorio" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Invitar a amigos" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Ejemplo avanzado: nombre=juan y país=españa" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d conexión en común" -msgstr[1] "%d conexiones en común" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "mostrar más" - -#: ../../include/acl_selectors.php:240 +#: ../../include/acl_selectors.php:239 msgid "Visible to your default audience" msgstr "Visible para su público predeterminado." -#: ../../include/acl_selectors.php:241 +#: ../../include/acl_selectors.php:240 msgid "Show" msgstr "Mostrar" -#: ../../include/acl_selectors.php:242 +#: ../../include/acl_selectors.php:241 msgid "Don't show" msgstr "No mostrar" -#: ../../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 +#: ../../include/acl_selectors.php:247 ../../mod/filestorage.php:147 +#: ../../mod/chat.php:207 ../../mod/photos.php:619 ../../mod/photos.php:989 +#: ../../mod/events.php:708 ../../mod/thing.php:310 ../../mod/thing.php:356 msgid "Permissions" msgstr "Permisos" -#: ../../include/attach.php:242 ../../include/attach.php:300 -msgid "Item was not found." -msgstr "Elemento no encontrado." +#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:371 +#: ../../mod/photos.php:1206 +msgid "Close" +msgstr "Cerrar" -#: ../../include/attach.php:363 -msgid "No source file." -msgstr "Ningún fichero de origen" - -#: ../../include/attach.php:381 -msgid "Cannot locate file to replace" -msgstr "No se puede localizar el fichero que va a ser sustituido." - -#: ../../include/attach.php:399 -msgid "Cannot locate file to revise/update" -msgstr "No se puede localizar el fichero para revisar/actualizar" - -#: ../../include/attach.php:410 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "El fichero supera el limite de tamaño de %d" - -#: ../../include/attach.php:422 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." - -#: ../../include/attach.php:505 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Error de carga, posiblemente por limite de sistema o porque la acción ha finalizado." - -#: ../../include/attach.php:517 -msgid "Stored file could not be verified. Upload failed." -msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." - -#: ../../include/attach.php:561 ../../include/attach.php:578 -msgid "Path not available." -msgstr "Ruta no disponible." - -#: ../../include/attach.php:623 -msgid "Empty pathname" -msgstr "Ruta vacía" - -#: ../../include/attach.php:639 -msgid "duplicate filename or path" -msgstr "Nombre de ruta o fichero duplicados" - -#: ../../include/attach.php:663 -msgid "Path not found." -msgstr "Ruta no encontrada" - -#: ../../include/attach.php:714 -msgid "mkdir failed." -msgstr "mkdir ha fallado." - -#: ../../include/attach.php:718 -msgid "database storage failed." -msgstr "el almacenamiento en la base de datos ha fallado." - -#: ../../include/identity.php:33 -msgid "Unable to obtain identity information from database" -msgstr "No ha sido posible obtener los datos de identidad desde la base de datos" - -#: ../../include/identity.php:67 -msgid "Empty name" -msgstr "Nombre vacío" - -#: ../../include/identity.php:70 -msgid "Name too long" -msgstr "Nombre demasiado largo" - -#: ../../include/identity.php:186 -msgid "No account identifier" -msgstr "Ningún identificador de la cuenta" - -#: ../../include/identity.php:198 -msgid "Nickname is required." -msgstr "Se requiere un sobrenombre (alias)." - -#: ../../include/identity.php:212 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." - -#: ../../include/identity.php:217 ../../include/dimport.php:34 +#: ../../include/import.php:23 msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros usuarios de este sitio." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." -#: ../../include/identity.php:292 -msgid "Unable to retrieve created identity" -msgstr "No ha sido posible recuperar la identidad creada" +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "La clonación del canal no ha salido bien. La importación ha fallado." -#: ../../include/identity.php:350 -msgid "Default Profile" -msgstr "Perfil principal" +#: ../../include/import.php:80 ../../mod/import.php:138 +msgid "Cloned channel not found. Import failed." +msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../include/identity.php:736 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "ha creado una nueva entrada" -#: ../../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/editblock.php:29 ../../mod/filestorage.php:54 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "El perfil solicitado no está disponible." - -#: ../../include/identity.php:946 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Cambiar foto de perfil" - -#: ../../include/identity.php:952 -msgid "Profiles" -msgstr "Perfiles" - -#: ../../include/identity.php:952 -msgid "Manage/edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../include/identity.php:953 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Crear nuevo perfil" - -#: ../../include/identity.php:968 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Imagen de perfil" - -#: ../../include/identity.php:971 -msgid "visible to everybody" -msgstr "visible para cualquiera" - -#: ../../include/identity.php:972 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Editar visibilidad" - -#: ../../include/identity.php:988 ../../include/identity.php:1227 -msgid "Gender:" -msgstr "Género:" - -#: ../../include/identity.php:989 ../../include/identity.php:1271 -msgid "Status:" -msgstr "Estado:" - -#: ../../include/identity.php:990 ../../include/identity.php:1282 -msgid "Homepage:" -msgstr "Página personal:" - -#: ../../include/identity.php:991 -msgid "Online Now" -msgstr "Ahora en línea" - -#: ../../include/identity.php:1074 ../../include/identity.php:1152 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../include/identity.php:1075 ../../include/identity.php:1153 -msgid "F d" -msgstr "d F" - -#: ../../include/identity.php:1120 ../../include/identity.php:1192 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[hoy]" - -#: ../../include/identity.php:1131 -msgid "Birthday Reminders" -msgstr "Recordatorios de cumpleaños" - -#: ../../include/identity.php:1132 -msgid "Birthdays this week:" -msgstr "Cumpleaños esta semana:" - -#: ../../include/identity.php:1185 -msgid "[No description]" -msgstr "[Sin descripción]" - -#: ../../include/identity.php:1203 -msgid "Event Reminders" -msgstr "Recordatorios de eventos" - -#: ../../include/identity.php:1204 -msgid "Events this week:" -msgstr "Eventos de esta semana:" - -#: ../../include/identity.php:1217 ../../include/identity.php:1334 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Perfil" - -#: ../../include/identity.php:1225 ../../mod/settings.php:1056 -msgid "Full Name:" -msgstr "Nombre completo:" - -#: ../../include/identity.php:1232 -msgid "Like this channel" -msgstr "Me gusta este canal" - -#: ../../include/identity.php:1256 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/identity.php:1257 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:1264 -msgid "Birthday:" -msgstr "Cumpleaños:" - -#: ../../include/identity.php:1268 ../../mod/directory.php:297 -msgid "Age:" -msgstr "Edad:" - -#: ../../include/identity.php:1277 +#: ../../include/notify.php:21 #, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" +msgid "commented on %s's post" +msgstr "ha comentado la entrada de %s" -#: ../../include/identity.php:1280 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nueva página" -#: ../../include/identity.php:1284 ../../mod/directory.php:313 -#: ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Ciudad de origen:" +#: ../../include/page_widgets.php:39 ../../mod/layouts.php:188 +#: ../../mod/webpages.php:187 ../../mod/blocks.php:159 +msgid "View" +msgstr "Ver" -#: ../../include/identity.php:1286 -msgid "Tags:" -msgstr "Etiquetas:" +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:693 +#: ../../include/conversation.php:1160 ../../mod/editpost.php:150 +#: ../../mod/editblock.php:171 ../../mod/photos.php:1037 +#: ../../mod/events.php:707 ../../mod/webpages.php:188 +#: ../../mod/editwebpage.php:212 +msgid "Preview" +msgstr "Previsualizar" -#: ../../include/identity.php:1288 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Posición política:" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Acciones" -#: ../../include/identity.php:1290 -msgid "Religion:" -msgstr "Religión:" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Vínculo de la página" -#: ../../include/identity.php:1292 ../../mod/directory.php:315 -msgid "About:" -msgstr "Sobre mí:" +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Título" -#: ../../include/identity.php:1294 -msgid "Hobbies/Interests:" -msgstr "Aficciones/Intereses:" +#: ../../include/page_widgets.php:44 ../../mod/layouts.php:181 +#: ../../mod/menu.php:110 ../../mod/webpages.php:192 ../../mod/blocks.php:150 +msgid "Created" +msgstr "Creado" -#: ../../include/identity.php:1296 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Me gusta:" +#: ../../include/page_widgets.php:45 ../../mod/layouts.php:182 +#: ../../mod/menu.php:111 ../../mod/webpages.php:193 ../../mod/blocks.php:151 +msgid "Edited" +msgstr "Editado" -#: ../../include/identity.php:1298 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "No me gusta:" - -#: ../../include/identity.php:1300 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y redes sociales:" - -#: ../../include/identity.php:1302 -msgid "My other channels:" -msgstr "Mis otros canales:" - -#: ../../include/identity.php:1304 -msgid "Musical interests:" -msgstr "Intereses musicales:" - -#: ../../include/identity.php:1306 -msgid "Books, literature:" -msgstr "Libros, literatura:" - -#: ../../include/identity.php:1308 -msgid "Television:" -msgstr "Televisión:" - -#: ../../include/identity.php:1310 -msgid "Film/dance/culture/entertainment:" -msgstr "Cine/danza/cultura/entretenimiento:" - -#: ../../include/identity.php:1312 -msgid "Love/Romance:" -msgstr "Vida sentimental/amorosa:" - -#: ../../include/identity.php:1314 -msgid "Work/employment:" -msgstr "Trabajo:" - -#: ../../include/identity.php:1316 -msgid "School/education:" -msgstr "Estudios:" - -#: ../../include/identity.php:1336 -msgid "Like this thing" -msgstr "Me gusta esto" +#: ../../include/photo/photo_driver.php:705 ../../mod/photos.php:94 +#: ../../mod/photos.php:687 ../../mod/profile_photo.php:146 +#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:376 +msgid "Profile Photos" +msgstr "Fotos del perfil" #: ../../include/profile_selectors.php:6 #: ../../include/profile_selectors.php:23 ../../mod/id.php:103 @@ -3579,7 +1445,7 @@ msgstr "No especificado" #: ../../include/profile_selectors.php:6 msgid "Undecided" -msgstr "Indeciso" +msgstr "Indeciso/a" #: ../../include/profile_selectors.php:42 #: ../../include/profile_selectors.php:61 @@ -3593,7 +1459,7 @@ msgstr "Mujeres" #: ../../include/profile_selectors.php:42 msgid "Gay" -msgstr "Gay" +msgstr "Homosexual" #: ../../include/profile_selectors.php:42 msgid "Lesbian" @@ -3613,7 +1479,7 @@ msgstr "Autosexual" #: ../../include/profile_selectors.php:42 msgid "Abstinent" -msgstr "Casto" +msgstr "Casto/a" #: ../../include/profile_selectors.php:42 msgid "Virgin" @@ -3658,7 +1524,7 @@ msgstr "Enamorado/a" #: ../../include/profile_selectors.php:80 msgid "Infatuated" -msgstr "Apasionado" +msgstr "Apasionado/a" #: ../../include/profile_selectors.php:80 #: ../../include/profile_selectors.php:97 @@ -3673,9 +1539,18 @@ msgstr "Infiel" msgid "Sex Addict" msgstr "Con adicción al sexo" +#: ../../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 "Amigos" + #: ../../include/profile_selectors.php:80 msgid "Friends/Benefits" -msgstr "Amistad beneficiosa" +msgstr "Amigos con algo extra" #: ../../include/profile_selectors.php:80 msgid "Casual" @@ -3717,7 +1592,7 @@ msgstr "No estoy buscando" #: ../../include/profile_selectors.php:80 msgid "Swinger" -msgstr "Infiel" +msgstr "Libertino" #: ../../include/profile_selectors.php:80 msgid "Betrayed" @@ -3763,18 +1638,148 @@ msgstr "No me importa" msgid "Ask me" msgstr "Pregúnteme" +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Contenido incorporado" + +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" + +#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 +msgid "l F d, Y \\@ g:i A" +msgstr "l d de F, Y \\@ G:i" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 +msgid "Starts:" +msgstr "Comienza:" + +#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 +msgid "Finishes:" +msgstr "Finaliza:" + +#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 +#: ../../include/identity.php:1016 ../../mod/directory.php:302 +#: ../../mod/events.php:701 +msgid "Location:" +msgstr "Ubicación:" + +#: ../../include/event.php:766 +msgid "This event has been added to your calendar." +msgstr "Este evento ha sido añadido a su calendario." + +#: ../../include/event.php:896 ../../include/text.php:1827 +#: ../../include/conversation.php:123 ../../mod/like.php:363 +#: ../../mod/tagger.php:47 ../../mod/events.php:245 +msgid "event" +msgstr "evento" + +#: ../../include/event.php:953 +msgid "Not specified" +msgstr "Sin especificar" + +#: ../../include/event.php:954 +msgid "Needs Action" +msgstr "Necesita de una intervención" + +#: ../../include/event.php:955 +msgid "Completed" +msgstr "Completado/a" + +#: ../../include/event.php:956 +msgid "In Process" +msgstr "En proceso" + +#: ../../include/event.php:957 +msgid "Cancelled" +msgstr "Cancelado/a" + #: ../../include/apps.php:128 msgid "Site Admin" msgstr "Adminstrador del sitio" +#: ../../include/apps.php:129 ../../include/conversation.php:1639 +#: ../../include/nav.php:103 +msgid "Bookmarks" +msgstr "Marcadores" + #: ../../include/apps.php:130 msgid "Address Book" msgstr "Libreta de direcciones" -#: ../../include/apps.php:144 ../../mod/mood.php:130 +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1503 +msgid "Login" +msgstr "Iniciar sesión" + +#: ../../include/apps.php:132 ../../include/nav.php:200 +#: ../../mod/manage.php:160 +msgid "Channel Manager" +msgstr "Administración de canales" + +#: ../../include/apps.php:133 ../../include/nav.php:174 +msgid "Grid" +msgstr "Red" + +#: ../../include/apps.php:134 ../../include/widgets.php:553 +#: ../../include/nav.php:202 ../../mod/admin.php:1033 ../../mod/admin.php:1233 +msgid "Settings" +msgstr "Ajustes" + +#: ../../include/apps.php:136 ../../include/conversation.php:1649 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Páginas web" + +#: ../../include/apps.php:137 ../../include/nav.php:177 +msgid "Channel Home" +msgstr "Mi canal" + +#: ../../include/apps.php:138 ../../include/identity.php:1250 +#: ../../include/identity.php:1367 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Perfil" + +#: ../../include/apps.php:139 ../../include/conversation.php:1606 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" + +#: ../../include/apps.php:140 ../../include/nav.php:196 +#: ../../mod/events.php:526 +msgid "Events" +msgstr "Eventos" + +#: ../../include/apps.php:141 ../../include/nav.php:162 +msgid "Directory" +msgstr "Directorio" + +#: ../../include/apps.php:142 ../../include/nav.php:154 ../../mod/help.php:202 +#: ../../mod/help.php:207 ../../mod/layouts.php:176 +msgid "Help" +msgstr "Ayuda" + +#: ../../include/apps.php:143 ../../include/nav.php:188 +msgid "Mail" +msgstr "Correo" + +#: ../../include/apps.php:144 ../../mod/mood.php:131 msgid "Mood" msgstr "Estado de ánimo" +#: ../../include/apps.php:145 ../../include/conversation.php:952 +msgid "Poke" +msgstr "Toques y otras cosas" + +#: ../../include/apps.php:146 ../../include/nav.php:97 +msgid "Chat" +msgstr "Chat" + +#: ../../include/apps.php:147 ../../include/text.php:857 +#: ../../include/text.php:869 ../../include/nav.php:159 +#: ../../mod/search.php:38 +msgid "Search" +msgstr "Buscar" + #: ../../include/apps.php:148 msgid "Probe" msgstr "Probar" @@ -3806,10 +1811,10 @@ msgstr "Publicación" #: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 #: ../../mod/id.php:19 msgid "Profile Photo" -msgstr "Foto de perfil" +msgstr "Foto del perfil" #: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:614 +#: ../../mod/settings.php:609 msgid "Update" msgstr "Actualizar" @@ -3821,160 +1826,2349 @@ msgstr "Instalar" msgid "Purchase" msgstr "Comprar" -#: ../../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 +#: ../../include/text.php:391 +msgid "prev" +msgstr "anterior" + +#: ../../include/text.php:393 +msgid "first" +msgstr "primera" + +#: ../../include/text.php:422 +msgid "last" +msgstr "última" + +#: ../../include/text.php:425 +msgid "next" +msgstr "próxima" + +#: ../../include/text.php:435 +msgid "older" +msgstr "más antiguas" + +#: ../../include/text.php:437 +msgid "newer" +msgstr "más recientes" + +#: ../../include/text.php:775 +msgid "No connections" +msgstr "Sin conexiones" + +#: ../../include/text.php:787 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d Conexión" +msgstr[1] "%d Conexiones" + +#: ../../include/text.php:800 ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "Ver conexiones" + +#: ../../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 "Guardar" + +#: ../../include/text.php:933 +msgid "poke" +msgstr "un toque" + +#: ../../include/text.php:933 ../../include/conversation.php:243 +msgid "poked" +msgstr "ha recibido un toque" + +#: ../../include/text.php:934 +msgid "ping" +msgstr "un \"ping\"" + +#: ../../include/text.php:934 +msgid "pinged" +msgstr "avisado/a" + +#: ../../include/text.php:935 +msgid "prod" +msgstr "una incitación" + +#: ../../include/text.php:935 +msgid "prodded" +msgstr "ha recibido una incitación" + +#: ../../include/text.php:936 +msgid "slap" +msgstr "una bofetada" + +#: ../../include/text.php:936 +msgid "slapped" +msgstr "ha recibido una bofetada" + +#: ../../include/text.php:937 +msgid "finger" +msgstr "un \"finger\"" + +#: ../../include/text.php:937 +msgid "fingered" +msgstr "ha recibido un \"finger\"" + +#: ../../include/text.php:938 +msgid "rebuff" +msgstr "un rechazo" + +#: ../../include/text.php:938 +msgid "rebuffed" +msgstr "ha sido rechazado/a" + +#: ../../include/text.php:948 +msgid "happy" +msgstr "feliz" + +#: ../../include/text.php:949 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:950 +msgid "mellow" +msgstr "amable" + +#: ../../include/text.php:951 +msgid "tired" +msgstr "cansado/a" + +#: ../../include/text.php:952 +msgid "perky" +msgstr "fresco/a" + +#: ../../include/text.php:953 +msgid "angry" +msgstr "enfadado/a" + +#: ../../include/text.php:954 +msgid "stupified" +msgstr "estupefacto/a" + +#: ../../include/text.php:955 +msgid "puzzled" +msgstr "perplejo/a" + +#: ../../include/text.php:956 +msgid "interested" +msgstr "interesado/a" + +#: ../../include/text.php:957 +msgid "bitter" +msgstr "amargado/a" + +#: ../../include/text.php:958 +msgid "cheerful" +msgstr "alegre" + +#: ../../include/text.php:959 +msgid "alive" +msgstr "vivo/a" + +#: ../../include/text.php:960 +msgid "annoyed" +msgstr "molesto/a" + +#: ../../include/text.php:961 +msgid "anxious" +msgstr "ansioso/a" + +#: ../../include/text.php:962 +msgid "cranky" +msgstr "de mal humor" + +#: ../../include/text.php:963 +msgid "disturbed" +msgstr "perturbado/a" + +#: ../../include/text.php:964 +msgid "frustrated" +msgstr "frustrado/a" + +#: ../../include/text.php:965 +msgid "depressed" +msgstr "deprimido/a" + +#: ../../include/text.php:966 +msgid "motivated" +msgstr "motivado/a" + +#: ../../include/text.php:967 +msgid "relaxed" +msgstr "relajado/a" + +#: ../../include/text.php:968 +msgid "surprised" +msgstr "sorprendido/a" + +#: ../../include/text.php:1144 +msgid "May" +msgstr "mayo" + +#: ../../include/text.php:1221 ../../include/text.php:1225 +msgid "Unknown Attachment" +msgstr "Adjunto no reconocido" + +#: ../../include/text.php:1227 +msgid "Attachment" +msgstr "Fichero adjunto" + +#: ../../include/text.php:1227 +msgid "Size Unknown" +msgstr "Tamaño desconocido" + +#: ../../include/text.php:1263 +msgid "remove category" +msgstr "eliminar categoría" + +#: ../../include/text.php:1340 +msgid "remove from file" +msgstr "eliminar del fichero" + +#: ../../include/text.php:1425 ../../include/text.php:1436 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" + +#: ../../include/text.php:1601 ../../mod/events.php:497 +msgid "Link to Source" +msgstr "Enlazar con la entrada en su ubicación original" + +#: ../../include/text.php:1622 ../../include/text.php:1693 +msgid "default" +msgstr "por defecto" + +#: ../../include/text.php:1630 +msgid "Page layout" +msgstr "Formato de la página" + +#: ../../include/text.php:1630 +msgid "You can create your own with the layouts tool" +msgstr "Puede crear su propio formato gráfico con las herramientas de diseño" + +#: ../../include/text.php:1671 +msgid "Page content type" +msgstr "Tipo de contenido de página" + +#: ../../include/text.php:1705 +msgid "Select an alternate language" +msgstr "Seleccionar un idioma alternativo" + +#: ../../include/text.php:1824 ../../include/conversation.php:120 +#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "photo" +msgstr "foto" + +#: ../../include/text.php:1830 ../../include/conversation.php:148 +#: ../../mod/like.php:361 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "status" +msgstr "el mensaje de estado" + +#: ../../include/text.php:1832 ../../include/conversation.php:150 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "comentario" + +#: ../../include/text.php:1837 +msgid "activity" +msgstr "actividad" + +#: ../../include/text.php:2132 +msgid "Design Tools" +msgstr "Herramientas de diseño" + +#: ../../include/text.php:2135 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Bloques" + +#: ../../include/text.php:2136 ../../mod/menu.php:103 +msgid "Menus" +msgstr "Menús" + +#: ../../include/text.php:2137 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Formato gráfico" + +#: ../../include/text.php:2138 +msgid "Pages" +msgstr "Páginas" + +#: ../../include/auth.php:131 +msgid "Logged out." +msgstr "Desconectado/a." + +#: ../../include/auth.php:272 +msgid "Failed authentication" +msgstr "Autenticación fallida." + +#: ../../include/auth.php:286 ../../mod/openid.php:189 +msgid "Login failed." +msgstr "El acceso ha fallado." + +#: ../../include/enotify.php:96 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:100 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Aviso] Nuevo mensaje en %s" + +#: ../../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 le ha enviado un nuevo mensaje privado en %3$s." + +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s le envió %2$s." + +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "un mensaje privado" + +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." + +#: ../../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 ha comentado [zrl=%3$s]%4$s[/zrl]" + +#: ../../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 ha comentado [zrl=%3$s]%5$s de %4$s[/zrl] " + +#: ../../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 ha comentado [zrl=%3$s]%4$s creado por usted[/zrl]" + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Aviso] Nuevo comentario de %2$s a la conversación #%1$d" + +#: ../../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 ha comentado un elemento/conversación que ha estado siguiendo." + +#: ../../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 "Para ver o comentar la conversación, visite %s" + +#: ../../include/enotify.php:196 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil" + +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s publicó en su página del perfil en %3$s" + +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s publicó en [zrl=%3$s]su página del perfil[/zrl]" + +#: ../../include/enotify.php:224 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Aviso] %s le ha etiquetado" + +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s le etiquetó en %3$s" + +#: ../../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]le etiquetó[/zrl]." + +#: ../../include/enotify.php:238 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Aviso] %1$s le ha dado un toque" + +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s le dio un toque en %3$s" + +#: ../../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]le dio un toque[/zrl]." + +#: ../../include/enotify.php:256 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Aviso] %s ha etiquetado su publicación" + +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s etiquetó su publicación en %3$s" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s etiquetó [zrl=%3$s]su publicación[/zrl]" + +#: ../../include/enotify.php:270 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Aviso] Ha recibido una solicitud de conexión" + +#: ../../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, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" + +#: ../../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, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." + +#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puede visitar su perfil en %s" + +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." + +#: ../../include/enotify.php:285 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad" + +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" + +#: ../../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, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." + +#: ../../include/enotify.php:293 +msgid "Name:" +msgstr "Nombre:" + +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." + +#: ../../include/enotify.php:511 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Aviso]" + +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" +msgstr "Ficheros adjuntos:" + +#: ../../include/bb2diaspora.php:461 +msgid "$Projectname event notification:" +msgstr "Notificación de eventos de $Projectname:" + +#: ../../include/ItemObject.php:89 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Mensaje Privado" + +#: ../../include/ItemObject.php:126 ../../include/conversation.php:656 +msgid "Select" +msgstr "Seleccionar" + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "Guardar en carpeta" + +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Participaré" + +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "No participaré" + +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Quizá participe" + +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Estoy de acuerdo" + +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "No estoy de acuerdo" + +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Me abstengo" + +#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 +#: ../../include/conversation.php:1681 ../../mod/photos.php:1070 +#: ../../mod/photos.php:1082 +msgid "View all" +msgstr "Ver todo" + +#: ../../include/ItemObject.php:179 ../../include/identity.php:1276 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1705 +#: ../../mod/photos.php:1074 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Me gusta" +msgstr[1] "Me gusta" + +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1708 +#: ../../mod/photos.php:1079 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "No me gusta" +msgstr[1] "No me gusta" + +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Destacar añadiendo una estrella" + +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Eliminar estrella" + +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Activar o desactivar el estado de entrada preferida" + +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "preferidas" + +#: ../../include/ItemObject.php:227 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Firma de mensaje validada" + +#: ../../include/ItemObject.php:228 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Firma de mensaje incorrecta" + +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Añadir etiqueta" + +#: ../../include/ItemObject.php:254 ../../mod/photos.php:1014 +msgid "I like this (toggle)" +msgstr "me gusta (cambiar)" + +#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:317 +msgid "like" +msgstr "me gusta" + +#: ../../include/ItemObject.php:255 ../../mod/photos.php:1015 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" + +#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:318 +msgid "dislike" +msgstr "no me gusta" + +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Compartir esto" + +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "compartir" + +#: ../../include/ItemObject.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" + +#: ../../include/ItemObject.php:303 ../../include/ItemObject.php:304 +#, php-format +msgid "View %s's profile - %s" +msgstr "Ver el perfil de %s - %s" + +#: ../../include/ItemObject.php:307 +msgid "to" +msgstr "a" + +#: ../../include/ItemObject.php:308 +msgid "via" +msgstr "mediante" + +#: ../../include/ItemObject.php:309 +msgid "Wall-to-Wall" +msgstr "De página del perfil a página del perfil (de Muro a Muro)" + +#: ../../include/ItemObject.php:310 +msgid "via Wall-To-Wall:" +msgstr "Mediante el procedimiento página del perfil a página del perfil (de Muro a Muro)" + +#: ../../include/ItemObject.php:313 +msgid "Delivery Report" +msgstr "Informe de transmisión" + +#: ../../include/ItemObject.php:322 ../../include/conversation.php:718 +#, php-format +msgid "from %s" +msgstr "desde %s" + +#: ../../include/ItemObject.php:325 ../../include/conversation.php:721 +#, php-format +msgid "last edited: %s" +msgstr "último cambio: %s" + +#: ../../include/ItemObject.php:326 ../../include/conversation.php:722 +#, php-format +msgid "Expires: %s" +msgstr "Caduca: %s" + +#: ../../include/ItemObject.php:349 +msgid "Save Bookmarks" +msgstr "Guardar en Marcadores" + +#: ../../include/ItemObject.php:350 +msgid "Add to Calendar" +msgstr "Añadir al calendario" + +#: ../../include/ItemObject.php:359 +msgid "Mark all seen" +msgstr "Marcar todo como visto" + +#: ../../include/ItemObject.php:365 ../../mod/photos.php:1200 +msgctxt "noun" +msgid "Likes" +msgstr "Me gusta" + +#: ../../include/ItemObject.php:366 ../../mod/photos.php:1201 +msgctxt "noun" +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../include/ItemObject.php:376 ../../include/conversation.php:739 +#: ../../include/conversation.php:1214 ../../mod/editpost.php:130 +#: ../../mod/editblock.php:150 ../../mod/photos.php:1017 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:190 +msgid "Please wait" +msgstr "Espere por favor" + +#: ../../include/ItemObject.php:681 ../../mod/photos.php:1033 +#: ../../mod/photos.php:1151 +msgid "This is you" +msgstr "Este es usted" + +#: ../../include/ItemObject.php:685 ../../include/conversation.php:1186 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 +msgid "Bold" +msgstr "Negrita" + +#: ../../include/ItemObject.php:686 ../../include/conversation.php:1187 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:137 +#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 +msgid "Italic" +msgstr "Itálico " + +#: ../../include/ItemObject.php:687 ../../include/conversation.php:1188 +#: ../../mod/editpost.php:116 ../../mod/editblock.php:138 +#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 +msgid "Underline" +msgstr "Subrayar" + +#: ../../include/ItemObject.php:688 ../../include/conversation.php:1189 +#: ../../mod/editpost.php:117 ../../mod/editblock.php:139 +#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 +msgid "Quote" +msgstr "Citar" + +#: ../../include/ItemObject.php:689 ../../include/conversation.php:1190 +#: ../../mod/editpost.php:118 ../../mod/editblock.php:140 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 +msgid "Code" +msgstr "Código" + +#: ../../include/ItemObject.php:690 +msgid "Image" +msgstr "Imagen" + +#: ../../include/ItemObject.php:691 +msgid "Insert Link" +msgstr "Insertar enlace" + +#: ../../include/ItemObject.php:692 +msgid "Video" +msgstr "Vídeo" + +#: ../../include/ItemObject.php:696 ../../include/conversation.php:1241 +#: ../../mod/mail.php:247 ../../mod/mail.php:376 ../../mod/editpost.php:158 +msgid "Encrypt text" +msgstr "Cifrar texto" + +#: ../../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 "Imagen/foto" -#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 +#: ../../include/bbcode.php:162 ../../include/bbcode.php:843 msgid "Encrypted content" msgstr "Contenido cifrado" -#: ../../include/bbcode.php:178 +#: ../../include/bbcode.php:179 #, php-format msgid "Install %s element: " msgstr "Instalar el elemento %s:" -#: ../../include/bbcode.php:182 +#: ../../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 "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." -#: ../../include/bbcode.php:192 ../../mod/impel.php:37 +#: ../../include/bbcode.php:193 ../../mod/impel.php:37 msgid "webpage" msgstr "página web" -#: ../../include/bbcode.php:195 ../../mod/impel.php:47 +#: ../../include/bbcode.php:196 ../../mod/impel.php:47 msgid "layout" msgstr "disposición" -#: ../../include/bbcode.php:198 ../../mod/impel.php:42 +#: ../../include/bbcode.php:199 ../../mod/impel.php:42 msgid "block" msgstr "bloque" -#: ../../include/bbcode.php:201 ../../mod/impel.php:54 +#: ../../include/bbcode.php:202 ../../mod/impel.php:54 msgid "menu" msgstr "menú" -#: ../../include/bbcode.php:215 -msgid "QR code" -msgstr "Código QR" - -#: ../../include/bbcode.php:266 +#: ../../include/bbcode.php:257 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s escribió la siguiente %2$s %3$s" -#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 +#: ../../include/bbcode.php:259 ../../mod/tagger.php:51 msgid "post" msgstr "entrada" -#: ../../include/bbcode.php:518 +#: ../../include/bbcode.php:547 msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma diferente" +msgstr "Visitantes diferentes verán este texto de forma distinta" -#: ../../include/bbcode.php:729 +#: ../../include/bbcode.php:754 msgid "$1 spoiler" msgstr "$1 spoiler" -#: ../../include/bbcode.php:756 +#: ../../include/bbcode.php:781 msgid "$1 wrote:" msgstr "$1 escribió" -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Nombre de sala desaparecido." +#: ../../include/account.php:27 +msgid "Not a valid email address" +msgstr "Dirección de correo no válida" -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Nombre de sala duplicado." +#: ../../include/account.php:29 +msgid "Your email domain is not among those allowed on this site" +msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Especificador de sala no válido." +#: ../../include/account.php:35 +msgid "Your email address is already registered at this site." +msgstr "Su dirección de correo está ya registrada en este sitio." -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Sala no encontrada." +#: ../../include/account.php:67 +msgid "An invitation is required." +msgstr "Es obligatorio que le inviten." -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "La sala está llena." +#: ../../include/account.php:71 +msgid "Invitation could not be verified." +msgstr "No se ha podido verificar su invitación." -#: ../../include/photos.php:94 +#: ../../include/account.php:121 +msgid "Please enter the required information." +msgstr "Por favor introduzca la información requerida." + +#: ../../include/account.php:188 +msgid "Failed to store account information." +msgstr "La información de la cuenta no se ha podido guardar." + +#: ../../include/account.php:248 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imagen es demasiado grande (%lu demás)" +msgid "Registration confirmation for %s" +msgstr "Confirmación de registro para %s" -#: ../../include/photos.php:101 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " +#: ../../include/account.php:314 +#, php-format +msgid "Registration request at %s" +msgstr "Solicitud de registro en %s" -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "No ha sido posible procesar la imagen" +#: ../../include/account.php:338 +msgid "your registration password" +msgstr "su contraseña de registro" -#: ../../include/photos.php:199 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." +#: ../../include/account.php:341 ../../include/account.php:401 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles del registro de %s" -#: ../../include/photos.php:363 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" +#: ../../include/account.php:410 +msgid "Account approved." +msgstr "Cuenta aprobada." + +#: ../../include/account.php:449 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registro revocado para %s" + +#: ../../include/account.php:494 +msgid "Account verified. Please login." +msgstr "Cuenta verificada. Por favor, inicie sesión." + +#: ../../include/account.php:707 ../../include/account.php:709 +msgid "Click here to upgrade." +msgstr "Pulse aquí para actualizar" + +#: ../../include/account.php:715 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Esta acción supera los límites establecidos por su plan de suscripción " + +#: ../../include/account.php:720 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está disponible en su plan de suscripción." + +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "El canal está bloqueado en este sitio." + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Falta la ubicación del canal." + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Respuesta incompleta del canal." + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "El canal ha sido eliminado y ya no existe." + +#: ../../include/follow.php:154 +msgid "Protocol disabled." +msgstr "Protocolo deshabilitado." + +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "El intento de acceder al canal ha fallado." + +#: ../../include/follow.php:186 +msgid "local account not found." +msgstr "No se ha encontrado la cuenta local." + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "No puede conectarse consigo mismo." + +#: ../../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." +msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" + +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitación pendiente" +msgstr[1] "%d invitaciones disponibles" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:415 +msgid "Advanced" +msgstr "Avanzado" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Encontrar canales" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Introducir nombre o interés" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Conectar/Seguir" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ejemplos: José Fernández, Pesca" + +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 +#: ../../mod/directory.php:384 ../../mod/connections.php:266 +msgid "Find" +msgstr "Encontrar" + +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 +#: ../../mod/suggest.php:60 +msgid "Channel Suggestions" +msgstr "Sugerencias de canales" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Perfil aleatorio" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Invitar a amigos" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Ejemplo avanzado: nombre=juan y país=españa" + +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98 +#: ../../include/widgets.php:306 +msgid "Everything" +msgstr "Todo" + +#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:271 +#: ../../include/widgets.php:35 +msgid "Categories" +msgstr "Categorías" + +#: ../../include/contact_widgets.php:128 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d conexión en común" +msgstr[1] "%d conexiones en común" + +#: ../../include/contact_widgets.php:133 +msgid "show more" +msgstr "mostrar más" + +#: ../../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 "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." + +#: ../../include/group.php:232 +msgid "Add new connections to this collection (privacy group)" +msgstr "Añadir nuevas conexiones a esta colección (privacidad del grupo)" + +#: ../../include/group.php:251 ../../mod/admin.php:788 +msgid "All Channels" +msgstr "Todos los canales" + +#: ../../include/group.php:273 +msgid "edit" +msgstr "editar" + +#: ../../include/group.php:295 +msgid "Collections" +msgstr "Colecciones" + +#: ../../include/group.php:296 +msgid "Edit collection" +msgstr "Editar colección" + +#: ../../include/group.php:297 +msgid "Add new collection" +msgstr "Añadir nueva colección" + +#: ../../include/group.php:298 +msgid "Channels not in any collection" +msgstr "El canal no se encuentra en ninguna colección" + +#: ../../include/group.php:300 ../../include/widgets.php:274 +msgid "add" +msgstr "añadir" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[sin asunto]" + +#: ../../include/message.php:43 +msgid "Unable to determine sender." +msgstr "No ha sido posible determinar el remitente. " + +#: ../../include/message.php:218 +msgid "Stored post could not be verified." +msgstr "No se han podido verificar las entradas guardadas." + +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Nombre vacío" + +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Nombre demasiado largo" + +#: ../../include/identity.php:181 +msgid "No account identifier" +msgstr "Ningún identificador de la cuenta" + +#: ../../include/identity.php:193 +msgid "Nickname is required." +msgstr "Se requiere un sobrenombre (alias)." + +#: ../../include/identity.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." + +#: ../../include/identity.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros usuarios de este sitio." + +#: ../../include/identity.php:288 +msgid "Unable to retrieve created identity" +msgstr "No ha sido posible recuperar la identidad creada" + +#: ../../include/identity.php:346 +msgid "Default Profile" +msgstr "Perfil principal" + +#: ../../include/identity.php:769 +msgid "Requested channel is not available." +msgstr "El canal solicitado no está disponible." + +#: ../../include/identity.php:815 ../../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 "El perfil solicitado no está disponible." + +#: ../../include/identity.php:978 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Cambiar la foto del perfil" + +#: ../../include/identity.php:984 +msgid "Profiles" +msgstr "Perfiles" + +#: ../../include/identity.php:984 +msgid "Manage/edit profiles" +msgstr "Administrar/editar perfiles" + +#: ../../include/identity.php:985 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Crear un nuevo perfil" + +#: ../../include/identity.php:988 ../../include/nav.php:90 +msgid "Edit Profile" +msgstr "Editar el perfil" + +#: ../../include/identity.php:1000 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Imagen del perfil" + +#: ../../include/identity.php:1003 +msgid "visible to everybody" +msgstr "visible para cualquiera" + +#: ../../include/identity.php:1004 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Editar visibilidad" + +#: ../../include/identity.php:1020 ../../include/identity.php:1260 +msgid "Gender:" +msgstr "Género:" + +#: ../../include/identity.php:1021 ../../include/identity.php:1304 +msgid "Status:" +msgstr "Estado:" + +#: ../../include/identity.php:1022 ../../include/identity.php:1315 +msgid "Homepage:" +msgstr "Página personal:" + +#: ../../include/identity.php:1023 +msgid "Online Now" +msgstr "Ahora en línea" + +#: ../../include/identity.php:1107 ../../include/identity.php:1185 +#: ../../mod/ping.php:318 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../include/identity.php:1108 ../../include/identity.php:1186 +msgid "F d" +msgstr "d F" + +#: ../../include/identity.php:1153 ../../include/identity.php:1225 +#: ../../mod/ping.php:341 +msgid "[today]" +msgstr "[hoy]" + +#: ../../include/identity.php:1164 +msgid "Birthday Reminders" +msgstr "Recordatorios de cumpleaños" + +#: ../../include/identity.php:1165 +msgid "Birthdays this week:" +msgstr "Cumpleaños de esta semana:" + +#: ../../include/identity.php:1218 +msgid "[No description]" +msgstr "[Sin descripción]" + +#: ../../include/identity.php:1236 +msgid "Event Reminders" +msgstr "Recordatorios de eventos" + +#: ../../include/identity.php:1237 +msgid "Events this week:" +msgstr "Eventos de esta semana:" + +#: ../../include/identity.php:1258 ../../mod/settings.php:1026 +msgid "Full Name:" +msgstr "Nombre completo:" + +#: ../../include/identity.php:1265 +msgid "Like this channel" +msgstr "Me gusta este canal" + +#: ../../include/identity.php:1289 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/identity.php:1290 +msgid "j F" +msgstr "j F" + +#: ../../include/identity.php:1297 +msgid "Birthday:" +msgstr "Cumpleaños:" + +#: ../../include/identity.php:1301 ../../mod/directory.php:297 +msgid "Age:" +msgstr "Edad:" + +#: ../../include/identity.php:1310 +#, php-format +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" + +#: ../../include/identity.php:1313 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Orientación sexual:" + +#: ../../include/identity.php:1317 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Ciudad de origen:" + +#: ../../include/identity.php:1319 +msgid "Tags:" +msgstr "Etiquetas:" + +#: ../../include/identity.php:1321 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Posición política:" + +#: ../../include/identity.php:1323 +msgid "Religion:" +msgstr "Religión:" + +#: ../../include/identity.php:1325 ../../mod/directory.php:315 +msgid "About:" +msgstr "Sobre mí:" + +#: ../../include/identity.php:1327 +msgid "Hobbies/Interests:" +msgstr "Aficciones/Intereses:" + +#: ../../include/identity.php:1329 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Me gusta:" + +#: ../../include/identity.php:1331 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "No me gusta:" + +#: ../../include/identity.php:1333 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y redes sociales:" + +#: ../../include/identity.php:1335 +msgid "My other channels:" +msgstr "Mis otros canales:" + +#: ../../include/identity.php:1337 +msgid "Musical interests:" +msgstr "Intereses musicales:" + +#: ../../include/identity.php:1339 +msgid "Books, literature:" +msgstr "Libros, literatura:" + +#: ../../include/identity.php:1341 +msgid "Television:" +msgstr "Televisión:" + +#: ../../include/identity.php:1343 +msgid "Film/dance/culture/entertainment:" +msgstr "Cine/danza/cultura/entretenimiento:" + +#: ../../include/identity.php:1345 +msgid "Love/Romance:" +msgstr "Vida sentimental/amorosa:" + +#: ../../include/identity.php:1347 +msgid "Work/employment:" +msgstr "Trabajo:" + +#: ../../include/identity.php:1349 +msgid "School/education:" +msgstr "Estudios:" + +#: ../../include/identity.php:1369 +msgid "Like this thing" +msgstr "Me gusta esto" + +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" +msgstr "Etiquetas" + +#: ../../include/taxonomy.php:294 +msgid "Keywords" +msgstr "Palabras clave" + +#: ../../include/taxonomy.php:315 +msgid "have" +msgstr "tener" + +#: ../../include/taxonomy.php:315 +msgid "has" +msgstr "tiene" + +#: ../../include/taxonomy.php:316 +msgid "want" +msgstr "quiero" + +#: ../../include/taxonomy.php:316 +msgid "wants" +msgstr "quiere" + +#: ../../include/taxonomy.php:317 +msgid "likes" +msgstr "le gusta" + +#: ../../include/taxonomy.php:318 +msgid "dislikes" +msgstr "no le gusta" + +#: ../../include/zot.php:683 +msgid "Invalid data packet" +msgstr "Paquete de datos no válido" + +#: ../../include/zot.php:699 +msgid "Unable to verify channel signature" +msgstr "No ha sido posible de verificar la firma del canal" + +#: ../../include/zot.php:2235 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "No ha sido posible de verificar la firma del sitio para %s" + +#: ../../include/zot.php:3549 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" + +#: ../../include/attach.php:243 ../../include/attach.php:329 +msgid "Item was not found." +msgstr "Elemento no encontrado." + +#: ../../include/attach.php:493 +msgid "No source file." +msgstr "Ningún fichero de origen" + +#: ../../include/attach.php:511 +msgid "Cannot locate file to replace" +msgstr "No se puede localizar el fichero que va a ser sustituido." + +#: ../../include/attach.php:529 +msgid "Cannot locate file to revise/update" +msgstr "No se puede localizar el fichero para revisar/actualizar" + +#: ../../include/attach.php:664 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "El fichero supera el limite de tamaño de %d" + +#: ../../include/attach.php:678 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." + +#: ../../include/attach.php:828 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." + +#: ../../include/attach.php:841 +msgid "Stored file could not be verified. Upload failed." +msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." + +#: ../../include/attach.php:889 ../../include/attach.php:905 +msgid "Path not available." +msgstr "Ruta no disponible." + +#: ../../include/attach.php:951 ../../include/attach.php:1103 +msgid "Empty pathname" +msgstr "Ruta vacía" + +#: ../../include/attach.php:977 +msgid "duplicate filename or path" +msgstr "Nombre duplicado de ruta o fichero" + +#: ../../include/attach.php:999 +msgid "Path not found." +msgstr "Ruta no encontrada" + +#: ../../include/attach.php:1057 +msgid "mkdir failed." +msgstr "mkdir ha fallado." + +#: ../../include/attach.php:1061 +msgid "database storage failed." +msgstr "el almacenamiento en la base de datos ha fallado." + +#: ../../include/attach.php:1109 +msgid "Empty path" +msgstr "Ruta vacía" + +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "canal" + +#: ../../include/conversation.php:164 ../../mod/like.php:410 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "a %1$s le gusta el %3$s de %2$s" + +#: ../../include/conversation.php:167 ../../mod/like.php:412 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "a %1$s no le gusta el %3$s de %2$s" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ahora está conectado/a con %2$s" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha dado un toque a %2$s" + +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s está %2$s" + +#: ../../include/conversation.php:574 ../../mod/photos.php:1051 +msgctxt "title" +msgid "Likes" +msgstr "Me gusta" + +#: ../../include/conversation.php:574 ../../mod/photos.php:1051 +msgctxt "title" +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1052 +msgctxt "title" +msgid "Agree" +msgstr "De acuerdo" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1052 +msgctxt "title" +msgid "Disagree" +msgstr "En desacuerdo" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1052 +msgctxt "title" +msgid "Abstain" +msgstr "Abstención" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1053 +msgctxt "title" +msgid "Attending" +msgstr "Participaré" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1053 +msgctxt "title" +msgid "Not attending" +msgstr "No participaré" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1053 +msgctxt "title" +msgid "Might attend" +msgstr "Quizá participe" + +#: ../../include/conversation.php:692 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver el perfil @ %s de %s" + +#: ../../include/conversation.php:709 +msgid "Categories:" +msgstr "Categorías:" + +#: ../../include/conversation.php:710 +msgid "Filed under:" +msgstr "Archivado bajo:" + +#: ../../include/conversation.php:737 +msgid "View in context" +msgstr "Mostrar en su contexto" + +#: ../../include/conversation.php:850 +msgid "remove" +msgstr "eliminar" + +#: ../../include/conversation.php:854 ../../include/nav.php:241 +msgid "Loading..." +msgstr "Cargando..." + +#: ../../include/conversation.php:855 +msgid "Delete Selected Items" +msgstr "Eliminar elementos seleccionados" + +#: ../../include/conversation.php:943 +msgid "View Source" +msgstr "Ver la fuente original de la entrada" + +#: ../../include/conversation.php:944 +msgid "Follow Thread" +msgstr "Seguir el hilo" + +#: ../../include/conversation.php:945 +msgid "View Status" +msgstr "Estado actual" + +#: ../../include/conversation.php:946 ../../include/nav.php:86 +#: ../../mod/connedit.php:494 +msgid "View Profile" +msgstr "Ver el perfil" + +#: ../../include/conversation.php:947 +msgid "View Photos" +msgstr "Ver fotos" + +#: ../../include/conversation.php:948 +msgid "Activity/Posts" +msgstr "Actividad y entradas" + +#: ../../include/conversation.php:950 +msgid "Edit Connection" +msgstr "Editar conexión" + +#: ../../include/conversation.php:951 +msgid "Send PM" +msgstr "Enviar un mensaje privado" + +#: ../../include/conversation.php:1066 +#, php-format +msgid "%s likes this." +msgstr "a %s le gusta esto." + +#: ../../include/conversation.php:1066 +#, php-format +msgid "%s doesn't like this." +msgstr "a %s no le gusta esto." + +#: ../../include/conversation.php:1070 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "a %2$d personas le gusta esto." +msgstr[1] "a %2$d personas les gusta esto." + +#: ../../include/conversation.php:1072 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "a %2$d personas no les gusta esto." +msgstr[1] "a %2$d personas no les gusta esto." + +#: ../../include/conversation.php:1078 +msgid "and" +msgstr "y" + +#: ../../include/conversation.php:1081 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", y %d persona más" +msgstr[1] ", y %d personas más" + +#: ../../include/conversation.php:1082 +#, php-format +msgid "%s like this." +msgstr "a %s le gusta esto." + +#: ../../include/conversation.php:1082 +#, php-format +msgid "%s don't like this." +msgstr "a %s no le gusta esto." + +#: ../../include/conversation.php:1145 +msgid "Visible to everybody" +msgstr "Visible para cualquiera" + +#: ../../include/conversation.php:1146 ../../mod/mail.php:194 +#: ../../mod/mail.php:308 +msgid "Please enter a link URL:" +msgstr "Por favor, introduzca la dirección del enlace:" + +#: ../../include/conversation.php:1147 +msgid "Please enter a video link/URL:" +msgstr "Por favor, introduzca un enlace de vídeo:" + +#: ../../include/conversation.php:1148 +msgid "Please enter an audio link/URL:" +msgstr "Por favor, introduzca un enlace de audio:" + +#: ../../include/conversation.php:1149 +msgid "Tag term:" +msgstr "Término de la etiqueta:" + +#: ../../include/conversation.php:1150 ../../mod/filer.php:48 +msgid "Save to Folder:" +msgstr "Guardar en carpeta:" + +#: ../../include/conversation.php:1151 +msgid "Where are you right now?" +msgstr "¿Donde está ahora?" + +#: ../../include/conversation.php:1152 ../../mod/mail.php:195 +#: ../../mod/mail.php:309 ../../mod/editpost.php:54 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Caduca YYYY-MM-DD HH:MM" + +#: ../../include/conversation.php:1179 ../../mod/layouts.php:184 +#: ../../mod/photos.php:1016 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 +msgid "Share" +msgstr "Compartir" + +#: ../../include/conversation.php:1181 +msgid "Page link name" +msgstr "Nombre de enlace de página" + +#: ../../include/conversation.php:1184 +msgid "Post as" +msgstr "Publicar como" + +#: ../../include/conversation.php:1191 ../../mod/editpost.php:119 +#: ../../mod/editblock.php:142 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:182 +msgid "Upload photo" +msgstr "Subir foto" + +#: ../../include/conversation.php:1192 +msgid "upload photo" +msgstr "subir foto" + +#: ../../include/conversation.php:1193 ../../mod/mail.php:240 +#: ../../mod/mail.php:369 ../../mod/editpost.php:120 +#: ../../mod/editblock.php:143 ../../mod/editlayout.php:141 +#: ../../mod/editwebpage.php:183 +msgid "Attach file" +msgstr "Adjuntar fichero" + +#: ../../include/conversation.php:1194 +msgid "attach file" +msgstr "adjuntar fichero" + +#: ../../include/conversation.php:1195 ../../mod/mail.php:241 +#: ../../mod/mail.php:370 ../../mod/editpost.php:121 +#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 +#: ../../mod/editwebpage.php:184 +msgid "Insert web link" +msgstr "Insertar enlace web" + +#: ../../include/conversation.php:1196 +msgid "web link" +msgstr "enlace web" + +#: ../../include/conversation.php:1197 +msgid "Insert video link" +msgstr "Insertar enlace de vídeo" + +#: ../../include/conversation.php:1198 +msgid "video link" +msgstr "enlace de vídeo" + +#: ../../include/conversation.php:1199 +msgid "Insert audio link" +msgstr "Insertar enlace de audio" + +#: ../../include/conversation.php:1200 +msgid "audio link" +msgstr "enlace de audio" + +#: ../../include/conversation.php:1201 ../../mod/editpost.php:125 +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:188 +msgid "Set your location" +msgstr "Configure su localización" + +#: ../../include/conversation.php:1202 +msgid "set location" +msgstr "configure localización" + +#: ../../include/conversation.php:1203 ../../mod/editpost.php:127 +msgid "Toggle voting" +msgstr "Cambiar votación" + +#: ../../include/conversation.php:1206 ../../mod/editpost.php:126 +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:189 +msgid "Clear browser location" +msgstr "Eliminar localización del navegador" + +#: ../../include/conversation.php:1207 +msgid "clear location" +msgstr "eliminar localización" + +#: ../../include/conversation.php:1209 ../../mod/editpost.php:142 +#: ../../mod/editblock.php:162 ../../mod/editwebpage.php:205 +msgid "Title (optional)" +msgstr "Título (opcional)" + +#: ../../include/conversation.php:1213 ../../mod/editpost.php:144 +#: ../../mod/editblock.php:165 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:207 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorías (opcional, lista separada por comas)" + +#: ../../include/conversation.php:1215 ../../mod/editpost.php:131 +#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:191 +msgid "Permission settings" +msgstr "Configuración de permisos" + +#: ../../include/conversation.php:1216 +msgid "permissions" +msgstr "permisos" + +#: ../../include/conversation.php:1224 ../../mod/editpost.php:139 +#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:200 +msgid "Public post" +msgstr "Entrada pública" + +#: ../../include/conversation.php:1226 ../../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 "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com" + +#: ../../include/conversation.php:1239 ../../mod/mail.php:245 +#: ../../mod/mail.php:374 ../../mod/editpost.php:156 +#: ../../mod/editblock.php:176 ../../mod/editlayout.php:173 +#: ../../mod/editwebpage.php:217 +msgid "Set expiration date" +msgstr "Configurar fecha de caducidad" + +#: ../../include/conversation.php:1243 ../../mod/editpost.php:160 +#: ../../mod/events.php:691 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1244 ../../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 "Cancelar" + +#: ../../include/conversation.php:1487 +msgid "Discover" +msgstr "Descubrir" + +#: ../../include/conversation.php:1490 +msgid "Imported public streams" +msgstr "Flujos públicos importados" + +#: ../../include/conversation.php:1495 +msgid "Commented Order" +msgstr "Comentarios recientes" + +#: ../../include/conversation.php:1498 +msgid "Sort by Comment Date" +msgstr "Ordenar por fecha de comentario" + +#: ../../include/conversation.php:1502 +msgid "Posted Order" +msgstr "Publicaciones recientes" + +#: ../../include/conversation.php:1505 +msgid "Sort by Post Date" +msgstr "Ordenar por fecha de publicación" + +#: ../../include/conversation.php:1510 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Personales" + +#: ../../include/conversation.php:1513 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que le mencionan o involucran" + +#: ../../include/conversation.php:1519 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" +msgstr "Nuevas" + +#: ../../include/conversation.php:1522 +msgid "Activity Stream - by date" +msgstr "Flujo de actividad - por fecha" + +#: ../../include/conversation.php:1528 +msgid "Starred" +msgstr "Preferidas" + +#: ../../include/conversation.php:1531 +msgid "Favourite Posts" +msgstr "Publicaciones favoritas" + +#: ../../include/conversation.php:1538 +msgid "Spam" +msgstr "Correo basura" + +#: ../../include/conversation.php:1541 +msgid "Posts flagged as SPAM" +msgstr "Publicaciones marcadas como basura" + +#: ../../include/conversation.php:1585 ../../mod/admin.php:947 +msgid "Channel" +msgstr "Canal" + +#: ../../include/conversation.php:1588 +msgid "Status Messages and Posts" +msgstr "Mensajes de estado y publicaciones" + +#: ../../include/conversation.php:1597 +msgid "About" +msgstr "Sobre mí" + +#: ../../include/conversation.php:1600 +msgid "Profile Details" +msgstr "Detalles del perfil" + +#: ../../include/conversation.php:1616 +msgid "Files and Storage" +msgstr "Ficheros y repositorio" + +#: ../../include/conversation.php:1626 ../../include/conversation.php:1629 +msgid "Chatrooms" +msgstr "Salas de chat" + +#: ../../include/conversation.php:1642 +msgid "Saved Bookmarks" +msgstr "Marcadores guardados" + +#: ../../include/conversation.php:1652 +msgid "Manage Webpages" +msgstr "Administrar páginas web" + +#: ../../include/conversation.php:1711 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Participando" +msgstr[1] "Participaré" + +#: ../../include/conversation.php:1714 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "No participando" +msgstr[1] "No participaré" + +#: ../../include/conversation.php:1717 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso/a" +msgstr[1] "Indecisos/as" + +#: ../../include/conversation.php:1720 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Está de acuerdo" +msgstr[1] "Están de acuerdo" + +#: ../../include/conversation.php:1723 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "No está de acuerdo" +msgstr[1] "No están de acuerdo" + +#: ../../include/conversation.php:1726 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "se abstiene" +msgstr[1] "Se abstienen" + +#: ../../include/widgets.php:91 ../../include/nav.php:157 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Aplicaciones" + +#: ../../include/widgets.php:92 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Crear una aplicación personal" + +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Editar una aplicación personal" + +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" + +#: ../../include/widgets.php:143 ../../mod/connections.php:125 +msgid "Suggestions" +msgstr "Sugerencias" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Ver más..." + +#: ../../include/widgets.php:165 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." + +#: ../../include/widgets.php:171 +msgid "Add New Connection" +msgstr "Añadir nueva conexión" + +#: ../../include/widgets.php:172 +msgid "Enter the channel address" +msgstr "Introducir la dirección del canal" + +#: ../../include/widgets.php:173 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Ejemplo: paco@ejemplo.com, http://ejemplo.com/paco" + +#: ../../include/widgets.php:189 +msgid "Notes" +msgstr "Notas" + +#: ../../include/widgets.php:265 +msgid "Remove term" +msgstr "Eliminar término" + +#: ../../include/widgets.php:348 +msgid "Archives" +msgstr "Hemeroteca" + +#: ../../include/widgets.php:427 ../../mod/connedit.php:567 +msgid "Me" +msgstr "Yo" + +#: ../../include/widgets.php:428 ../../mod/connedit.php:568 +msgid "Family" +msgstr "Familia" + +#: ../../include/widgets.php:430 ../../mod/connedit.php:570 +msgid "Acquaintances" +msgstr "Conocidos/as" + +#: ../../include/widgets.php:431 ../../mod/connedit.php:571 +#: ../../mod/connections.php:88 ../../mod/connections.php:103 +msgid "All" +msgstr "Todas" + +#: ../../include/widgets.php:450 +msgid "Refresh" +msgstr "Recargar" + +#: ../../include/widgets.php:484 +msgid "Account settings" +msgstr "Configuración de la cuenta" + +#: ../../include/widgets.php:490 +msgid "Channel settings" +msgstr "Configuración del canal" + +#: ../../include/widgets.php:496 +msgid "Additional features" +msgstr "Características adicionales" + +#: ../../include/widgets.php:502 +msgid "Feature/Addon settings" +msgstr "Configuración de características o complementos" + +#: ../../include/widgets.php:508 +msgid "Display settings" +msgstr "Ajustes de visualización" + +#: ../../include/widgets.php:514 +msgid "Connected apps" +msgstr "Aplicaciones conectadas" + +#: ../../include/widgets.php:520 +msgid "Export channel" +msgstr "Exportar canal" + +#: ../../include/widgets.php:529 ../../mod/connedit.php:658 +msgid "Connection Default Permissions" +msgstr "Permisos predeterminados de conexión" + +#: ../../include/widgets.php:537 +msgid "Premium Channel Settings" +msgstr "Configuración del canal premium" + +#: ../../include/widgets.php:567 +msgid "Private Mail Menu" +msgstr "Menú de correo privado" + +#: ../../include/widgets.php:569 +msgid "Combined View" +msgstr "Vista combinada" + +#: ../../include/widgets.php:574 ../../include/nav.php:191 +msgid "Inbox" +msgstr "Bandeja de entrada" + +#: ../../include/widgets.php:579 ../../include/nav.php:192 +msgid "Outbox" +msgstr "Bandeja de salida" + +#: ../../include/widgets.php:584 ../../include/nav.php:193 +msgid "New Message" +msgstr "Nuevo mensaje" + +#: ../../include/widgets.php:603 ../../include/widgets.php:615 +msgid "Conversations" +msgstr "Conversaciones" + +#: ../../include/widgets.php:607 +msgid "Received Messages" +msgstr "Mensajes recibidos" + +#: ../../include/widgets.php:611 +msgid "Sent Messages" +msgstr "Enviar mensajes" + +#: ../../include/widgets.php:625 +msgid "No messages." +msgstr "Sin mensajes." + +#: ../../include/widgets.php:643 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: ../../include/widgets.php:645 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: ../../include/widgets.php:734 +msgid "Chat Rooms" +msgstr "Salas de chat" + +#: ../../include/widgets.php:754 +msgid "Bookmarked Chatrooms" +msgstr "Salas de chat preferidas" + +#: ../../include/widgets.php:774 +msgid "Suggested Chatrooms" +msgstr "Salas de chat sugeridas" + +#: ../../include/widgets.php:901 ../../include/widgets.php:959 +msgid "photo/image" +msgstr "foto/imagen" + +#: ../../include/widgets.php:1054 ../../include/widgets.php:1056 +msgid "Rate Me" +msgstr "Valorar este canal" + +#: ../../include/widgets.php:1060 +msgid "View Ratings" +msgstr "Mostrar las valoraciones" + +#: ../../include/widgets.php:1071 +msgid "Public Hubs" +msgstr "Servidores públicos" + +#: ../../include/widgets.php:1119 +msgid "Forums" +msgstr "Foros" + +#: ../../include/widgets.php:1146 +msgid "Tasks" +msgstr "Actividad" + +#: ../../include/widgets.php:1155 +msgid "Documentation" +msgstr "Documentación" + +#: ../../include/widgets.php:1157 +msgid "Project/Site Information" +msgstr "Información sobre el proyecto o sitio" + +#: ../../include/widgets.php:1158 +msgid "For Members" +msgstr "Para los usuarios" + +#: ../../include/widgets.php:1159 +msgid "For Administrators" +msgstr "Para los administradores" + +#: ../../include/widgets.php:1160 +msgid "For Developers" +msgstr "Para los desarrolladores" + +#: ../../include/widgets.php:1185 ../../mod/admin.php:410 +msgid "Site" +msgstr "Sitio" + +#: ../../include/widgets.php:1186 +msgid "Accounts" +msgstr "Cuentas" + +#: ../../include/widgets.php:1187 ../../mod/admin.php:939 +msgid "Channels" +msgstr "Canales" + +#: ../../include/widgets.php:1188 ../../mod/admin.php:1031 +#: ../../mod/admin.php:1071 +msgid "Plugins" +msgstr "Extensiones" + +#: ../../include/widgets.php:1189 ../../mod/admin.php:1231 +#: ../../mod/admin.php:1265 +msgid "Themes" +msgstr "Temas" + +#: ../../include/widgets.php:1190 +msgid "Inspect queue" +msgstr "Examinar la cola" + +#: ../../include/widgets.php:1191 +msgid "Profile Config" +msgstr "Ajustes del perfil" + +#: ../../include/widgets.php:1192 +msgid "DB updates" +msgstr "Actualizaciones de la base de datos" + +#: ../../include/widgets.php:1210 ../../include/widgets.php:1216 +#: ../../mod/admin.php:1350 +msgid "Logs" +msgstr "Informes" + +#: ../../include/widgets.php:1214 ../../include/nav.php:210 +msgid "Admin" +msgstr "Administrador" + +#: ../../include/widgets.php:1215 +msgid "Plugin Features" +msgstr "Ajustes de la extensión" + +#: ../../include/widgets.php:1217 +msgid "User registrations waiting for confirmation" +msgstr "Registros de usuarios pendientes de confirmación" + +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1502 +msgid "Logout" +msgstr "Finalizar sesión" + +#: ../../include/nav.php:82 ../../include/nav.php:114 +msgid "End this session" +msgstr "Finalizar esta sesión" + +#: ../../include/nav.php:85 ../../include/nav.php:145 +msgid "Home" +msgstr "Inicio" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Sus entradas y conversaciones" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Su página del perfil" + +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Editar perfiles" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Editar su perfil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Sus fotos" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Sus ficheros" + +#: ../../include/nav.php:97 +msgid "Your chatrooms" +msgstr "Sus salas de chat" + +#: ../../include/nav.php:103 +msgid "Your bookmarks" +msgstr "Sus marcadores" + +#: ../../include/nav.php:107 +msgid "Your webpages" +msgstr "Sus páginas web" + +#: ../../include/nav.php:111 +msgid "Sign in" +msgstr "Acceder" + +#: ../../include/nav.php:128 +#, php-format +msgid "%s - click to logout" +msgstr "%s - pulsar para finalizar sesión" + +#: ../../include/nav.php:131 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" + +#: ../../include/nav.php:131 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" + +#: ../../include/nav.php:145 +msgid "Home Page" +msgstr "Página de inicio" + +#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1479 +msgid "Register" +msgstr "Registrarse" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Crear una cuenta" + +#: ../../include/nav.php:154 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: ../../include/nav.php:157 +msgid "Applications, utilities, links, games" +msgstr "Aplicaciones, utilidades, enlaces, juegos" + +#: ../../include/nav.php:159 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" + +#: ../../include/nav.php:162 +msgid "Channel Directory" +msgstr "Directorio de canales" + +#: ../../include/nav.php:174 +msgid "Your grid" +msgstr "Su red" + +#: ../../include/nav.php:175 +msgid "Mark all grid notifications seen" +msgstr "Marcar todas las notificaciones de la red como vistas" + +#: ../../include/nav.php:177 +msgid "Channel home" +msgstr "Mi canal" + +#: ../../include/nav.php:178 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas las notificaciones del canal como leídas" + +#: ../../include/nav.php:181 ../../mod/connections.php:260 +msgid "Connections" +msgstr "Conexiones" + +#: ../../include/nav.php:184 +msgid "Notices" +msgstr "Avisos" + +#: ../../include/nav.php:184 +msgid "Notifications" +msgstr "Notificaciones" + +#: ../../include/nav.php:185 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" + +#: ../../include/nav.php:186 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones de sistema como leídas" + +#: ../../include/nav.php:188 +msgid "Private mail" +msgstr "Correo privado" + +#: ../../include/nav.php:189 +msgid "See all private messages" +msgstr "Ver todas los mensajes privados" + +#: ../../include/nav.php:190 +msgid "Mark all private messages seen" +msgstr "Marcar todos los mensajes privados como leídos" + +#: ../../include/nav.php:196 +msgid "Event Calendar" +msgstr "Calendario de eventos" + +#: ../../include/nav.php:197 +msgid "See all events" +msgstr "Ver todos los eventos" + +#: ../../include/nav.php:198 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" + +#: ../../include/nav.php:200 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" + +#: ../../include/nav.php:202 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" + +#: ../../include/nav.php:210 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" + +#: ../../include/nav.php:246 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" + +#: ../../include/nav.php:247 +msgid "Please wait..." +msgstr "Espere por favor…" + +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Opciones del directorio" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Modo seguro" + +#: ../../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:616 ../../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 "No" + +#: ../../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:616 ../../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 "Sí" + +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Solo foros públicos" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Solo este sitio web" #: ../../mod/achievements.php:34 msgid "Some blurb about what to do when you're new here" -msgstr "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí" +msgstr "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí" -#: ../../mod/manage.php:136 +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contacto no encontrado" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Enviar sugerencia a un amigo." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Sugerir amigos" + +#: ../../mod/fsuggest.php:99 #, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." +msgid "Suggest a friend for %s" +msgstr "Sugerir un amigo a %s" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Crear un nuevo canal" - -#: ../../mod/manage.php:167 -msgid "Current Channel" -msgstr "Canal actual" - -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." -msgstr "Cambiar a uno de sus canales seleccionándolo." - -#: ../../mod/manage.php:170 -msgid "Default Channel" -msgstr "Canal principal" - -#: ../../mod/manage.php:171 -msgid "Make Default" -msgstr "Convertir en predeterminado" - -#: ../../mod/manage.php:174 -#, php-format -msgid "%d new messages" -msgstr "%d mensajes nuevos" - -#: ../../mod/manage.php:175 -#, php-format -msgid "%d new introductions" -msgstr "%d nuevas isolicitudes de conexión" - -#: ../../mod/manage.php:177 -msgid "Delegated Channels" -msgstr "Canales delegados" - -#: ../../mod/directory.php:59 ../../mod/photos.php:441 ../../mod/search.php:13 -#: ../../mod/ratings.php:82 ../../mod/viewconnections.php:17 -#: ../../mod/display.php:13 +#: ../../mod/directory.php:59 ../../mod/display.php:13 ../../mod/search.php:13 +#: ../../mod/photos.php:480 ../../mod/ratings.php:82 +#: ../../mod/viewconnections.php:17 msgid "Public access denied." msgstr "Acceso público denegado." @@ -3997,7 +4191,7 @@ msgstr "Estado:" msgid "Homepage: " msgstr "Página personal:" -#: ../../mod/directory.php:308 ../../mod/events.php:682 +#: ../../mod/directory.php:308 ../../mod/events.php:699 msgid "Description:" msgstr "Descripción:" @@ -4061,258 +4255,108 @@ msgstr "De más antiguo a más nuevo" msgid "No entries (some entries may be hidden)." msgstr "Sin entradas (algunas entradas pueden estar ocultas)." -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Búsqueda de canales" +#: ../../mod/bookmarks.php:40 +msgid "Bookmark added" +msgstr "Marcador añadido" -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Buscar un canal (o un \"webbie\") que comience por:" +#: ../../mod/bookmarks.php:62 +msgid "My Bookmarks" +msgstr "Mis Marcadores" -#: ../../mod/xchan.php:37 ../../mod/mitem.php:116 ../../mod/menu.php:160 -msgid "Not found." -msgstr "No encontrado." +#: ../../mod/bookmarks.php:73 +msgid "My Connections Bookmarks" +msgstr "Marcadores de mis conexiones" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volver a su aplicación e introducir este código de seguridad:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Por favor inicia sesión para continuar." - -#: ../../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 "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" - -#: ../../mod/webpages.php:191 -msgid "Page Title" -msgstr "Título de página" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Canal añadido." - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Etiqueta eliminada." - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta del elemento." - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Seleccionar una etiqueta para eliminar:" - -#: ../../mod/tagrm.php:133 ../../mod/photos.php:887 -msgid "Remove" -msgstr "Eliminar" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Continuar" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Configuración del canal premium" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restricciones de conexión del canal premium" - -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor introduzca sus restricciones o condiciones, como recibo paypal, normas de uso, etc." - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Las posibles conexiones verán por tanto el siguiente texto antes de proceder:" - -#: ../../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 "Al continuar, certifico que he cumplido con todas las intrucciones proporcionadas en esta página." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Canal premium o restringido" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "Elemento actualizado." - -#: ../../mod/thing.php:167 -msgid "Object store: failed" -msgstr "Guardar objeto: ha fallado" - -#: ../../mod/thing.php:171 -msgid "Thing added" -msgstr "Elemento añadido" - -#: ../../mod/thing.php:203 +#: ../../mod/openid.php:72 ../../mod/openid.php:179 ../../mod/post.php:285 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:254 -msgid "Show Thing" -msgstr "Mostrar elemento" - -#: ../../mod/thing.php:261 -msgid "item not found." -msgstr "elemento no encontrado." - -#: ../../mod/thing.php:289 -msgid "Edit Thing" -msgstr "Editar elemento" - -#: ../../mod/thing.php:291 ../../mod/thing.php:338 -msgid "Select a profile" -msgstr "Seleccionar un perfil" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Post an activity" -msgstr "Publicar una actividad" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sólo envíos a espectadores del perfil pertinente." - -#: ../../mod/thing.php:297 ../../mod/thing.php:343 -msgid "Name of thing e.g. something" -msgstr "Nombre del elemento p. ej.:. \"algo\"" - -#: ../../mod/thing.php:299 ../../mod/thing.php:344 -msgid "URL of thing (optional)" -msgstr "Dirección del elemento (opcional)" - -#: ../../mod/thing.php:301 ../../mod/thing.php:345 -msgid "URL for photo of thing (optional)" -msgstr "Dirección para la foto o elemento (opcional)" - -#: ../../mod/thing.php:336 -msgid "Add Thing to your Profile" -msgstr "Añadir elemento a su perfil" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elemento no disponible" - -#: ../../mod/probe.php:24 ../../mod/probe.php:30 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Al intentar obtener la dirección, retorna el error: %1$s" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "El ajuste del tamaño de la imagen ha fallado." - -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." - -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La imagen supera el tamaño límite de %d" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "No ha sido posible procesar la imagen." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto no disponible." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Subir fichero:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Seleccionar un perfil:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" - -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 -msgid "or" -msgstr "o" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "Omitir este paso" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "Seleccione una foto de sus álbumes de fotos" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Recortar imagen" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Edición completada" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Imagen subida correctamente." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Subida de imagen fallida." - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "La reducción de la imagen [%s] ha fallado." +msgid "Welcome %s. Remote authentication successful." +msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." #: ../../mod/block.php:27 ../../mod/page.php:36 msgid "Invalid item." msgstr "Elemento no válido." -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:52 +#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29 msgid "Channel not found." msgstr "Canal no encontrado." -#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:79 -#: ../../mod/page.php:89 ../../index.php:241 +#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:214 +#: ../../mod/page.php:89 ../../index.php:237 msgid "Page not found." msgstr "Página no encontrada." +#: ../../mod/id.php:11 +msgid "First Name" +msgstr "Nombre" + +#: ../../mod/id.php:12 +msgid "Last Name" +msgstr "Apellido" + +#: ../../mod/id.php:13 +msgid "Nickname" +msgstr "Sobrenombre o Alias" + +#: ../../mod/id.php:14 +msgid "Full Name" +msgstr "Nombre completo" + +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" +msgstr "Foto del perfil 16px" + +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" +msgstr "Foto del perfil 32px" + +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" +msgstr "Foto del perfil 48px" + +#: ../../mod/id.php:23 +msgid "Profile Photo 64px" +msgstr "Foto del perfil 64px" + +#: ../../mod/id.php:24 +msgid "Profile Photo 80px" +msgstr "Foto del perfil 80px" + +#: ../../mod/id.php:25 +msgid "Profile Photo 128px" +msgstr "Foto del perfil 128px" + +#: ../../mod/id.php:26 +msgid "Timezone" +msgstr "Zona horaria" + +#: ../../mod/id.php:27 +msgid "Homepage URL" +msgstr "Dirección de la página personal" + +#: ../../mod/id.php:29 +msgid "Birth Year" +msgstr "Año de nacimiento" + +#: ../../mod/id.php:30 +msgid "Birth Month" +msgstr "Mes de nacimiento" + +#: ../../mod/id.php:31 +msgid "Birth Day" +msgstr "Día de nacimiento" + +#: ../../mod/id.php:32 +msgid "Birthdate" +msgstr "Fecha de nacimiento" + +#: ../../mod/id.php:33 ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Género" + #: ../../mod/like.php:15 msgid "Like/Dislike" msgstr "Me gusta/No me gusta" @@ -4327,174 +4371,622 @@ msgid "" "href=\"register\">register as a new $Projectname member to continue." msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 +#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165 msgid "Invalid request." msgstr "Solicitud incorrecta." -#: ../../mod/like.php:143 +#: ../../mod/like.php:142 msgid "thing" msgstr "elemento" -#: ../../mod/like.php:189 +#: ../../mod/like.php:188 msgid "Channel unavailable." msgstr "Canal no disponible." -#: ../../mod/like.php:231 +#: ../../mod/like.php:236 msgid "Previous action reversed." msgstr "Acción anterior revocada." -#: ../../mod/like.php:401 +#: ../../mod/like.php:414 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s está de acuerdo con %3$s de %2$s" -#: ../../mod/like.php:403 +#: ../../mod/like.php:416 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s no está de acuerdo con %3$s de %2$s" -#: ../../mod/like.php:405 +#: ../../mod/like.php:418 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s se abstiene en %3$s de %2$s" -#: ../../mod/like.php:407 +#: ../../mod/like.php:420 #, php-format msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s participará en el %3$s de %2$s" +msgstr "%3$s de %2$s: %1$s participa" -#: ../../mod/like.php:409 +#: ../../mod/like.php:422 #, php-format msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s no participará en el %3$s de %2$s" +msgstr "%3$s de %2$s: %1$s no participa" -#: ../../mod/like.php:411 +#: ../../mod/like.php:424 #, php-format msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s tal vez participe en el %3$s de %2$s" +msgstr "%3$s de %2$s: %1$s quizá participe" -#: ../../mod/like.php:507 +#: ../../mod/like.php:520 msgid "Action completed." msgstr "Acción completada." -#: ../../mod/like.php:508 +#: ../../mod/like.php:521 msgid "Thank you." msgstr "Gracias." -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "Entradas de calendario importadas." +#: ../../mod/uexport.php:51 ../../mod/uexport.php:52 +msgid "Export Channel" +msgstr "Exportar el canal" -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "No encontradas entradas de calendario." - -#: ../../mod/events.php:101 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de que haya comenzado." - -#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 -msgid "Unable to generate preview." -msgstr "No se puede crear la vista previa." - -#: ../../mod/events.php:110 -msgid "Event title and start time are required." -msgstr "Se requieren el título del evento y su hora de inicio." - -#: ../../mod/events.php:128 -msgid "Event not found." -msgstr "Evento no encontrado." - -#: ../../mod/events.php:426 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:448 -msgid "Edit event" -msgstr "Editar evento" - -#: ../../mod/events.php:449 -msgid "Delete event" -msgstr "Borrar evento" - -#: ../../mod/events.php:483 -msgid "calendar" -msgstr "calendario" - -#: ../../mod/events.php:504 -msgid "Create New Event" -msgstr "Crear Nuevo Evento" - -#: ../../mod/events.php:505 ../../mod/photos.php:839 -msgid "Previous" -msgstr "Anterior" - -#: ../../mod/events.php:506 ../../mod/photos.php:848 ../../mod/setup.php:281 -msgid "Next" -msgstr "Siguiente" - -#: ../../mod/events.php:507 -msgid "Export" -msgstr "Exportar" - -#: ../../mod/events.php:510 -msgid "Import" -msgstr "Importar" - -#: ../../mod/events.php:541 -msgid "Event removed" -msgstr "Evento borrado" - -#: ../../mod/events.php:544 -msgid "Failed to remove event" -msgstr "Error al borrar el evento" - -#: ../../mod/events.php:664 -msgid "Event details" -msgstr "Detalles del evento" - -#: ../../mod/events.php:665 -msgid "Starting date and Title are required." -msgstr "Se requieren fecha y título." - -#: ../../mod/events.php:667 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" - -#: ../../mod/events.php:669 -msgid "Event Starts:" -msgstr "Inicio del evento:" - -#: ../../mod/events.php:676 -msgid "Finish date/time is not known or not relevant" -msgstr "La fecha / hora de finalización no se conocen o no son relevantes" - -#: ../../mod/events.php:678 -msgid "Event Finishes:" -msgstr "Finalización del evento:" - -#: ../../mod/events.php:680 ../../mod/events.php:681 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para obtener el visor de zona horaria" - -#: ../../mod/events.php:680 +#: ../../mod/uexport.php:53 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." +"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 "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." -#: ../../mod/events.php:686 -msgid "Title:" -msgstr "Título:" +#: ../../mod/uexport.php:54 +msgid "Export Content" +msgstr "Exportar contenidos" -#: ../../mod/events.php:688 -msgid "Share this event" -msgstr "Compartir este evento" +#: ../../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 "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." -#: ../../mod/subthread.php:103 +#: ../../mod/uexport.php:56 +msgid "Export your posts from a given year." +msgstr "Exporta sus entradas de un año dado." + +#: ../../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 "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." + +#: ../../mod/uexport.php:59 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está siguiendo %2$s de %3$s" +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" + +#: ../../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 "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" + +#: ../../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 "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Ausente" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Conectado/a" + +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetado la %3$s de %2$s con %4$s" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Ningún canal." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Conexiones comunes" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Ninguna conexión en común." + +#: ../../mod/ping.php:260 +msgid "sent you a private message" +msgstr "le ha enviado un mensaje privado" + +#: ../../mod/ping.php:308 +msgid "added your channel" +msgstr "añadió este canal a sus conexiones" + +#: ../../mod/ping.php:350 +msgid "posted an event" +msgstr "publicó un evento" + +#: ../../mod/help.php:147 +msgid "Documentation Search" +msgstr "Búsqueda de Documentación" + +#: ../../mod/help.php:184 ../../mod/help.php:190 ../../mod/help.php:196 +msgid "Help:" +msgstr "Ayuda:" + +#: ../../mod/help.php:211 ../../index.php:234 +msgid "Not Found" +msgstr "No encontrado" + +#: ../../mod/help.php:235 +msgid "$Projectname Documentation" +msgstr "Documentación de $Projectname" + +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Eliminar este canal" + +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "WARNING: " +msgstr "ATENCIÓN:" + +#: ../../mod/removeme.php:58 +msgid "This channel will be completely removed from the network. " +msgstr "Este canal va a ser completamente eliminado de la red." + +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" + +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduzca su contraseña para su verificación:" + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Eliminar este canal y todos sus clones de la red" + +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" + +#: ../../mod/removeme.php:61 ../../mod/settings.php:1109 +msgid "Remove Channel" +msgstr "Eliminar el canal" + +#: ../../mod/filer.php:48 +msgid "- select -" +msgstr "- seleccionar -" + +#: ../../mod/mitem.php:24 ../../mod/menu.php:140 +msgid "Menu not found." +msgstr "Menú no encontrado" + +#: ../../mod/mitem.php:48 +msgid "Unable to create element." +msgstr "Imposible crear el elemento." + +#: ../../mod/mitem.php:72 +msgid "Unable to update menu element." +msgstr "No es posible actualizar el elemento del menú." + +#: ../../mod/mitem.php:88 +msgid "Unable to add menu element." +msgstr "No es posible añadir el elemento al menú" + +#: ../../mod/mitem.php:116 ../../mod/menu.php:162 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "No encontrado." + +#: ../../mod/mitem.php:149 ../../mod/mitem.php:222 +msgid "Menu Item Permissions" +msgstr "Permisos del elemento del menú" + +#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1053 +msgid "(click to open/close)" +msgstr "(pulsar para abrir o cerrar)" + +#: ../../mod/mitem.php:152 ../../mod/mitem.php:168 +msgid "Link Name" +msgstr "Nombre del enlace" + +#: ../../mod/mitem.php:153 ../../mod/mitem.php:227 +msgid "Link or Submenu Target" +msgstr "Destino del enlace o submenú" + +#: ../../mod/mitem.php:153 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" + +#: ../../mod/mitem.php:154 ../../mod/mitem.php:228 +msgid "Use magic-auth if available" +msgstr "Usar la autenticación mágica si está disponible" + +#: ../../mod/mitem.php:155 ../../mod/mitem.php:229 +msgid "Open link in new window" +msgstr "Abrir el enlace en una nueva ventana" + +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Order in list" +msgstr "Orden en la lista" + +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Los números más altos irán al final de la lista" + +#: ../../mod/mitem.php:157 +msgid "Submit and finish" +msgstr "Enviar y terminar" + +#: ../../mod/mitem.php:158 +msgid "Submit and continue" +msgstr "Enviar y continuar" + +#: ../../mod/mitem.php:166 +msgid "Menu:" +msgstr "Menú:" + +#: ../../mod/mitem.php:169 +msgid "Link Target" +msgstr "Destino del enlace" + +#: ../../mod/mitem.php:172 +msgid "Edit menu" +msgstr "Editar menú" + +#: ../../mod/mitem.php:175 +msgid "Edit element" +msgstr "Editar el elemento" + +#: ../../mod/mitem.php:176 +msgid "Drop element" +msgstr "Eliminar el elemento" + +#: ../../mod/mitem.php:177 +msgid "New element" +msgstr "Nuevo elemento" + +#: ../../mod/mitem.php:178 +msgid "Edit this menu container" +msgstr "Modificar el contenedor del menú" + +#: ../../mod/mitem.php:179 +msgid "Add menu element" +msgstr "Añadir un elemento al menú" + +#: ../../mod/mitem.php:180 +msgid "Delete this menu item" +msgstr "Eliminar este elemento del menú" + +#: ../../mod/mitem.php:181 +msgid "Edit this menu item" +msgstr "Modificar este elemento del menú" + +#: ../../mod/mitem.php:198 +msgid "Menu item not found." +msgstr "Este elemento del menú no se ha encontrado" + +#: ../../mod/mitem.php:211 +msgid "Menu item deleted." +msgstr "Este elemento del menú ha sido borrado" + +#: ../../mod/mitem.php:213 +msgid "Menu item could not be deleted." +msgstr "Este elemento del menú no puede ser borrado." + +#: ../../mod/mitem.php:220 +msgid "Edit Menu Element" +msgstr "Editar elemento del menú" + +#: ../../mod/mitem.php:226 +msgid "Link text" +msgstr "Texto del enlace" + +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "No se ha podido acceder al registro de contacto." + +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "No se ha podido localizar el perfil seleccionado." + +#: ../../mod/connedit.php:219 +msgid "Connection updated." +msgstr "Conexión actualizada." + +#: ../../mod/connedit.php:221 +msgid "Failed to update connection record." +msgstr "Error al actualizar el registro de la conexión." + +#: ../../mod/connedit.php:268 +msgid "is now connected to" +msgstr "ahora está conectado/a" + +#: ../../mod/connedit.php:391 +msgid "Could not access address book record." +msgstr "No se pudo acceder a la entrada en su libreta de direcciones." + +#: ../../mod/connedit.php:405 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Recarga fallida - no se puede encontrar el canal en este momento." + +#: ../../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 "No ha sido posible establecer los parámetros de la libreta de direcciones." + +#: ../../mod/connedit.php:478 +msgid "Connection has been removed." +msgstr "La conexión ha sido eliminada." + +#: ../../mod/connedit.php:497 +#, php-format +msgid "View %s's profile" +msgstr "Ver el perfil de %s" + +#: ../../mod/connedit.php:501 +msgid "Refresh Permissions" +msgstr "Recargar los permisos" + +#: ../../mod/connedit.php:504 +msgid "Fetch updated permissions" +msgstr "Obtener los permisos actualizados" + +#: ../../mod/connedit.php:508 +msgid "Recent Activity" +msgstr "Actividad reciente" + +#: ../../mod/connedit.php:511 +msgid "View recent posts and comments" +msgstr "Ver publicaciones y comentarios recientes" + +#: ../../mod/connedit.php:515 ../../mod/admin.php:785 +msgid "Unblock" +msgstr "Desbloquear" + +#: ../../mod/connedit.php:515 ../../mod/admin.php:784 +msgid "Block" +msgstr "Bloquear" + +#: ../../mod/connedit.php:518 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" + +#: ../../mod/connedit.php:519 +msgid "This connection is blocked!" +msgstr "¡Esta conexión está bloqueada!" + +#: ../../mod/connedit.php:523 +msgid "Unignore" +msgstr "Dejar de ignorar" + +#: ../../mod/connedit.php:523 ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorar" + +#: ../../mod/connedit.php:526 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" + +#: ../../mod/connedit.php:527 +msgid "This connection is ignored!" +msgstr "¡Esta conexión es ignorada!" + +#: ../../mod/connedit.php:531 +msgid "Unarchive" +msgstr "Desarchivar" + +#: ../../mod/connedit.php:531 +msgid "Archive" +msgstr "Archivar" + +#: ../../mod/connedit.php:534 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" + +#: ../../mod/connedit.php:535 +msgid "This connection is archived!" +msgstr "¡Esta conexión esta archivada!" + +#: ../../mod/connedit.php:539 +msgid "Unhide" +msgstr "Mostrar" + +#: ../../mod/connedit.php:539 +msgid "Hide" +msgstr "Ocultar" + +#: ../../mod/connedit.php:542 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" + +#: ../../mod/connedit.php:543 +msgid "This connection is hidden!" +msgstr "¡Esta conexión está oculta!" + +#: ../../mod/connedit.php:550 +msgid "Delete this connection" +msgstr "Eliminar esta conexión" + +#: ../../mod/connedit.php:631 +msgid "Approve this connection" +msgstr "Aprobar esta conexión" + +#: ../../mod/connedit.php:631 +msgid "Accept connection to allow communication" +msgstr "Aceptar la conexión para permitir la comunicación" + +#: ../../mod/connedit.php:636 +msgid "Set Affinity" +msgstr "Ajustar la afinidad" + +#: ../../mod/connedit.php:639 +msgid "Set Profile" +msgstr "Ajustar el perfil" + +#: ../../mod/connedit.php:642 +msgid "Set Affinity & Profile" +msgstr "Ajustar la afinidad y el perfil" + +#: ../../mod/connedit.php:659 +msgid "Apply these permissions automatically" +msgstr "Aplicar estos permisos automaticamente" + +#: ../../mod/connedit.php:661 +msgid "This connection's address is" +msgstr "La dirección de esta conexión es" + +#: ../../mod/connedit.php:664 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." + +#: ../../mod/connedit.php:666 +msgid "Slide to adjust your degree of friendship" +msgstr "Deslizar para ajustar el grado de amistad" + +#: ../../mod/connedit.php:668 +msgid "Slide to adjust your rating" +msgstr "Deslizar para ajustar su valoración" + +#: ../../mod/connedit.php:669 ../../mod/connedit.php:674 +msgid "Optionally explain your rating" +msgstr "Opcionalmente, puede explicar su valoración" + +#: ../../mod/connedit.php:671 +msgid "Custom Filter" +msgstr "Filtro personalizado" + +#: ../../mod/connedit.php:672 +msgid "Only import posts with this text" +msgstr "Importar solo entradas que contengan este texto" + +#: ../../mod/connedit.php:672 ../../mod/connedit.php:673 +msgid "" +"words one per line or #tags or /patterns/, leave blank to import all posts" +msgstr "palabras, una por línea, o #etiquetas o /patrones/, dejar en blanco para importar todas las entradas" + +#: ../../mod/connedit.php:673 +msgid "Do not import posts with this text" +msgstr "No importar entradas que contengan este texto" + +#: ../../mod/connedit.php:675 +msgid "This information is public!" +msgstr "¡Esta información es pública!" + +#: ../../mod/connedit.php:680 +msgid "Connection Pending Approval" +msgstr "Conexión pendiente de aprobación" + +#: ../../mod/connedit.php:681 +msgid "Connection Request" +msgstr "Solicitud de conexión" + +#: ../../mod/connedit.php:682 +#, php-format +msgid "" +"(%s) would like to connect with you. Please approve this connection to allow" +" communication." +msgstr "(%s) desearía conectar con usted. por favor, apruebe esta conexión para permitir la comunicación." + +#: ../../mod/connedit.php:683 ../../mod/admin.php:781 +msgid "Approve" +msgstr "Aprobar" + +#: ../../mod/connedit.php:684 +msgid "Approve Later" +msgstr "Aprobar más tarde" + +#: ../../mod/connedit.php:687 +msgid "inherited" +msgstr "heredado" + +#: ../../mod/connedit.php:689 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." + +#: ../../mod/connedit.php:691 +msgid "Their Settings" +msgstr "Sus ajustes" + +#: ../../mod/connedit.php:692 +msgid "My Settings" +msgstr "Mis ajustes" + +#: ../../mod/connedit.php:694 +msgid "Individual Permissions" +msgstr "Permisos individuales" + +#: ../../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 "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." + +#: ../../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 "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." + +#: ../../mod/connedit.php:697 +msgid "Last update:" +msgstr "Última actualización:" + +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" + +#: ../../mod/magic.php:69 +msgid "Hub not found." +msgstr "Servidor no encontrado" + +#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." + +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "Editor de configuración" + +#: ../../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 "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." #: ../../mod/pubsites.php:16 msgid "Public Sites" @@ -4507,7 +4999,7 @@ msgid "" "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 "Los sitios listados permiten el registro público de la red $Projectname. Todos los sitios de la red están vinculados entre sí por lo que sus miembros, en ninguna de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los enlaces de los proveedores pueden proporcionar detalles adicionales." +msgstr "Los sitios listados permiten el registro público de la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los enlaces de los proveedores pueden proporcionar detalles adicionales." #: ../../mod/pubsites.php:25 msgid "Rate this hub" @@ -4519,11 +5011,11 @@ msgstr "Dirección del sitio" #: ../../mod/pubsites.php:26 msgid "Access Type" -msgstr "Tipo de Acceso" +msgstr "Tipo de acceso" #: ../../mod/pubsites.php:26 msgid "Registration Policy" -msgstr "Normas de Registro" +msgstr "Normas de registro" #: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 msgid "Location" @@ -4541,1185 +5033,6 @@ msgstr "Valorar" msgid "View ratings" msgstr "Ver valoraciones" -#: ../../mod/rpost.php:131 ../../mod/editpost.php:158 -msgid "Edit post" -msgstr "Editar entrada" - -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "canal $Projectname" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Colección creada." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "No se puede crear colección." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Colección actualizada." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Crear una colección de canales." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nombre de la colección:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Los miembros son visibles para otros canales" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Colección eliminada." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "No ha sido posible de eliminar la colección." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Editor de colecciones" - -#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 -msgid "Members" -msgstr "Miembros" - -#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 -msgid "All Connected Channels" -msgstr "Todos los canales conectados" - -#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 -msgid "Click on a channel to add or remove." -msgstr "Haga clic en un canal para agregarlo o quitarlo." - -#: ../../mod/siteinfo.php:112 -#, php-format -msgid "Version %s" -msgstr "Versión %s" - -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "Extensiones/Aplicaciones instaladas:" - -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "Extensiones/Aplicaciones no instaladas:" - -#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:64 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../mod/siteinfo.php:156 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." - -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "Etiqueta:" - -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "Última actualización en segundo plano:" - -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "Corriendo en el sitio web" - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit redmatrix.me to learn more" -" about $Projectname." -msgstr "Por favor, visite redmatrix.me para aprender más sobre $Projectname." - -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "Informes de errores e incidencias: por, favor visite" - -#: ../../mod/siteinfo.php:167 -msgid "$projectname issues" -msgstr "Problemas en $projectname" - -#: ../../mod/siteinfo.php:168 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" - -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "Administradores del sitio" - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." - -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "Desechada entrada vacía." - -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "Contenido de tipo ejecutable no permitido en este canal." - -#: ../../mod/item.php:914 -msgid "System error. Post not saved." -msgstr "Error del sistema. Entrada no salvada." - -#: ../../mod/item.php:1146 -msgid "Unable to obtain post information from database." -msgstr "No ha sido posible obtener información de la entrada en la base de datos." - -#: ../../mod/item.php:1153 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Ha alcanzado su límite de %1$.0f tope máximo de entradas" - -#: ../../mod/item.php:1160 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Ha alcanzado su límite de %1$.0f páginas web." - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "No se encuentra el grupo" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "No se encuentra el canal" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "Buscar resultados para:" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "La colección está vacía" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "Colección:" - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "Conexión:" - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "Conexión no válida." - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Ningún canal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Conexiones comunes" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Ninguna conexión en común." - -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Este sitio no es un servidor de directorio" - -#: ../../mod/connections.php:52 ../../mod/connections.php:153 -msgid "Blocked" -msgstr "Bloqueadas" - -#: ../../mod/connections.php:57 ../../mod/connections.php:160 -msgid "Ignored" -msgstr "Ignoradas" - -#: ../../mod/connections.php:62 ../../mod/connections.php:174 -msgid "Hidden" -msgstr "Ocultas" - -#: ../../mod/connections.php:67 ../../mod/connections.php:167 -msgid "Archived" -msgstr "Archivadas" - -#: ../../mod/connections.php:131 -msgid "Suggest new connections" -msgstr "Sugerir nuevas conexiones" - -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "Nuevas conexiones" - -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "Mostrar conexiones (nuevas) pendientes" - -#: ../../mod/connections.php:140 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Todas las conexiones" - -#: ../../mod/connections.php:143 -msgid "Show all connections" -msgstr "Mostrar todas las conexiones" - -#: ../../mod/connections.php:146 -msgid "Unblocked" -msgstr "Desbloqueadas" - -#: ../../mod/connections.php:149 -msgid "Only show unblocked connections" -msgstr "Mostrar solo las conexiones desbloqueadas" - -#: ../../mod/connections.php:156 -msgid "Only show blocked connections" -msgstr "Mostrar solo las conexiones bloqueadas" - -#: ../../mod/connections.php:163 -msgid "Only show ignored connections" -msgstr "Mostrar solo conexiones ignoradas" - -#: ../../mod/connections.php:170 -msgid "Only show archived connections" -msgstr "Mostrar solo las conexiones archivadas" - -#: ../../mod/connections.php:177 -msgid "Only show hidden connections" -msgstr "Mostrar solo las conexiones ocultas" - -#: ../../mod/connections.php:232 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:233 -msgid "Edit connection" -msgstr "Editar conexión" - -#: ../../mod/connections.php:271 -msgid "Search your connections" -msgstr "Buscar sus conexiones" - -#: ../../mod/connections.php:272 -msgid "Finding: " -msgstr "Búsqueda:" - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 -msgid "Block Name" -msgstr "Nombre del bloque" - -#: ../../mod/blocks.php:149 -msgid "Block Title" -msgstr "Título del bloque" - -#: ../../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 "Elemento no encontrado" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "El elemento no es editable" - -#: ../../mod/editpost.php:48 -msgid "Delete item?" -msgstr "¿Borrar el elemento?" - -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:187 ../../mod/editblock.php:144 -msgid "Insert YouTube video" -msgstr "Insertar vídeo de YouTube" - -#: ../../mod/editpost.php:116 ../../mod/editlayout.php:143 -#: ../../mod/editwebpage.php:188 ../../mod/editblock.php:145 -msgid "Insert Vorbis [.ogg] video" -msgstr "Insertar vídeo Vorbis [.ogg]" - -#: ../../mod/editpost.php:117 ../../mod/editlayout.php:144 -#: ../../mod/editwebpage.php:189 ../../mod/editblock.php:146 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Insertar audio Vorbis [.ogg]" - -#: ../../mod/cloud.php:120 -msgid "$Projectname - Guests: Username: {your email address}, Password: +++" -msgstr "$Projectname - Invitados: Nombre de usuario: {su dirección de correo electrónico}, Contraseña: +++" - -#: ../../mod/photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "La información del propietario de la página no pudo ser recuperada." - -#: ../../mod/photos.php:98 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: ../../mod/photos.php:120 ../../mod/photos.php:655 -msgid "Delete Album" -msgstr "Borrar álbum" - -#: ../../mod/photos.php:160 ../../mod/photos.php:942 -msgid "Delete Photo" -msgstr "Borrar foto" - -#: ../../mod/photos.php:452 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" - -#: ../../mod/photos.php:496 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." - -#: ../../mod/photos.php:535 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." - -#: ../../mod/photos.php:538 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB de almacenamiento de fotos utilizado." - -#: ../../mod/photos.php:562 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 -msgid "Enter a new album name" -msgstr "Introducir un nuevo nombre de álbum" - -#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 -msgid "or select an existing one (doubleclick)" -msgstr "o seleccionar uno (doble click) existente" - -#: ../../mod/photos.php:568 -msgid "Create a status post for this upload" -msgstr "Crear una entrada de estado para esta subida" - -#: ../../mod/photos.php:596 -msgid "Album name could not be decoded" -msgstr "El nombre del álbum no ha podido ser descifrado" - -#: ../../mod/photos.php:637 ../../mod/photos.php:1169 -#: ../../mod/photos.php:1185 -msgid "Contact Photos" -msgstr "Fotos de contacto" - -#: ../../mod/photos.php:661 -msgid "Show Newest First" -msgstr "Mostrar lo más reciente primero" - -#: ../../mod/photos.php:663 -msgid "Show Oldest First" -msgstr "Mostrar lo más antiguo primero" - -#: ../../mod/photos.php:687 ../../mod/photos.php:1217 -msgid "View Photo" -msgstr "Ver foto" - -#: ../../mod/photos.php:716 -msgid "Edit Album" -msgstr "Editar álbum" - -#: ../../mod/photos.php:761 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." - -#: ../../mod/photos.php:763 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: ../../mod/photos.php:821 -msgid "Use as profile photo" -msgstr "Usar como foto de perfil" - -#: ../../mod/photos.php:828 -msgid "Private Photo" -msgstr "Foto privada" - -#: ../../mod/photos.php:843 -msgid "View Full Size" -msgstr "Ver tamaño completo" - -#: ../../mod/photos.php:921 -msgid "Edit photo" -msgstr "Editar foto" - -#: ../../mod/photos.php:923 -msgid "Rotate CW (right)" -msgstr "Girar CW (a la derecha)" - -#: ../../mod/photos.php:924 -msgid "Rotate CCW (left)" -msgstr "Girar CCW (a la izquierda)" - -#: ../../mod/photos.php:931 -msgid "Caption" -msgstr "Título" - -#: ../../mod/photos.php:933 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: ../../mod/photos.php:937 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Ejemplo: @bob, @Barbara_Gómez, @juan@ejemplo.com" - -#: ../../mod/photos.php:940 -msgid "Flag as adult in album view" -msgstr "Marcar como \"solo para adultos\" en el álbum" - -#: ../../mod/photos.php:1132 -msgid "In This Photo:" -msgstr "En esta foto:" - -#: ../../mod/photos.php:1137 -msgid "Map" -msgstr "Mapa" - -#: ../../mod/photos.php:1223 -msgid "View Album" -msgstr "Ver álbum" - -#: ../../mod/photos.php:1246 -msgid "Recent Photos" -msgstr "Fotos recientes" - -#: ../../mod/search.php:206 -#, php-format -msgid "Items tagged with: %s" -msgstr "elementos etiquetados con: %s" - -#: ../../mod/search.php:208 -#, php-format -msgid "Search results for: %s" -msgstr "Resultados de la búsqueda para: %s" - -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "Perfil compatible" - -#: ../../mod/match.php:31 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." - -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "está interesado en:" - -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "No se han encontrado perfiles compatibles" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Ausente" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Conectado" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Seleccionar una carpeta de marcadores" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Guardar marcador" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "Dirección del marcador" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Descripción" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" - -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema" - -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "Notificaciones de sistema" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "red" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Formato actualizado" - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripción de Páginas" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Formato no encontrado" - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Nombre del módulo:" - -#: ../../mod/pdledit.php:55 -msgid "Layout Help" -msgstr "Ayuda para el diseño de la página" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- seleccionar -" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Su paquete de servicios solo permite %d canales." - -#: ../../mod/import.php:60 -msgid "Nothing to import." -msgstr "No hay nada para importar." - -#: ../../mod/import.php:84 -msgid "Unable to download data from old server" -msgstr "No se han podido descargar datos de su antiguo servidor" - -#: ../../mod/import.php:90 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." - -#: ../../mod/import.php:110 -msgid "The data provided is not compatible with this project." -msgstr "Los datos proporcionados no son compatibles con este proyecto." - -#: ../../mod/import.php:115 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." - -#: ../../mod/import.php:135 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No se ha podido crear el canal porque el identificador del canal no se ha podido duplicar en este servidor." - -#: ../../mod/import.php:176 -msgid "Channel clone failed. Import failed." -msgstr "No se ha podido importar el canal porque el canal no se ha podido clonar." - -#: ../../mod/import.php:186 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." - -#: ../../mod/import.php:574 -msgid "You must be logged in to use this feature." -msgstr "Debe estar registrado para poder usar esta funcionalidad." - -#: ../../mod/import.php:579 -msgid "Import Channel" -msgstr "Importar canal" - -#: ../../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." -msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." - -#: ../../mod/import.php:581 -msgid "File to Upload" -msgstr "Fichero para subir" - -#: ../../mod/import.php:582 -msgid "Or provide the old server/hub details" -msgstr "O proporcione los detalles de su antiguo servidor/hub" - -#: ../../mod/import.php:583 -msgid "Your old identity address (xyz@example.com)" -msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" - -#: ../../mod/import.php:584 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" - -#: ../../mod/import.php:585 -msgid "Your old login password" -msgstr "Su antigua contraseña" - -#: ../../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" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua ubicación debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." - -#: ../../mod/import.php:587 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" - -#: ../../mod/import.php:588 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" - -#: ../../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 "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." - -#: ../../mod/editlayout.php:111 -msgid "Delete layout?" -msgstr "¿Borrar formato?" - -#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "Descripción del formato gráfico (opcional)" - -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:179 -msgid "Layout Name" -msgstr "Nombre del formato" - -#: ../../mod/editlayout.php:177 -msgid "Edit Layout" -msgstr "Modificar formato" - -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "Debe haber iniciado sesión para poder ver esta página." - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Sala no encontrada" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Abandonar sala" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Eliminar esta sala" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Estoy ausente momentáneamente" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Estoy conectado" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Añadir esta sala a Marcadores" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nueva sala de chat" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nombre de sala de chat" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Sala de chat de %1$s" - -#: ../../mod/mitem.php:24 ../../mod/menu.php:138 -msgid "Menu not found." -msgstr "Menú no encontrado" - -#: ../../mod/mitem.php:48 -msgid "Unable to create element." -msgstr "Imposible crear el elemento." - -#: ../../mod/mitem.php:72 -msgid "Unable to update menu element." -msgstr "No es posible actualizar el elemento del menú." - -#: ../../mod/mitem.php:88 -msgid "Unable to add menu element." -msgstr "No es posible añadir el elemento al menú" - -#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos del elemento del menú" - -#: ../../mod/mitem.php:155 ../../mod/mitem.php:227 ../../mod/settings.php:1083 -msgid "(click to open/close)" -msgstr "(pulse para abrir/cerrar)" - -#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 -msgid "Link Name" -msgstr "Nombre del enlace" - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Destino del enlace o submenú" - -#: ../../mod/mitem.php:158 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Introduzca la dirección del enlace o seleccione el nombre de un submenú" - -#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Use la autenticación mágica si está disponible" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 -msgid "Open link in new window" -msgstr "Abrir el enlace en una nueva ventana" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Order in list" -msgstr "Orden en la lista" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Los números más altos irán al final de la lista" - -#: ../../mod/mitem.php:162 -msgid "Submit and finish" -msgstr "Enviar y terminar" - -#: ../../mod/mitem.php:163 -msgid "Submit and continue" -msgstr "Enviar y continuar" - -#: ../../mod/mitem.php:171 -msgid "Menu:" -msgstr "Menú:" - -#: ../../mod/mitem.php:174 -msgid "Link Target" -msgstr "Destino del enlace" - -#: ../../mod/mitem.php:177 -msgid "Edit menu" -msgstr "Editar menú" - -#: ../../mod/mitem.php:180 -msgid "Edit element" -msgstr "Editar elemento" - -#: ../../mod/mitem.php:181 -msgid "Drop element" -msgstr "Eliminar el elemento" - -#: ../../mod/mitem.php:182 -msgid "New element" -msgstr "Nuevo elemento" - -#: ../../mod/mitem.php:183 -msgid "Edit this menu container" -msgstr "Modificar el contenedor del menú" - -#: ../../mod/mitem.php:184 -msgid "Add menu element" -msgstr "Añadir un elemento al menú" - -#: ../../mod/mitem.php:185 -msgid "Delete this menu item" -msgstr "Eliminar este elemento del menú" - -#: ../../mod/mitem.php:186 -msgid "Edit this menu item" -msgstr "Modificar este elemento del menú" - -#: ../../mod/mitem.php:203 -msgid "Menu item not found." -msgstr "Este elemento del menú no se ha encontrado" - -#: ../../mod/mitem.php:215 -msgid "Menu item deleted." -msgstr "Este elemento del menú ha sido borrado" - -#: ../../mod/mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Este elemento del menú no puede ser borrado." - -#: ../../mod/mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar elemento del menú" - -#: ../../mod/mitem.php:230 -msgid "Link text" -msgstr "Texto del enlace" - -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "¿Eliminar página web?" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "Título del enlace de la página" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "Editar página web" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "El servidor de este directorio necesita un \"token\" de acceso" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." - -#: ../../mod/lostpass.php:86 ../../boot.php:1558 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "Su nueva contraseña es" - -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" - -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "Pulse aquí para conectarse" - -#: ../../mod/lostpass.php:91 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." - -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" - -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" - -#: ../../mod/lostpass.php:124 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." - -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "Dirección de correo electrónico" - -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Sitio web:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" - -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" - -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" - -#: ../../mod/editblock.php:117 -msgid "Delete block?" -msgstr "¿Borrar este bloque?" - -#: ../../mod/editblock.php:179 -msgid "Edit Block" -msgstr "Modificar este bloque" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo electrónico válida. " - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Únase a nosotros en RedMatrix" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Falló la entrega del mensaje." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensajes enviados." -msgstr[1] "%d mensajes enviados." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "No tiene más invitaciones disponibles" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Enviar invitaciones" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónica, una por línea:" - -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Su mensaje:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Debe proporcionar este código de invitación:" - -#: ../../mod/invite.php:135 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Regístrese en cualquier lugar del $Projectname (están todos interconectados)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "o visite" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Localización no encontrada." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "La localización primaria no puede ser eliminada." - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Ninguna localización encontrada." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Gestionar localizaciones del canal" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Localización (dirección)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Localización primaria" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Eliminar localización" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Imposible crear el origen de los clontenidos. Ningún canal ha sido seleccionado." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Fuente creada." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Fuente actualizada." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Gestionar contenido de origen remoto para su canal." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nueva fuente" - -#: ../../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 "Importar todo el contenido o una selección de los siguientes canales en este canal, y distribuirlo de acuerdo con sus ajustes." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importar solo contenido que contenga estas palabras (una por línea)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Dejar en blanco para importar todo el contenido público" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Nombre del canal" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Fuente no encontrada" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Editar fuente" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Eliminar fuente" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Fuente eliminada" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Imposible eliminar la fuente." - -#: ../../mod/menu.php:45 -msgid "Unable to update menu." -msgstr "No se puede actualizar el menú." - -#: ../../mod/menu.php:56 -msgid "Unable to create menu." -msgstr "No se puede crear el menú." - -#: ../../mod/menu.php:92 ../../mod/menu.php:104 -msgid "Menu Name" -msgstr "Nombre del menú" - -#: ../../mod/menu.php:92 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nombre único (no será visible en la página web) - requerido" - -#: ../../mod/menu.php:93 ../../mod/menu.php:105 -msgid "Menu Title" -msgstr "Título del menú" - -#: ../../mod/menu.php:93 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible en la página web - no ponga nada si no desea un título" - -#: ../../mod/menu.php:94 -msgid "Allow Bookmarks" -msgstr "Permitir marcadores" - -#: ../../mod/menu.php:94 ../../mod/menu.php:151 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú se puede usar para guardar marcadores" - -#: ../../mod/menu.php:95 ../../mod/menu.php:153 -msgid "Submit and proceed" -msgstr "Enviar y proceder" - -#: ../../mod/menu.php:107 -msgid "Drop" -msgstr "Eliminar" - -#: ../../mod/menu.php:111 -msgid "Bookmarks allowed" -msgstr "Marcadores permitidos" - -#: ../../mod/menu.php:113 -msgid "Delete this menu" -msgstr "Borrar este menú" - -#: ../../mod/menu.php:114 ../../mod/menu.php:148 -msgid "Edit menu contents" -msgstr "Editar los contenidos del menú" - -#: ../../mod/menu.php:115 -msgid "Edit this menu" -msgstr "Modificar este menú" - -#: ../../mod/menu.php:130 -msgid "Menu could not be deleted." -msgstr "El menú no puede ser eliminado." - -#: ../../mod/menu.php:143 -msgid "Edit Menu" -msgstr "Modificar el menú" - -#: ../../mod/menu.php:147 -msgid "Add or remove entries to this menu" -msgstr "Añadir o quitar entradas en este menú" - -#: ../../mod/menu.php:149 -msgid "Menu name" -msgstr "Nombre del menú" - -#: ../../mod/menu.php:149 -msgid "Must be unique, only seen by you" -msgstr "Debe ser único, solo será visible para usted" - -#: ../../mod/menu.php:150 -msgid "Menu title" -msgstr "Título del menú" - -#: ../../mod/menu.php:150 -msgid "Menu title as seen by others" -msgstr "El título del menú tal como será visto por los demás" - -#: ../../mod/menu.php:151 -msgid "Allow bookmarks" -msgstr "Permitir marcadores" - #: ../../mod/filestorage.php:82 msgid "Permission Denied." msgstr "Permiso denegado" @@ -5764,73 +5077,3657 @@ msgstr "Mostrar la dirección de este fichero" msgid "Notify your contacts about this file" msgstr "Avisar a sus contactos sobre este fichero" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contacto no encontrado" +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Este sitio no es un servidor de directorio" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Enviar sugerencia a un amigo." +#: ../../mod/layouts.php:121 ../../mod/layouts.php:179 +#: ../../mod/editlayout.php:161 +msgid "Layout Name" +msgstr "Nombre del formato" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugerir amigos" +#: ../../mod/layouts.php:124 ../../mod/editlayout.php:159 +msgid "Layout Description (Optional)" +msgstr "Descripción del formato gráfico (opcional)" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Sugerir un amigo a %s" +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" +msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Servidor no encontrado" +#: ../../mod/layouts.php:180 +msgid "Layout Description" +msgstr "Descripción del formato" -#: ../../mod/poke.php:159 +#: ../../mod/layouts.php:185 +msgid "Download PDL file" +msgstr "Descargar el fichero PDL" + +#: ../../mod/poke.php:164 msgid "Poke/Prod" -msgstr "Dar un toque/Incitar" +msgstr "Toque/Incitación" -#: ../../mod/poke.php:160 +#: ../../mod/poke.php:165 msgid "poke, prod or do other things to somebody" msgstr "dar un toque, incitar u otras cosas a alguien" -#: ../../mod/poke.php:161 +#: ../../mod/poke.php:166 msgid "Recipient" msgstr "Destinatario" -#: ../../mod/poke.php:162 +#: ../../mod/poke.php:167 msgid "Choose what you wish to do to recipient" msgstr "Elegir qué desea enviar al destinatario" -#: ../../mod/poke.php:165 +#: ../../mod/poke.php:170 msgid "Make this post private" msgstr "Convertir en privado este envío" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Identificador de perfil no válido" +#: ../../mod/network.php:91 +msgid "No such group" +msgstr "No se encuentra el grupo" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" +#: ../../mod/network.php:131 +msgid "No such channel" +msgstr "No se encuentra el canal" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadir o eliminar." +#: ../../mod/network.php:136 +msgid "forum" +msgstr "foro" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visible para" +#: ../../mod/network.php:148 +msgid "Search Results For:" +msgstr "Buscar resultados para:" -#: ../../mod/impel.php:191 +#: ../../mod/network.php:207 +msgid "Collection is empty" +msgstr "La colección está vacía" + +#: ../../mod/network.php:216 +msgid "Collection: " +msgstr "Colección:" + +#: ../../mod/network.php:242 +msgid "Invalid connection." +msgstr "Conexión no válida." + +#: ../../mod/chat.php:19 ../../mod/channel.php:25 +msgid "You must be logged in to see this page." +msgstr "Debe haber iniciado sesión para poder ver esta página." + +#: ../../mod/chat.php:171 +msgid "Room not found" +msgstr "Sala no encontrada" + +#: ../../mod/chat.php:182 +msgid "Leave Room" +msgstr "Abandonar la sala" + +#: ../../mod/chat.php:183 +msgid "Delete This Room" +msgstr "Eliminar esta sala" + +#: ../../mod/chat.php:184 +msgid "I am away right now" +msgstr "Estoy ausente momentáneamente" + +#: ../../mod/chat.php:185 +msgid "I am online" +msgstr "Estoy conectado/a" + +#: ../../mod/chat.php:187 +msgid "Bookmark this room" +msgstr "Añadir esta sala a Marcadores" + +#: ../../mod/chat.php:205 ../../mod/chat.php:227 +msgid "New Chatroom" +msgstr "Nueva sala de chat" + +#: ../../mod/chat.php:206 +msgid "Chatroom Name" +msgstr "Nombre de la sala de chat" + +#: ../../mod/chat.php:223 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salas de chat de %1$s" + +#: ../../mod/search.php:209 +#, php-format +msgid "Items tagged with: %s" +msgstr "elementos etiquetados con: %s" + +#: ../../mod/search.php:211 +#, php-format +msgid "Search results for: %s" +msgstr "Resultados de la búsqueda para: %s" + +#: ../../mod/rate.php:158 +msgid "Website:" +msgstr "Sitio web:" + +#: ../../mod/rate.php:161 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" + +#: ../../mod/rate.php:162 +msgid "Rating (this information is public)" +msgstr "Valoración (esta información es pública)" + +#: ../../mod/rate.php:163 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Imposible asociar a un destinatario." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Imposible comunicar con el canal solicitado." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." + +#: ../../mod/mail.php:132 +msgid "Messages" +msgstr "Mensajes" + +#: ../../mod/mail.php:167 +msgid "Message recalled." +msgstr "Mensaje revocado." + +#: ../../mod/mail.php:180 +msgid "Conversation removed." +msgstr "Conversación eliminada." + +#: ../../mod/mail.php:223 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" + +#: ../../mod/mail.php:231 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" + +#: ../../mod/mail.php:232 ../../mod/mail.php:361 +msgid "To:" +msgstr "Para:" + +#: ../../mod/mail.php:235 ../../mod/mail.php:363 +msgid "Subject:" +msgstr "Asunto:" + +#: ../../mod/mail.php:238 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Su mensaje:" + +#: ../../mod/mail.php:242 +msgid "Send" +msgstr "Enviar" + +#: ../../mod/mail.php:333 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: ../../mod/mail.php:334 +msgid "Delivery report" +msgstr "Informe de transmisión" + +#: ../../mod/mail.php:335 +msgid "Recall message" +msgstr "Revocar el mensaje" + +#: ../../mod/mail.php:337 +msgid "Message has been recalled." +msgstr "El mensaje ha sido revocado." + +#: ../../mod/mail.php:354 +msgid "Delete Conversation" +msgstr "Eliminar Conversación" + +#: ../../mod/mail.php:356 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." + +#: ../../mod/mail.php:360 +msgid "Send Reply" +msgstr "Responder" + +#: ../../mod/mail.php:365 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%s):" + +#: ../../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 "Elemento no encontrado" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "El elemento no es editable" + +#: ../../mod/editpost.php:55 +msgid "Delete item?" +msgstr "¿Borrar elemento?" + +#: ../../mod/editpost.php:122 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:185 +msgid "Insert YouTube video" +msgstr "Insertar vídeo de YouTube" + +#: ../../mod/editpost.php:123 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:186 +msgid "Insert Vorbis [.ogg] video" +msgstr "Insertar vídeo Vorbis [.ogg]" + +#: ../../mod/editpost.php:124 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:187 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Insertar audio Vorbis [.ogg]" + +#: ../../mod/editpost.php:165 ../../mod/rpost.php:128 +msgid "Edit post" +msgstr "Editar la entrada" + +#: ../../mod/dreport.php:23 +msgid "Invalid message" +msgstr "Mensaje no válido" + +#: ../../mod/dreport.php:55 +msgid "no results" +msgstr "sin resultados" + +#: ../../mod/dreport.php:60 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Informe de entrega para %1$s" + +#: ../../mod/dreport.php:74 +msgid "channel sync processed" +msgstr "se ha realizado la sincronización del canal" + +#: ../../mod/dreport.php:78 +msgid "queued" +msgstr "encolado" + +#: ../../mod/dreport.php:82 +msgid "posted" +msgstr "enviado" + +#: ../../mod/dreport.php:86 +msgid "accepted for delivery" +msgstr "aceptado para el envío" + +#: ../../mod/dreport.php:90 +msgid "updated" +msgstr "actualizado" + +#: ../../mod/dreport.php:93 +msgid "update ignored" +msgstr "actualización ignorada" + +#: ../../mod/dreport.php:96 +msgid "permission denied" +msgstr "permiso denegado" + +#: ../../mod/dreport.php:100 +msgid "recipient not found" +msgstr "destinatario no encontrado" + +#: ../../mod/dreport.php:103 +msgid "mail recalled" +msgstr "mensaje de correo revocado" + +#: ../../mod/dreport.php:106 +msgid "duplicate mail received" +msgstr "se ha recibido mensaje duplicado" + +#: ../../mod/dreport.php:109 +msgid "mail delivered" +msgstr "correo enviado" + +#: ../../mod/editblock.php:118 +msgid "Delete block?" +msgstr "¿Borrar bloque?" + +#: ../../mod/editblock.php:180 +msgid "Edit Block" +msgstr "Modificar este bloque" + +#: ../../mod/home.php:57 ../../mod/home.php:63 ../../mod/siteinfo.php:157 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../mod/home.php:73 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "No ha sido posible encontrar la entrada original." + +#: ../../mod/item.php:418 +msgid "Empty post discarded." +msgstr "La entrada vacía ha sido desechada." + +#: ../../mod/item.php:458 +msgid "Executable content type not permitted to this channel." +msgstr "Contenido de tipo ejecutable no permitido en este canal." + +#: ../../mod/item.php:907 +msgid "System error. Post not saved." +msgstr "Error del sistema. La entrada no se ha podido salvar." + +#: ../../mod/item.php:1174 +msgid "Unable to obtain post information from database." +msgstr "No ha sido posible obtener información de la entrada en la base de datos." + +#: ../../mod/item.php:1181 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." + +#: ../../mod/item.php:1188 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Ha alcanzado su límite de %1$.0f páginas web." + +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "No se puede encontrar su servidor." + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Enviado con éxito." + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Ajustes del tema actualizados." + +#: ../../mod/admin.php:160 +msgid "# Accounts" +msgstr "# Cuentas" + +#: ../../mod/admin.php:161 +msgid "# blocked accounts" +msgstr "# cuentas bloqueadas" + +#: ../../mod/admin.php:162 +msgid "# expired accounts" +msgstr "# cuentas caducadas" + +#: ../../mod/admin.php:163 +msgid "# expiring accounts" +msgstr "# cuentas que caducan" + +#: ../../mod/admin.php:174 +msgid "# Channels" +msgstr "# Canales" + +#: ../../mod/admin.php:175 +msgid "# primary" +msgstr "# primario" + +#: ../../mod/admin.php:176 +msgid "# clones" +msgstr "# clones" + +#: ../../mod/admin.php:182 +msgid "Message queues" +msgstr "Mensajes en cola" + +#: ../../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 "Administración" + +#: ../../mod/admin.php:199 +msgid "Summary" +msgstr "Sumario" + +#: ../../mod/admin.php:202 +msgid "Registered accounts" +msgstr "Cuentas registradas" + +#: ../../mod/admin.php:203 ../../mod/admin.php:510 +msgid "Pending registrations" +msgstr "Registros pendientes" + +#: ../../mod/admin.php:204 +msgid "Registered channels" +msgstr "Canales registrados" + +#: ../../mod/admin.php:205 ../../mod/admin.php:511 +msgid "Active plugins" +msgstr "Extensiones activas" + +#: ../../mod/admin.php:206 +msgid "Version" +msgstr "Versión" + +#: ../../mod/admin.php:321 +msgid "Site settings updated." +msgstr "Ajustes del sitio actualizados." + +#: ../../mod/admin.php:358 ../../mod/settings.php:790 +msgid "mobile" +msgstr "móvil" + +#: ../../mod/admin.php:360 +msgid "experimental" +msgstr "experimental" + +#: ../../mod/admin.php:362 +msgid "unsupported" +msgstr "no soportado" + +#: ../../mod/admin.php:387 +msgid "Yes - with approval" +msgstr "Sí - con aprobación" + +#: ../../mod/admin.php:393 +msgid "My site is not a public server" +msgstr "Mi sitio no es un servidor público" + +#: ../../mod/admin.php:394 +msgid "My site has paid access only" +msgstr "Mi sitio es un servicio de pago" + +#: ../../mod/admin.php:395 +msgid "My site has free access only" +msgstr "Mi sitio es un servicio gratuito" + +#: ../../mod/admin.php:396 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" + +#: ../../mod/admin.php:412 ../../mod/register.php:207 +msgid "Registration" +msgstr "Registro" + +#: ../../mod/admin.php:413 +msgid "File upload" +msgstr "Fichero subido" + +#: ../../mod/admin.php:414 +msgid "Policies" +msgstr "Políticas" + +#: ../../mod/admin.php:419 +msgid "Site name" +msgstr "Nombre del sitio" + +#: ../../mod/admin.php:420 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:421 +msgid "Administrator Information" +msgstr "Información del Administrador" + +#: ../../mod/admin.php:421 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" + +#: ../../mod/admin.php:422 +msgid "System language" +msgstr "Idioma del sistema" + +#: ../../mod/admin.php:423 +msgid "System theme" +msgstr "Tema gráfico del sistema" + +#: ../../mod/admin.php:423 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" + +#: ../../mod/admin.php:424 +msgid "Mobile system theme" +msgstr "Tema del sistema para móviles" + +#: ../../mod/admin.php:424 +msgid "Theme for mobile devices" +msgstr "Tema para dispositivos móviles" + +#: ../../mod/admin.php:426 +msgid "Allow Feeds as Connections" +msgstr "Permitir flujos RSS como conexiones" + +#: ../../mod/admin.php:426 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso de los recursos del sistema)" + +#: ../../mod/admin.php:427 +msgid "Maximum image size" +msgstr "Tamaño máximo de la imagen" + +#: ../../mod/admin.php:427 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." + +#: ../../mod/admin.php:428 +msgid "Does this site allow new member registration?" +msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" + +#: ../../mod/admin.php:429 +msgid "Which best describes the types of account offered by this hub?" +msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" + +#: ../../mod/admin.php:430 +msgid "Register text" +msgstr "Texto del registro" + +#: ../../mod/admin.php:430 +msgid "Will be displayed prominently on the registration page." +msgstr "Se mostrará de forma destacada en la página de registro." + +#: ../../mod/admin.php:431 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" + +#: ../../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 "ejemplo: 'public' para mostrar contenido público de los usuarios, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." + +#: ../../mod/admin.php:432 +msgid "Preserve site homepage URL" +msgstr "Preservar la dirección de la página personal" + +#: ../../mod/admin.php:432 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." + +#: ../../mod/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "Cuentas abandonadas después de x días" + +#: ../../mod/admin.php:433 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." + +#: ../../mod/admin.php:434 +msgid "Allowed friend domains" +msgstr "Dominios amigos permitidos" + +#: ../../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 "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." + +#: ../../mod/admin.php:435 +msgid "Allowed email domains" +msgstr "Se aceptan dominios de correo electrónico" + +#: ../../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 "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " + +#: ../../mod/admin.php:436 +msgid "Not allowed email domains" +msgstr "No se permiten dominios de correo electrónico" + +#: ../../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 "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." + +#: ../../mod/admin.php:437 +msgid "Block public" +msgstr "Bloquear páginas públicas" + +#: ../../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 "Activar para bloquear el acceso a todas las páginas públicas personales en este sitio, salvo que estén identificadas en el sistema." + +#: ../../mod/admin.php:438 +msgid "Verify Email Addresses" +msgstr "Verificar las direcciones de correo electrónico" + +#: ../../mod/admin.php:438 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." + +#: ../../mod/admin.php:439 +msgid "Force publish" +msgstr "Forzar la publicación" + +#: ../../mod/admin.php:439 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." + +#: ../../mod/admin.php:440 +msgid "Disable discovery tab" +msgstr "Desactivar la pestaña \"Descubrir\"" + +#: ../../mod/admin.php:440 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Quitar la pestaña para ver contenido público extraído de las fuentes elegidas por este sitio." + +#: ../../mod/admin.php:441 +msgid "login on Homepage" +msgstr "acceso a la página personal" + +#: ../../mod/admin.php:441 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." + +#: ../../mod/admin.php:443 +msgid "Proxy user" +msgstr "Usuario del proxy" + +#: ../../mod/admin.php:444 +msgid "Proxy URL" +msgstr "Dirección del proxy" + +#: ../../mod/admin.php:445 +msgid "Network timeout" +msgstr "Tiempo de espera de la red" + +#: ../../mod/admin.php:445 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" + +#: ../../mod/admin.php:446 +msgid "Delivery interval" +msgstr "Intervalo de entrega" + +#: ../../mod/admin.php:446 +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 "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." + +#: ../../mod/admin.php:447 +msgid "Deliveries per process" +msgstr "Intentos de envío por proceso" + +#: ../../mod/admin.php:447 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." + +#: ../../mod/admin.php:448 +msgid "Poll interval" +msgstr "Intervalo de sondeo" + +#: ../../mod/admin.php:448 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Retrasar el sondeo en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de transmisión." + +#: ../../mod/admin.php:449 +msgid "Maximum Load Average" +msgstr "Carga media máxima" + +#: ../../mod/admin.php:449 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carga máxima del sistema antes de que los procesos de transmisión y sondeo se hayan retardado - por defecto, 50." + +#: ../../mod/admin.php:450 +msgid "Expiration period in days for imported (matrix/network) content" +msgstr "Periodo de caducidad en días para el contenido importado (red)" + +#: ../../mod/admin.php:450 +msgid "0 for no expiration of imported content" +msgstr "0 para que no caduque el contenido importado" + +#: ../../mod/admin.php:498 +msgid "No server found" +msgstr "Servidor no encontrado" + +#: ../../mod/admin.php:505 ../../mod/admin.php:788 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:505 +msgid "for channel" +msgstr "por canal" + +#: ../../mod/admin.php:505 +msgid "on server" +msgstr "en el servidor" + +#: ../../mod/admin.php:505 +msgid "Status" +msgstr "Estado" + +#: ../../mod/admin.php:507 +msgid "Server" +msgstr "Servidor" + +#: ../../mod/admin.php:524 +msgid "Update has been marked successful" +msgstr "La actualización ha sido marcada como exitosa" + +#: ../../mod/admin.php:534 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." + +#: ../../mod/admin.php:537 +#, php-format +msgid "Update %s was successfully applied." +msgstr "La actualización de %s se ha realizado exitosamente." + +#: ../../mod/admin.php:541 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." + +#: ../../mod/admin.php:544 +#, php-format +msgid "Update function %s could not be found." +msgstr "No se encuentra la función de actualización de %s." + +#: ../../mod/admin.php:560 +msgid "No failed updates." +msgstr "No ha fallado ninguna actualización." + +#: ../../mod/admin.php:564 +msgid "Failed Updates" +msgstr "Han fallado las actualizaciones" + +#: ../../mod/admin.php:566 +msgid "Mark success (if update was manually applied)" +msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" + +#: ../../mod/admin.php:567 +msgid "Attempt to execute this update step automatically" +msgstr "Intentar ejecutar este paso de actualización automáticamente" + +#: ../../mod/admin.php:599 +msgid "Queue Statistics" +msgstr "Estadísticas de la cola" + +#: ../../mod/admin.php:600 +msgid "Total Entries" +msgstr "Total de entradas" + +#: ../../mod/admin.php:601 +msgid "Priority" +msgstr "Prioridad" + +#: ../../mod/admin.php:602 +msgid "Destination URL" +msgstr "Dirección de destino" + +#: ../../mod/admin.php:603 +msgid "Mark hub permanently offline" +msgstr "Marcar el servidor como permanentemente fuera de línea" + +#: ../../mod/admin.php:604 +msgid "Empty queue for this hub" +msgstr "Vaciar la cola para este servidor" + +#: ../../mod/admin.php:605 +msgid "Last known contact" +msgstr "Último contacto conocido" + +#: ../../mod/admin.php:641 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s cuenta bloqueada/desbloqueada" +msgstr[1] "%s cuenta bloqueada/desbloqueada" + +#: ../../mod/admin.php:649 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s cuentas eliminadas" +msgstr[1] "%s cuentas eliminadas" + +#: ../../mod/admin.php:685 +msgid "Account not found" +msgstr "Cuenta no encontrada" + +#: ../../mod/admin.php:697 +#, php-format +msgid "Account '%s' deleted" +msgstr "La cuenta '%s' ha sido eliminada" + +#: ../../mod/admin.php:705 +#, php-format +msgid "Account '%s' blocked" +msgstr "La cuenta '%s' ha sido bloqueada" + +#: ../../mod/admin.php:713 +#, php-format +msgid "Account '%s' unblocked" +msgstr "La cuenta '%s' ha sido desbloqueada" + +#: ../../mod/admin.php:775 ../../mod/admin.php:787 +msgid "Users" +msgstr "Usuarios" + +#: ../../mod/admin.php:777 ../../mod/admin.php:941 +msgid "select all" +msgstr "seleccionar todo" + +#: ../../mod/admin.php:778 +msgid "User registrations waiting for confirm" +msgstr "Registros de usuario en espera de aprobación" + +#: ../../mod/admin.php:779 +msgid "Request date" +msgstr "Fecha de solicitud" + +#: ../../mod/admin.php:780 +msgid "No registrations." +msgstr "Sin registros." + +#: ../../mod/admin.php:782 +msgid "Deny" +msgstr "Rechazar" + +#: ../../mod/admin.php:788 +msgid "Register date" +msgstr "Fecha de registro" + +#: ../../mod/admin.php:788 +msgid "Last login" +msgstr "Último acceso" + +#: ../../mod/admin.php:788 +msgid "Expires" +msgstr "Caduca" + +#: ../../mod/admin.php:788 +msgid "Service Class" +msgstr "Clase de servicio" + +#: ../../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 "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" + +#: ../../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 "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" + +#: ../../mod/admin.php:827 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s canales censurados/no censurados" +msgstr[1] "%s canales censurados/no censurados" + +#: ../../mod/admin.php:836 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s código permitido/no permitido al canal" +msgstr[1] "%s código permitido/no permitido al canal" + +#: ../../mod/admin.php:843 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canales eliminados" +msgstr[1] "%s canales eliminados" + +#: ../../mod/admin.php:863 +msgid "Channel not found" +msgstr "Canal no encontrado" + +#: ../../mod/admin.php:874 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Canal '%s' eliminado" + +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' censored" +msgstr "Canal '%s' censurado" + +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Canal '%s' no censurado" + +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Código permitido al canal '%s'" + +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Código no permitido al canal '%s'" + +#: ../../mod/admin.php:943 +msgid "Censor" +msgstr "Censurar" + +#: ../../mod/admin.php:944 +msgid "Uncensor" +msgstr "No censurar" + +#: ../../mod/admin.php:945 +msgid "Allow Code" +msgstr "Permitir código" + +#: ../../mod/admin.php:946 +msgid "Disallow Code" +msgstr "No permitir código" + +#: ../../mod/admin.php:948 +msgid "UID" +msgstr "UID" + +#: ../../mod/admin.php:948 ../../mod/profiles.php:447 +msgid "Address" +msgstr "Dirección" + +#: ../../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 "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" + +#: ../../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 "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" + +#: ../../mod/admin.php:991 +#, php-format +msgid "Plugin %s disabled." +msgstr "Extensión %s desactivada." + +#: ../../mod/admin.php:995 +#, php-format +msgid "Plugin %s enabled." +msgstr "Extensión %s activada." + +#: ../../mod/admin.php:1005 ../../mod/admin.php:1203 +msgid "Disable" +msgstr "Desactivar" + +#: ../../mod/admin.php:1008 ../../mod/admin.php:1205 +msgid "Enable" +msgstr "Activar" + +#: ../../mod/admin.php:1032 ../../mod/admin.php:1232 +msgid "Toggle" +msgstr "Cambiar" + +#: ../../mod/admin.php:1040 ../../mod/admin.php:1242 +msgid "Author: " +msgstr "Autor:" + +#: ../../mod/admin.php:1041 ../../mod/admin.php:1243 +msgid "Maintainer: " +msgstr "Mantenedor:" + +#: ../../mod/admin.php:1168 +msgid "No themes found." +msgstr "No se han encontrado temas." + +#: ../../mod/admin.php:1224 +msgid "Screenshot" +msgstr "Instantánea de pantalla" + +#: ../../mod/admin.php:1270 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: ../../mod/admin.php:1271 +msgid "[Unsupported]" +msgstr "[No soportado]" + +#: ../../mod/admin.php:1295 +msgid "Log settings updated." +msgstr "Actualizado el informe de configuraciones." + +#: ../../mod/admin.php:1352 +msgid "Clear" +msgstr "Vaciar" + +#: ../../mod/admin.php:1358 +msgid "Debugging" +msgstr "Depuración" + +#: ../../mod/admin.php:1359 +msgid "Log file" +msgstr "Fichero de informe" + +#: ../../mod/admin.php:1359 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio de instalación de Hubzilla." + +#: ../../mod/admin.php:1360 +msgid "Log level" +msgstr "Nivel de depuración" + +#: ../../mod/admin.php:1406 +msgid "New Profile Field" +msgstr "Nuevo campo en el perfil" + +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "Field nickname" +msgstr "Alias del campo" + +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "System name of field" +msgstr "Nombre del campo en el sistema" + +#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 +msgid "Input type" +msgstr "Tipo de entrada" + +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Field Name" +msgstr "Nombre del campo" + +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Label on profile pages" +msgstr "Etiqueta a mostrar en la página del perfil" + +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Help text" +msgstr "Texto de ayuda" + +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Additional info (optional)" +msgstr "Información adicional (opcional)" + +#: ../../mod/admin.php:1420 +msgid "Field definition not found" +msgstr "Definición del campo no encontrada" + +#: ../../mod/admin.php:1426 +msgid "Edit Profile Field" +msgstr "Modificar el campo del perfil" + +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "Aplicación instalada." + +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Aplicación con errores" + +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Código incorporado" + +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "Modificar la aplicación" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "Crear una aplicación" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Nombre de la aplicación" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Ubicación (URL) de la aplicación" + +#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "Descripción" + +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "Dirección del icono que se va a utilizar para esta foto" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versión" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Precio de la aplicación" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Ubicación (URL) donde adquirir la aplicación" + +#: ../../mod/menu.php:45 +msgid "Unable to update menu." +msgstr "No se puede actualizar el menú." + +#: ../../mod/menu.php:56 +msgid "Unable to create menu." +msgstr "No se puede crear el menú." + +#: ../../mod/menu.php:94 ../../mod/menu.php:106 +msgid "Menu Name" +msgstr "Nombre del menú" + +#: ../../mod/menu.php:94 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nombre único (no será visible en la página web) - requerido" + +#: ../../mod/menu.php:95 ../../mod/menu.php:107 +msgid "Menu Title" +msgstr "Título del menú" + +#: ../../mod/menu.php:95 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible en la página web - no ponga nada si no desea un título" + +#: ../../mod/menu.php:96 +msgid "Allow Bookmarks" +msgstr "Permitir marcadores" + +#: ../../mod/menu.php:96 ../../mod/menu.php:153 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú se puede usar para guardar marcadores" + +#: ../../mod/menu.php:97 ../../mod/menu.php:155 +msgid "Submit and proceed" +msgstr "Enviar y proceder" + +#: ../../mod/menu.php:109 +msgid "Drop" +msgstr "Eliminar" + +#: ../../mod/menu.php:113 +msgid "Bookmarks allowed" +msgstr "Marcadores permitidos" + +#: ../../mod/menu.php:115 +msgid "Delete this menu" +msgstr "Borrar este menú" + +#: ../../mod/menu.php:116 ../../mod/menu.php:150 +msgid "Edit menu contents" +msgstr "Editar los contenidos del menú" + +#: ../../mod/menu.php:117 +msgid "Edit this menu" +msgstr "Modificar este menú" + +#: ../../mod/menu.php:132 +msgid "Menu could not be deleted." +msgstr "El menú no puede ser eliminado." + +#: ../../mod/menu.php:145 +msgid "Edit Menu" +msgstr "Modificar el menú" + +#: ../../mod/menu.php:149 +msgid "Add or remove entries to this menu" +msgstr "Añadir o quitar entradas en este menú" + +#: ../../mod/menu.php:151 +msgid "Menu name" +msgstr "Nombre del menú" + +#: ../../mod/menu.php:151 +msgid "Must be unique, only seen by you" +msgstr "Debe ser único, solo será visible para usted" + +#: ../../mod/menu.php:152 +msgid "Menu title" +msgstr "Título del menú" + +#: ../../mod/menu.php:152 +msgid "Menu title as seen by others" +msgstr "El título del menú tal como será visto por los demás" + +#: ../../mod/menu.php:153 +msgid "Allow bookmarks" +msgstr "Permitir marcadores" + +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema" + +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" +msgstr "Notificaciones de sistema" + +#: ../../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/new_channel.php:109 +msgid "Add a Channel" +msgstr "Añadir un canal" + +#: ../../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 "Un canal está formado por su propia colección de páginas web relacionadas. Se puede utilizar para almacenar los perfiles sociales de la red, blogs, grupos de conversación y foros, páginas de famosos y mucho más. Puede crear tantos canales como su proveedor de servicio permita." + +#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Nombre del canal" + +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Ejemplos: \"Juan García\", \"Isabel y sus caballos\", \"Fútbol\", \"Grupo de parapente\" " + +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Elija un alias corto" + +#: ../../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 "Su alias podrá usarse para crear una dirección de canal fácilmente memorizable (como una dirección de correo electrónico) que puede ser compartido con otros." + +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "O importar un canal existente de otro lugar" + +#: ../../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 "Elija el tipo de canal (como red social o foro de discusión) y la privacidad que requiera, así podremos seleccionar el mejor conjunto de permisos para usted" + +#: ../../mod/new_channel.php:119 +msgid "Channel Type" +msgstr "Tipo de canal" + +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "Leer más sobre los roles" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Petición inválida del identificador." + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Descartar" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Formato actualizado" + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripción de Páginas" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Formato no encontrado" + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Nombre del módulo:" + +#: ../../mod/pdledit.php:55 +msgid "Layout Help" +msgstr "Ayuda para el diseño de la página" + +#: ../../mod/subthread.php:102 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s está siguiendo %2$s de %3$s" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "No se ha encontrado una cuenta válida." + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 +#, php-format +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Se ha solicitado restablecer la contraseña en %s" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." + +#: ../../mod/lostpass.php:86 ../../boot.php:1511 +msgid "Password Reset" +msgstr "Restablecer la contraseña" + +#: ../../mod/lostpass.php:87 +msgid "Your password has been reset as requested." +msgstr "Su contraseña ha sido restablecida según lo solicitó." + +#: ../../mod/lostpass.php:88 +msgid "Your new password is" +msgstr "Su nueva contraseña es" + +#: ../../mod/lostpass.php:89 +msgid "Save or copy your new password - and then" +msgstr "Guarde o copie su nueva contraseña - y después" + +#: ../../mod/lostpass.php:90 +msgid "click here to login" +msgstr "pulse aquí para conectarse" + +#: ../../mod/lostpass.php:91 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." + +#: ../../mod/lostpass.php:108 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" + +#: ../../mod/lostpass.php:123 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" + +#: ../../mod/lostpass.php:124 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." + +#: ../../mod/lostpass.php:125 +msgid "Email Address" +msgstr "Dirección de correo electrónico" + +#: ../../mod/lostpass.php:126 +msgid "Reset" +msgstr "Reiniciar" + +#: ../../mod/photos.php:79 +msgid "Page owner information could not be retrieved." +msgstr "La información del propietario de la página no pudo ser recuperada." + +#: ../../mod/photos.php:100 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: ../../mod/photos.php:127 +msgid "Delete Album" +msgstr "Borrar álbum" + +#: ../../mod/photos.php:171 ../../mod/photos.php:997 +msgid "Delete Photo" +msgstr "Borrar foto" + +#: ../../mod/photos.php:491 +msgid "No photos selected" +msgstr "No hay fotos seleccionadas" + +#: ../../mod/photos.php:540 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: ../../mod/photos.php:579 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." + +#: ../../mod/photos.php:582 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB de almacenamiento de fotos utilizado." + +#: ../../mod/photos.php:610 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: ../../mod/photos.php:614 +msgid "Enter an album name" +msgstr "Introducir un nombre de álbum" + +#: ../../mod/photos.php:615 +msgid "or select an existing album (doubleclick)" +msgstr "o seleccionar uno existente (doble click)" + +#: ../../mod/photos.php:616 +msgid "Create a status post for this upload" +msgstr "Crear una entrada de estado para esta subida" + +#: ../../mod/photos.php:643 +msgid "Album name could not be decoded" +msgstr "El nombre del álbum no ha podido ser descifrado" + +#: ../../mod/photos.php:687 ../../mod/photos.php:1224 +#: ../../mod/photos.php:1241 +msgid "Contact Photos" +msgstr "Fotos de contacto" + +#: ../../mod/photos.php:715 +msgid "Show Newest First" +msgstr "Mostrar lo más reciente primero" + +#: ../../mod/photos.php:717 +msgid "Show Oldest First" +msgstr "Mostrar lo más antiguo primero" + +#: ../../mod/photos.php:741 ../../mod/photos.php:1274 +msgid "View Photo" +msgstr "Ver foto" + +#: ../../mod/photos.php:770 +msgid "Edit Album" +msgstr "Editar álbum" + +#: ../../mod/photos.php:815 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." + +#: ../../mod/photos.php:817 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: ../../mod/photos.php:875 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" + +#: ../../mod/photos.php:882 +msgid "Private Photo" +msgstr "Foto privada" + +#: ../../mod/photos.php:893 ../../mod/events.php:528 +msgid "Previous" +msgstr "Anterior" + +#: ../../mod/photos.php:897 +msgid "View Full Size" +msgstr "Ver tamaño completo" + +#: ../../mod/photos.php:902 ../../mod/events.php:529 ../../mod/setup.php:285 +msgid "Next" +msgstr "Siguiente" + +#: ../../mod/photos.php:942 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Eliminar" + +#: ../../mod/photos.php:976 +msgid "Edit photo" +msgstr "Editar foto" + +#: ../../mod/photos.php:978 +msgid "Rotate CW (right)" +msgstr "Girar CW (a la derecha)" + +#: ../../mod/photos.php:979 +msgid "Rotate CCW (left)" +msgstr "Girar CCW (a la izquierda)" + +#: ../../mod/photos.php:982 +msgid "Enter a new album name" +msgstr "Introducir un nuevo nombre de álbum" + +#: ../../mod/photos.php:983 +msgid "or select an existing one (doubleclick)" +msgstr "o seleccionar uno (doble click) existente" + +#: ../../mod/photos.php:986 +msgid "Caption" +msgstr "Título" + +#: ../../mod/photos.php:988 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" + +#: ../../mod/photos.php:992 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" + +#: ../../mod/photos.php:995 +msgid "Flag as adult in album view" +msgstr "Marcar como \"solo para adultos\" en el álbum" + +#: ../../mod/photos.php:1187 +msgid "In This Photo:" +msgstr "En esta foto:" + +#: ../../mod/photos.php:1192 +msgid "Map" +msgstr "Mapa" + +#: ../../mod/photos.php:1280 +msgid "View Album" +msgstr "Ver álbum" + +#: ../../mod/photos.php:1303 +msgid "Recent Photos" +msgstr "Fotos recientes" + +#: ../../mod/dav.php:121 +msgid "$Projectname channel" +msgstr "Canal $Projectname" + +#: ../../mod/events.php:21 +msgid "Calendar entries imported." +msgstr "Entradas de calendario importadas." + +#: ../../mod/events.php:23 +msgid "No calendar entries found." +msgstr "No se han encontrado entradas de calendario." + +#: ../../mod/events.php:96 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de que haya comenzado." + +#: ../../mod/events.php:98 ../../mod/events.php:107 ../../mod/events.php:127 +msgid "Unable to generate preview." +msgstr "No se puede crear la vista previa." + +#: ../../mod/events.php:105 +msgid "Event title and start time are required." +msgstr "Se requieren el título del evento y su hora de inicio." + +#: ../../mod/events.php:125 ../../mod/events.php:250 +msgid "Event not found." +msgstr "Evento no encontrado." + +#: ../../mod/events.php:448 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:470 +msgid "Edit event" +msgstr "Editar evento" + +#: ../../mod/events.php:472 +msgid "Delete event" +msgstr "Borrar evento" + +#: ../../mod/events.php:506 +msgid "calendar" +msgstr "calendario" + +#: ../../mod/events.php:527 +msgid "Create New Event" +msgstr "Crear un nuevo evento" + +#: ../../mod/events.php:530 +msgid "Export" +msgstr "Exportar" + +#: ../../mod/events.php:533 +msgid "Import" +msgstr "Importar" + +#: ../../mod/events.php:564 +msgid "Event removed" +msgstr "Evento borrado" + +#: ../../mod/events.php:567 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" + +#: ../../mod/events.php:681 +msgid "Event details" +msgstr "Detalles del evento" + +#: ../../mod/events.php:682 +msgid "Starting date and Title are required." +msgstr "Se requieren fecha y título." + +#: ../../mod/events.php:684 +msgid "Categories (comma-separated list)" +msgstr "Categorías (lista separada por comas)" + +#: ../../mod/events.php:686 +msgid "Event Starts:" +msgstr "Inicio del evento:" + +#: ../../mod/events.php:693 +msgid "Finish date/time is not known or not relevant" +msgstr "La fecha / hora de finalización no se conocen o no son relevantes" + +#: ../../mod/events.php:695 +msgid "Event Finishes:" +msgstr "Finalización del evento:" + +#: ../../mod/events.php:697 ../../mod/events.php:698 +msgid "Adjust for viewer timezone" +msgstr "Ajustar para obtener el visor de zona horaria" + +#: ../../mod/events.php:697 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." + +#: ../../mod/events.php:703 +msgid "Title:" +msgstr "Título:" + +#: ../../mod/events.php:705 +msgid "Share this event" +msgstr "Compartir este evento" + +#: ../../mod/impel.php:192 #, php-format msgid "%s element installed" msgstr "%s elemento instalado" -#: ../../mod/impel.php:194 +#: ../../mod/impel.php:195 #, php-format msgid "%s element installation failed" msgstr "Elemento con instalación fallida: %s" +#: ../../mod/probe.php:24 ../../mod/probe.php:30 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Al intentar obtener la dirección, retorna el error: %1$s" + +#: ../../mod/match.php:22 +msgid "Profile Match" +msgstr "Perfil compatible" + +#: ../../mod/match.php:31 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." + +#: ../../mod/match.php:63 +msgid "is interested in:" +msgstr "está interesado en:" + +#: ../../mod/match.php:70 +msgid "No matches" +msgstr "No se han encontrado perfiles compatibles" + +#: ../../mod/profile_photo.php:111 +msgid "Image uploaded but image cropping failed." +msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " + +#: ../../mod/profile_photo.php:165 +msgid "Image resize failed." +msgstr "El ajuste del tamaño de la imagen ha fallado." + +#: ../../mod/profile_photo.php:209 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." + +#: ../../mod/profile_photo.php:247 +msgid "Image upload failed." +msgstr "Subida de imagen fallida." + +#: ../../mod/profile_photo.php:266 +msgid "Unable to process image." +msgstr "No ha sido posible procesar la imagen." + +#: ../../mod/profile_photo.php:294 +msgid "female" +msgstr "mujer" + +#: ../../mod/profile_photo.php:295 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s ha actualizado su %2$s" + +#: ../../mod/profile_photo.php:296 +msgid "male" +msgstr "hombre" + +#: ../../mod/profile_photo.php:297 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s ha actualizado su %2$s" + +#: ../../mod/profile_photo.php:299 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s ha actualizado sus %2$s" + +#: ../../mod/profile_photo.php:301 +msgid "profile photo" +msgstr "foto del perfil" + +#: ../../mod/profile_photo.php:365 ../../mod/profile_photo.php:406 +msgid "Photo not available." +msgstr "Foto no disponible." + +#: ../../mod/profile_photo.php:447 +msgid "Upload File:" +msgstr "Subir fichero:" + +#: ../../mod/profile_photo.php:448 +msgid "Select a profile:" +msgstr "Seleccionar un perfil:" + +#: ../../mod/profile_photo.php:449 +msgid "Upload Profile Photo" +msgstr "Subir foto del perfil" + +#: ../../mod/profile_photo.php:454 ../../mod/settings.php:972 +msgid "or" +msgstr "o" + +#: ../../mod/profile_photo.php:454 +msgid "skip this step" +msgstr "Omitir este paso" + +#: ../../mod/profile_photo.php:454 +msgid "select a photo from your photo albums" +msgstr "Seleccione una foto de sus álbumes de fotos" + +#: ../../mod/profile_photo.php:470 +msgid "Crop Image" +msgstr "Recortar imagen" + +#: ../../mod/profile_photo.php:471 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." + +#: ../../mod/profile_photo.php:473 +msgid "Done Editing" +msgstr "Edición completada" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Canal añadido." + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Etiqueta eliminada." + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta del elemento." + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Seleccionar una etiqueta para eliminar:" + +#: ../../mod/ratings.php:69 +msgid "No ratings" +msgstr "Ninguna valoración" + +#: ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Valoraciones" + +#: ../../mod/ratings.php:100 +msgid "Rating: " +msgstr "Valoración:" + +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Sitio web:" + +#: ../../mod/ratings.php:103 +msgid "Description: " +msgstr "Descripción:" + +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "Título de página" + +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." + +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Las contraseñas no coinciden." + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Su registro está pendiente de aprobación por el propietario del sitio." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Su registro no puede ser procesado." + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "El registro en este servidor/hub está sometido a aprobación previa." + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Inscribirse en un servidor/hub afiliado" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Términos del servicio" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Acepto los %s de este sitio" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Para registrarse en este sitio es necesaria una invitación." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Por favor, introduzca el código de su invitación" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Su dirección de correo electrónico" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Elija una contraseña" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Por favor, vuelva a escribir su contraseña" + +#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 +msgid "Block Name" +msgstr "Nombre del bloque" + +#: ../../mod/blocks.php:149 +msgid "Block Title" +msgstr "Título del bloque" + +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." + +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Eliminar esta cuenta" + +#: ../../mod/removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." + +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Remover esta cuenta, todos sus canales y clones de la red" + +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" + +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:697 +msgid "Remove Account" +msgstr "Eliminar cuenta" + +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "No se han encontrado restricciones sobre esta clase de servicio." + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Elemento no disponible" + +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "El servidor de este directorio necesita un \"token\" de acceso" + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado." + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Fuente creada." + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Fuente actualizada." + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Gestionar contenido de origen remoto para su canal." + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Nueva fuente" + +#: ../../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 "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes." + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importar solo contenido que contenga estas palabras (una por línea)" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Dejar en blanco para importar todo el contenido público" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Fuente no encontrada" + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Editar fuente" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Eliminar fuente" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Fuente eliminada" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Imposible eliminar la fuente." + +#: ../../mod/lockview.php:37 +msgid "Remote privacy information not available." +msgstr "La información privada remota no está disponible." + +#: ../../mod/lockview.php:58 +msgid "Visible to:" +msgstr "Visible para:" + +#: ../../mod/acl.php:222 +msgid "network" +msgstr "red" + +#: ../../mod/acl.php:232 +msgid "RSS" +msgstr "RSS" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Por favor, inicie sesión." + +#: ../../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 "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." + +#: ../../mod/rmagic.php:40 +msgid "The error message was:" +msgstr "El mensaje de error fue:" + +#: ../../mod/rmagic.php:44 +msgid "Authentication failed." +msgstr "Falló la autenticación." + +#: ../../mod/rmagic.php:84 +msgid "Remote Authentication" +msgstr "Acceso desde su servidor" + +#: ../../mod/rmagic.php:85 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" + +#: ../../mod/rmagic.php:86 +msgid "Authenticate" +msgstr "Acceder" + +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." + +#: ../../mod/siteinfo.php:111 +#, php-format +msgid "Version %s" +msgstr "Versión %s" + +#: ../../mod/siteinfo.php:132 +msgid "Installed plugins/addons/apps:" +msgstr "Extensiones/Aplicaciones instaladas:" + +#: ../../mod/siteinfo.php:145 +msgid "No installed plugins/addons/apps" +msgstr "Extensiones/Aplicaciones no instaladas:" + +#: ../../mod/siteinfo.php:158 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." + +#: ../../mod/siteinfo.php:160 +msgid "Tag: " +msgstr "Etiqueta:" + +#: ../../mod/siteinfo.php:162 +msgid "Last background fetch: " +msgstr "Última actualización en segundo plano:" + +#: ../../mod/siteinfo.php:164 +msgid "Current load average: " +msgstr "Carga media actual:" + +#: ../../mod/siteinfo.php:167 +msgid "Running at web location" +msgstr "Corriendo en el sitio web" + +#: ../../mod/siteinfo.php:168 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." + +#: ../../mod/siteinfo.php:169 +msgid "Bug reports and issues: please visit" +msgstr "Informes de errores e incidencias: por, favor visite" + +#: ../../mod/siteinfo.php:171 +msgid "$projectname issues" +msgstr "Problemas en $projectname" + +#: ../../mod/siteinfo.php:172 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" + +#: ../../mod/siteinfo.php:174 +msgid "Site Administrators" +msgstr "Administradores del sitio" + +#: ../../mod/import.php:27 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Su paquete de servicios solo permite %d canales." + +#: ../../mod/import.php:65 ../../mod/import_items.php:38 +msgid "Nothing to import." +msgstr "No hay nada para importar." + +#: ../../mod/import.php:89 ../../mod/import_items.php:62 +msgid "Unable to download data from old server" +msgstr "No se han podido descargar datos de su antiguo servidor" + +#: ../../mod/import.php:95 ../../mod/import_items.php:68 +msgid "Imported file is empty." +msgstr "El fichero importado está vacío." + +#: ../../mod/import.php:115 ../../mod/import_items.php:82 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." + +#: ../../mod/import.php:148 +msgid "No channel. Import failed." +msgstr "No hay canal. La importación ha fallado" + +#: ../../mod/import.php:499 +msgid "You must be logged in to use this feature." +msgstr "Debe estar registrado para poder usar esta funcionalidad." + +#: ../../mod/import.php:504 +msgid "Import Channel" +msgstr "Importar canal" + +#: ../../mod/import.php:505 +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 "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." + +#: ../../mod/import.php:506 ../../mod/import_items.php:121 +msgid "File to Upload" +msgstr "Fichero para subir" + +#: ../../mod/import.php:507 +msgid "Or provide the old server/hub details" +msgstr "O proporcione los detalles de su antiguo servidor/hub" + +#: ../../mod/import.php:508 +msgid "Your old identity address (xyz@example.com)" +msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" + +#: ../../mod/import.php:509 +msgid "Your old login email address" +msgstr "Su antigua dirección de correo electrónico" + +#: ../../mod/import.php:510 +msgid "Your old login password" +msgstr "Su antigua contraseña" + +#: ../../mod/import.php:511 +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 "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua ubicación debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." + +#: ../../mod/import.php:512 +msgid "Make this hub my primary location" +msgstr "Convertir este servidor en mi ubicación primaria" + +#: ../../mod/import.php:513 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" + +#: ../../mod/import.php:514 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." + +#: ../../mod/thing.php:111 +msgid "Thing updated" +msgstr "Elemento actualizado." + +#: ../../mod/thing.php:163 +msgid "Object store: failed" +msgstr "Guardar objeto: ha fallado" + +#: ../../mod/thing.php:167 +msgid "Thing added" +msgstr "Elemento añadido" + +#: ../../mod/thing.php:193 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:256 +msgid "Show Thing" +msgstr "Mostrar elemento" + +#: ../../mod/thing.php:263 +msgid "item not found." +msgstr "elemento no encontrado." + +#: ../../mod/thing.php:296 +msgid "Edit Thing" +msgstr "Editar elemento" + +#: ../../mod/thing.php:298 ../../mod/thing.php:348 +msgid "Select a profile" +msgstr "Seleccionar un perfil" + +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Post an activity" +msgstr "Publicar una actividad" + +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Only sends to viewers of the applicable profile" +msgstr "Sólo enviar a espectadores del perfil pertinente." + +#: ../../mod/thing.php:304 ../../mod/thing.php:353 +msgid "Name of thing e.g. something" +msgstr "Nombre del elemento, p. ej.:. \"algo\"" + +#: ../../mod/thing.php:306 ../../mod/thing.php:354 +msgid "URL of thing (optional)" +msgstr "Dirección del elemento (opcional)" + +#: ../../mod/thing.php:308 ../../mod/thing.php:355 +msgid "URL for photo of thing (optional)" +msgstr "Dirección para la foto o elemento (opcional)" + +#: ../../mod/thing.php:346 +msgid "Add Thing to your Profile" +msgstr "Añadir alguna cosa a su perfil" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Se ha superado el límite máximo de invitaciones." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es una dirección de correo electrónico válida. " + +#: ../../mod/invite.php:76 +msgid "Please join us on $Projectname" +msgstr "Únase a nosotros en $Projectname" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Falló el envío del mensaje." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensajes enviados." +msgstr[1] "%d mensajes enviados." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "No tiene más invitaciones disponibles" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Introduzca las direcciones de correo electrónica, una por línea:" + +#: ../../mod/invite.php:132 +msgid "Please join my community on $Projectname." +msgstr "Por favor, únase a mi comunidad en $Projectname." + +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Debe proporcionar este código de invitación:" + +#: ../../mod/invite.php:135 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Regístrese en cualquier lugar de $Projectname (están todos interconectados)" + +#: ../../mod/invite.php:137 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." + +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "o visite" + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Pulse [conectar]" + +#: ../../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 "[Contenido incorporado - recargue la página para poder verlo]" + +#: ../../mod/viewsrc.php:40 +msgid "Source of Item" +msgstr "Origen del elemento" + +#: ../../mod/settings.php:76 +msgid "Name is required" +msgstr "El nombre es obligatorio" + +#: ../../mod/settings.php:80 +msgid "Key and Secret are required" +msgstr "Clave y Secreto son obligatorios" + +#: ../../mod/settings.php:231 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." + +#: ../../mod/settings.php:235 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." + +#: ../../mod/settings.php:249 +msgid "Password changed." +msgstr "Contraseña cambiada." + +#: ../../mod/settings.php:251 +msgid "Password update failed. Please try again." +msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." + +#: ../../mod/settings.php:265 +msgid "Not valid email." +msgstr "Correo electrónico no válido." + +#: ../../mod/settings.php:268 +msgid "Protected email address. Cannot change to that email." +msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." + +#: ../../mod/settings.php:277 +msgid "System failure storing new email. Please try again." +msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." + +#: ../../mod/settings.php:518 +msgid "Settings updated." +msgstr "Ajustes actualizados." + +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +#: ../../mod/settings.php:644 +msgid "Add application" +msgstr "Añadir aplicación" + +#: ../../mod/settings.php:585 +msgid "Name of application" +msgstr "Nombre de la aplicación" + +#: ../../mod/settings.php:586 ../../mod/settings.php:612 +msgid "Consumer Key" +msgstr "Clave de consumidor" + +#: ../../mod/settings.php:586 ../../mod/settings.php:587 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" + +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +msgid "Consumer Secret" +msgstr "Clave secreta de consumidor" + +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +msgid "Redirect" +msgstr "Redirigir" + +#: ../../mod/settings.php:588 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" + +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Icon url" +msgstr "Dirección del icono" + +#: ../../mod/settings.php:589 +msgid "Optional" +msgstr "Opcional" + +#: ../../mod/settings.php:600 +msgid "You can't edit this application." +msgstr "No puede modificar esta aplicación." + +#: ../../mod/settings.php:643 +msgid "Connected Apps" +msgstr "Aplicaciones conectadas" + +#: ../../mod/settings.php:647 +msgid "Client key starts with" +msgstr "La clave de cliente empieza por" + +#: ../../mod/settings.php:648 +msgid "No name" +msgstr "Sin nombre" + +#: ../../mod/settings.php:649 +msgid "Remove authorization" +msgstr "Eliminar autorización" + +#: ../../mod/settings.php:662 +msgid "No feature settings configured" +msgstr "No se ha establecido la configuración de características" + +#: ../../mod/settings.php:669 +msgid "Feature/Addon Settings" +msgstr "Ajustes de la característica o el complemento" + +#: ../../mod/settings.php:692 +msgid "Account Settings" +msgstr "Configuración de la cuenta" + +#: ../../mod/settings.php:693 +msgid "Enter New Password:" +msgstr "Introduzca la nueva contraseña:" + +#: ../../mod/settings.php:694 +msgid "Confirm New Password:" +msgstr "Confirme la nueva contraseña:" + +#: ../../mod/settings.php:694 +msgid "Leave password fields blank unless changing" +msgstr "Dejar en blanco los campos de contraseña a menos que cambie" + +#: ../../mod/settings.php:696 ../../mod/settings.php:1027 +msgid "Email Address:" +msgstr "Dirección de correo electrónico:" + +#: ../../mod/settings.php:698 +msgid "Remove this account including all its channels" +msgstr "Eliminar esta cuenta incluyendo todos sus canales" + +#: ../../mod/settings.php:714 +msgid "Off" +msgstr "Desactivado" + +#: ../../mod/settings.php:714 +msgid "On" +msgstr "Activado" + +#: ../../mod/settings.php:721 +msgid "Additional Features" +msgstr "Características adicionales" + +#: ../../mod/settings.php:745 +msgid "Connector Settings" +msgstr "Configuración del conector" + +#: ../../mod/settings.php:784 +msgid "No special theme for mobile devices" +msgstr "Sin tema especial para dispositivos móviles" + +#: ../../mod/settings.php:787 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" + +#: ../../mod/settings.php:826 +msgid "Display Settings" +msgstr "Ajustes de visualización" + +#: ../../mod/settings.php:827 +msgid "Theme Settings" +msgstr "Ajustes del tema" + +#: ../../mod/settings.php:828 +msgid "Custom Theme Settings" +msgstr "Ajustes personalizados del tema" + +#: ../../mod/settings.php:829 +msgid "Content Settings" +msgstr "Ajustes del contenido" + +#: ../../mod/settings.php:835 +msgid "Display Theme:" +msgstr "Tema gráfico del perfil:" + +#: ../../mod/settings.php:836 +msgid "Mobile Theme:" +msgstr "Tema para el móvil:" + +#: ../../mod/settings.php:837 +msgid "Enable user zoom on mobile devices" +msgstr "Habilitar zoom de usuario en dispositivos móviles" + +#: ../../mod/settings.php:838 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" + +#: ../../mod/settings.php:838 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínimo de 10 segundos, sin máximo" + +#: ../../mod/settings.php:839 +msgid "Maximum number of conversations to load at any time:" +msgstr "Máximo número de conversaciones a cargar en cualquier momento:" + +#: ../../mod/settings.php:839 +msgid "Maximum of 100 items" +msgstr "Máximo de 100 elementos" + +#: ../../mod/settings.php:840 +msgid "Show emoticons (smilies) as images" +msgstr "Mostrar emoticonos (smilies) como imágenes" + +#: ../../mod/settings.php:841 +msgid "Link post titles to source" +msgstr "Enlazar título de la publicación a la fuente original" + +#: ../../mod/settings.php:842 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editor de diseño de página del sistema - (avanzado)" + +#: ../../mod/settings.php:845 +msgid "Use blog/list mode on channel page" +msgstr "Usar modo blog/lista en la página de inicio del canal" + +#: ../../mod/settings.php:845 ../../mod/settings.php:846 +msgid "(comments displayed separately)" +msgstr "(comentarios mostrados de forma separada)" + +#: ../../mod/settings.php:846 +msgid "Use blog/list mode on matrix page" +msgstr "Mostrar la red en modo blog/lista" + +#: ../../mod/settings.php:847 +msgid "Channel page max height of content (in pixels)" +msgstr "Altura máxima del contenido de la página del canal (en píxeles)" + +#: ../../mod/settings.php:847 ../../mod/settings.php:848 +msgid "click to expand content exceeding this height" +msgstr "Pulsar para expandir el contenido que exceda de esta altura" + +#: ../../mod/settings.php:848 +msgid "Matrix page max height of content (in pixels)" +msgstr "Altura máxima del contenido de la página de su red (en píxeles)" + +#: ../../mod/settings.php:882 +msgid "Nobody except yourself" +msgstr "Nadie excepto usted" + +#: ../../mod/settings.php:883 +msgid "Only those you specifically allow" +msgstr "Solo aquellos a los que usted permita explícitamente" + +#: ../../mod/settings.php:884 +msgid "Approved connections" +msgstr "Conexiones aprobadas" + +#: ../../mod/settings.php:885 +msgid "Any connections" +msgstr "Cualquier conexión" + +#: ../../mod/settings.php:886 +msgid "Anybody on this website" +msgstr "Cualquiera en este sitio web" + +#: ../../mod/settings.php:887 +msgid "Anybody in this network" +msgstr "Cualquiera en esta red" + +#: ../../mod/settings.php:888 +msgid "Anybody authenticated" +msgstr "Cualquiera que esté autenticado" + +#: ../../mod/settings.php:889 +msgid "Anybody on the internet" +msgstr "Cualquiera en internet" + +#: ../../mod/settings.php:963 +msgid "Publish your default profile in the network directory" +msgstr "Publicar su perfil principal en el directorio de la red" + +#: ../../mod/settings.php:968 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" + +#: ../../mod/settings.php:977 +msgid "Your channel address is" +msgstr "Su dirección de canal es" + +#: ../../mod/settings.php:1018 +msgid "Channel Settings" +msgstr "Ajustes del canal" + +#: ../../mod/settings.php:1025 +msgid "Basic Settings" +msgstr "Configuración básica" + +#: ../../mod/settings.php:1028 +msgid "Your Timezone:" +msgstr "Su zona horaria:" + +#: ../../mod/settings.php:1029 +msgid "Default Post Location:" +msgstr "Ubicación de publicación predeterminada:" + +#: ../../mod/settings.php:1029 +msgid "Geographical location to display on your posts" +msgstr "Ubicación geográfica que debe mostrarse en sus publicaciones" + +#: ../../mod/settings.php:1030 +msgid "Use Browser Location:" +msgstr "Usar la localización del navegador:" + +#: ../../mod/settings.php:1032 +msgid "Adult Content" +msgstr "Contenido solo para adultos" + +#: ../../mod/settings.php:1032 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" + +#: ../../mod/settings.php:1034 +msgid "Security and Privacy Settings" +msgstr "Configuración de seguridad y privacidad" + +#: ../../mod/settings.php:1036 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" + +#: ../../mod/settings.php:1038 +msgid "Hide my online presence" +msgstr "Ocultar mi presencia en línea" + +#: ../../mod/settings.php:1038 +msgid "Prevents displaying in your profile that you are online" +msgstr "Evitar mostrar en su perfil que está en línea" + +#: ../../mod/settings.php:1040 +msgid "Simple Privacy Settings:" +msgstr "Configuración de privacidad sencilla:" + +#: ../../mod/settings.php:1041 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" + +#: ../../mod/settings.php:1042 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" + +#: ../../mod/settings.php:1043 +msgid "Private - default private, never open or public" +msgstr "Privado - por defecto, privado, nunca abierto o público" + +#: ../../mod/settings.php:1044 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" + +#: ../../mod/settings.php:1046 +msgid "Allow others to tag your posts" +msgstr "Permitir a otros etiquetar sus publicaciones" + +#: ../../mod/settings.php:1046 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." + +#: ../../mod/settings.php:1048 +msgid "Advanced Privacy Settings" +msgstr "Configuración de privacidad avanzada" + +#: ../../mod/settings.php:1050 +msgid "Expire other channel content after this many days" +msgstr "Caducar contenido de otro canal después de este número de días" + +#: ../../mod/settings.php:1050 +msgid "0 or blank prevents expiration" +msgstr "0 o en claro evitan la caducidad" + +#: ../../mod/settings.php:1051 +msgid "Maximum Friend Requests/Day:" +msgstr "Máximo de solicitudes de amistad por día:" + +#: ../../mod/settings.php:1051 +msgid "May reduce spam activity" +msgstr "Podría reducir la actividad de spam" + +#: ../../mod/settings.php:1052 +msgid "Default Post Permissions" +msgstr "Permisos de publicación predeterminados" + +#: ../../mod/settings.php:1057 +msgid "Channel permissions category:" +msgstr "Categoría de permisos del canal:" + +#: ../../mod/settings.php:1063 +msgid "Maximum private messages per day from unknown people:" +msgstr "Máximo de mensajes privados por día de gente desconocida:" + +#: ../../mod/settings.php:1063 +msgid "Useful to reduce spamming" +msgstr "Útil para reducir el envío de correo no deseado" + +#: ../../mod/settings.php:1066 +msgid "Notification Settings" +msgstr "Configuración de notificaciones" + +#: ../../mod/settings.php:1067 +msgid "By default post a status message when:" +msgstr "Por defecto, enviar un mensaje de estado cuando:" + +#: ../../mod/settings.php:1068 +msgid "accepting a friend request" +msgstr "acepte una solicitud de amistad" + +#: ../../mod/settings.php:1069 +msgid "joining a forum/community" +msgstr "al unirse a un foro o comunidad" + +#: ../../mod/settings.php:1070 +msgid "making an interesting profile change" +msgstr "realice un cambio interesante en su perfil" + +#: ../../mod/settings.php:1071 +msgid "Send a notification email when:" +msgstr "Enviar una notificación por correo electrónico cuando:" + +#: ../../mod/settings.php:1072 +msgid "You receive a connection request" +msgstr "Reciba una solicitud de conexión" + +#: ../../mod/settings.php:1073 +msgid "Your connections are confirmed" +msgstr "Sus conexiones hayan sido confirmadas" + +#: ../../mod/settings.php:1074 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en la página de su perfil (muro)" + +#: ../../mod/settings.php:1075 +msgid "Someone writes a followup comment" +msgstr "Alguien escriba un comentario sobre sus publicaciones" + +#: ../../mod/settings.php:1076 +msgid "You receive a private message" +msgstr "Reciba un mensaje privado" + +#: ../../mod/settings.php:1077 +msgid "You receive a friend suggestion" +msgstr "Reciba una sugerencia de amistad" + +#: ../../mod/settings.php:1078 +msgid "You are tagged in a post" +msgstr "Usted sea etiquetado en una publicación" + +#: ../../mod/settings.php:1079 +msgid "You are poked/prodded/etc. in a post" +msgstr "Reciba un toque o incitación en una entrada" + +#: ../../mod/settings.php:1082 +msgid "Show visual notifications including:" +msgstr "Mostrar notificaciones visuales que incluyan:" + +#: ../../mod/settings.php:1084 +msgid "Unseen matrix activity" +msgstr "Actividad no vista en la red" + +#: ../../mod/settings.php:1085 +msgid "Unseen channel activity" +msgstr "Actividad no vista en el canal" + +#: ../../mod/settings.php:1086 +msgid "Unseen private messages" +msgstr "Mensajes privados no leídos" + +#: ../../mod/settings.php:1086 ../../mod/settings.php:1091 +#: ../../mod/settings.php:1092 ../../mod/settings.php:1093 +msgid "Recommended" +msgstr "Recomendado" + +#: ../../mod/settings.php:1087 +msgid "Upcoming events" +msgstr "Próximos eventos" + +#: ../../mod/settings.php:1088 +msgid "Events today" +msgstr "Eventos de hoy" + +#: ../../mod/settings.php:1089 +msgid "Upcoming birthdays" +msgstr "Próximos cumpleaños" + +#: ../../mod/settings.php:1089 +msgid "Not available in all themes" +msgstr "No disponible en todos los temas" + +#: ../../mod/settings.php:1090 +msgid "System (personal) notifications" +msgstr "Notificaciones del sistema (personales)" + +#: ../../mod/settings.php:1091 +msgid "System info messages" +msgstr "Mensajes de información del sistema" + +#: ../../mod/settings.php:1092 +msgid "System critical alerts" +msgstr "Alertas críticas del sistema" + +#: ../../mod/settings.php:1093 +msgid "New connections" +msgstr "Nuevas conexiones" + +#: ../../mod/settings.php:1094 +msgid "System Registrations" +msgstr "Registros del sistema" + +#: ../../mod/settings.php:1095 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" + +#: ../../mod/settings.php:1097 +msgid "Notify me of events this many days in advance" +msgstr "Avisarme de los eventos con algunos días de antelación" + +#: ../../mod/settings.php:1097 +msgid "Must be greater than 0" +msgstr "Debe ser mayor que 0" + +#: ../../mod/settings.php:1099 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustes avanzados de la cuenta y de los tipos de página" + +#: ../../mod/settings.php:1100 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" + +#: ../../mod/settings.php:1103 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Activar modo experto (en Ajustes > Características Adicionales) para ajustar." + +#: ../../mod/settings.php:1104 +msgid "Miscellaneous Settings" +msgstr "Ajustes diversos" + +#: ../../mod/settings.php:1105 +msgid "Default photo upload folder" +msgstr "Carpeta por defecto de las fotos subidas" + +#: ../../mod/settings.php:1106 +msgid "Default file upload folder" +msgstr "Carpeta por defecto de los archivos subidos" + +#: ../../mod/settings.php:1108 +msgid "Personal menu to display in your channel pages" +msgstr "Menú personal que debe mostrarse en las páginas de su canal" + +#: ../../mod/settings.php:1110 +msgid "Remove this channel." +msgstr "Eliminar este canal." + +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Búsqueda de canales" + +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Buscar un canal (o un \"webbie\") que comience por:" + +#: ../../mod/manage.php:130 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." + +#: ../../mod/manage.php:138 +msgid "Create a new channel" +msgstr "Crear un nuevo canal" + +#: ../../mod/manage.php:161 +msgid "Current Channel" +msgstr "Canal actual" + +#: ../../mod/manage.php:163 +msgid "Switch to one of your channels by selecting it." +msgstr "Cambiar a uno de sus canales seleccionándolo." + +#: ../../mod/manage.php:164 +msgid "Default Channel" +msgstr "Canal principal" + +#: ../../mod/manage.php:165 +msgid "Make Default" +msgstr "Convertir en predeterminado" + +#: ../../mod/manage.php:168 +#, php-format +msgid "%d new messages" +msgstr "%d mensajes nuevos" + +#: ../../mod/manage.php:169 +#, php-format +msgid "%d new introductions" +msgstr "%d nuevas isolicitudes de conexión" + +#: ../../mod/manage.php:171 +msgid "Delegated Channels" +msgstr "Canales delegados" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizar una conexión de aplicación" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Volver a su aplicación e introducir este código de seguridad:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Por favor inicia sesión para continuar." + +#: ../../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 "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" + +#: ../../mod/connections.php:52 ../../mod/connections.php:150 +msgid "Blocked" +msgstr "Bloqueadas" + +#: ../../mod/connections.php:57 ../../mod/connections.php:157 +msgid "Ignored" +msgstr "Ignoradas" + +#: ../../mod/connections.php:62 ../../mod/connections.php:171 +msgid "Hidden" +msgstr "Ocultas" + +#: ../../mod/connections.php:67 ../../mod/connections.php:164 +msgid "Archived" +msgstr "Archivadas" + +#: ../../mod/connections.php:128 +msgid "Suggest new connections" +msgstr "Sugerir nuevas conexiones" + +#: ../../mod/connections.php:131 +msgid "New Connections" +msgstr "Nuevas conexiones" + +#: ../../mod/connections.php:134 +msgid "Show pending (new) connections" +msgstr "Mostrar conexiones (nuevas) pendientes" + +#: ../../mod/connections.php:137 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Todas las conexiones" + +#: ../../mod/connections.php:140 +msgid "Show all connections" +msgstr "Mostrar todas las conexiones" + +#: ../../mod/connections.php:143 +msgid "Unblocked" +msgstr "Desbloqueadas" + +#: ../../mod/connections.php:146 +msgid "Only show unblocked connections" +msgstr "Mostrar solo las conexiones desbloqueadas" + +#: ../../mod/connections.php:153 +msgid "Only show blocked connections" +msgstr "Mostrar solo las conexiones bloqueadas" + +#: ../../mod/connections.php:160 +msgid "Only show ignored connections" +msgstr "Mostrar solo conexiones ignoradas" + +#: ../../mod/connections.php:167 +msgid "Only show archived connections" +msgstr "Mostrar solo las conexiones archivadas" + +#: ../../mod/connections.php:174 +msgid "Only show hidden connections" +msgstr "Mostrar solo las conexiones ocultas" + +#: ../../mod/connections.php:225 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:226 +msgid "Edit connection" +msgstr "Editar conexión" + +#: ../../mod/connections.php:264 +msgid "Search your connections" +msgstr "Buscar sus conexiones" + +#: ../../mod/connections.php:265 +msgid "Finding: " +msgstr "Búsqueda:" + +#: ../../mod/editlayout.php:112 +msgid "Delete layout?" +msgstr "¿Borrar el formato?" + +#: ../../mod/editlayout.php:178 +msgid "Edit Layout" +msgstr "Modificar el formato" + +#: ../../mod/editwebpage.php:153 +msgid "Delete webpage?" +msgstr "¿Eliminar la página web?" + +#: ../../mod/editwebpage.php:172 +msgid "Page link title" +msgstr "Título del enlace de la página" + +#: ../../mod/editwebpage.php:222 +msgid "Edit Webpage" +msgstr "Editar la página web" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "La colección ha sido creada." + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "No se puede crear la colección." + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "La colección ha sido actualizada." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Crear una colección de canales." + +#: ../../mod/group.php:87 ../../mod/group.php:180 +msgid "Collection Name: " +msgstr "Nombre de la colección:" + +#: ../../mod/group.php:89 ../../mod/group.php:183 +msgid "Members are visible to other channels" +msgstr "Los miembros son visibles para otros canales" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "La colección ha sido eliminada." + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "No ha sido posible de eliminar la colección." + +#: ../../mod/group.php:179 +msgid "Collection Editor" +msgstr "Editor de colecciones" + +#: ../../mod/group.php:193 +msgid "Members" +msgstr "Miembros" + +#: ../../mod/group.php:195 +msgid "All Connected Channels" +msgstr "Todos los canales conectados" + +#: ../../mod/group.php:227 +msgid "Click on a channel to add or remove." +msgstr "Haga clic en un canal para agregarlo o quitarlo." + +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Continuar" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Configuración del canal premium" + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Habilitar restricciones de conexión del canal premium" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." + +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" + +#: ../../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 "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Canal premium o restringido" + +#: ../../mod/viewconnections.php:59 +msgid "No connections." +msgstr "Sin conexiones." + +#: ../../mod/viewconnections.php:72 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visitar el perfil de %s [%s]" + +#: ../../mod/locs.php:21 ../../mod/locs.php:49 +msgid "Location not found." +msgstr "Localización no encontrada." + +#: ../../mod/locs.php:57 +msgid "Location lookup failed." +msgstr "Ha fallado la búsqueda de la ubicación." + +#: ../../mod/locs.php:61 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Por favor, seleccione otra ubicación para convertirla en primaria antes de retirar la ubicación principal." + +#: ../../mod/locs.php:93 +msgid "No locations found." +msgstr "Ninguna localización encontrada." + +#: ../../mod/locs.php:104 +msgid "Manage Channel Locations" +msgstr "Gestionar localizaciones del canal" + +#: ../../mod/locs.php:105 +msgid "Location (address)" +msgstr "Localización (dirección)" + +#: ../../mod/locs.php:106 +msgid "Primary Location" +msgstr "Localización primaria" + +#: ../../mod/locs.php:107 +msgid "Drop location" +msgstr "Eliminar localización" + +#: ../../mod/post.php:234 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo." + +#: ../../mod/setup.php:191 +msgid "$Projectname Server - Setup" +msgstr "Servidor $Projectname - Instalación" + +#: ../../mod/setup.php:195 +msgid "Could not connect to database." +msgstr "No se ha podido conectar a la base de datos." + +#: ../../mod/setup.php:199 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." + +#: ../../mod/setup.php:206 +msgid "Could not create table." +msgstr "No se puede crear la tabla." + +#: ../../mod/setup.php:211 +msgid "Your site database has been installed." +msgstr "La base de datos del sitio ha sido instalada." + +#: ../../mod/setup.php:215 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." + +#: ../../mod/setup.php:216 ../../mod/setup.php:284 ../../mod/setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." + +#: ../../mod/setup.php:281 +msgid "System check" +msgstr "Verificación del sistema" + +#: ../../mod/setup.php:286 +msgid "Check again" +msgstr "Verificar de nuevo" + +#: ../../mod/setup.php:308 +msgid "Database connection" +msgstr "Conexión a la base de datos" + +#: ../../mod/setup.php:309 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." + +#: ../../mod/setup.php:310 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." + +#: ../../mod/setup.php:311 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." + +#: ../../mod/setup.php:315 +msgid "Database Server Name" +msgstr "Nombre del servidor de base de datos" + +#: ../../mod/setup.php:315 +msgid "Default is localhost" +msgstr "Por defecto es localhost" + +#: ../../mod/setup.php:316 +msgid "Database Port" +msgstr "Puerto de la base de datos" + +#: ../../mod/setup.php:316 +msgid "Communication port number - use 0 for default" +msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" + +#: ../../mod/setup.php:317 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" + +#: ../../mod/setup.php:318 +msgid "Database Login Password" +msgstr "Contraseña de acceso a la base de datos" + +#: ../../mod/setup.php:319 +msgid "Database Name" +msgstr "Nombre de la base de datos" + +#: ../../mod/setup.php:320 +msgid "Database Type" +msgstr "Tipo de base de datos" + +#: ../../mod/setup.php:322 ../../mod/setup.php:363 +msgid "Site administrator email address" +msgstr "Dirección de correo electrónico del administrador del sitio" + +#: ../../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 "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." + +#: ../../mod/setup.php:323 ../../mod/setup.php:365 +msgid "Website URL" +msgstr "Dirección del sitio web" + +#: ../../mod/setup.php:323 ../../mod/setup.php:365 +msgid "Please use SSL (https) URL if available." +msgstr "Por favor, use SSL (https) si está disponible." + +#: ../../mod/setup.php:325 ../../mod/setup.php:367 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciones la zona horaria por defecto de su sitio web" + +#: ../../mod/setup.php:352 +msgid "Site settings" +msgstr "Ajustes del sitio" + +#: ../../mod/setup.php:417 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." + +#: ../../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 "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá ejecutar sondeos en segundo plano mediante cron." + +#: ../../mod/setup.php:422 +msgid "PHP executable path" +msgstr "Ruta del ejecutable PHP" + +#: ../../mod/setup.php:422 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." + +#: ../../mod/setup.php:427 +msgid "Command line PHP" +msgstr "PHP en línea de comandos" + +#: ../../mod/setup.php:436 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." + +#: ../../mod/setup.php:437 +msgid "This is required for message delivery to work." +msgstr "Esto es necesario para que funcione la transmisión de mensajes." + +#: ../../mod/setup.php:440 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../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 "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." + +#: ../../mod/setup.php:463 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." + +#: ../../mod/setup.php:465 +msgid "PHP upload limits" +msgstr "Límites PHP de subida" + +#: ../../mod/setup.php:488 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." + +#: ../../mod/setup.php:489 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/setup.php:492 +msgid "Generate encryption keys" +msgstr "Generar claves de cifrado" + +#: ../../mod/setup.php:504 +msgid "libCurl PHP module" +msgstr "módulo libCurl PHP" + +#: ../../mod/setup.php:505 +msgid "GD graphics PHP module" +msgstr "módulo PHP GD graphics" + +#: ../../mod/setup.php:506 +msgid "OpenSSL PHP module" +msgstr "módulo PHP OpenSSL" + +#: ../../mod/setup.php:507 +msgid "mysqli or postgres PHP module" +msgstr "módulo PHP mysqli o postgres" + +#: ../../mod/setup.php:508 +msgid "mb_string PHP module" +msgstr "módulo PHP mb_string" + +#: ../../mod/setup.php:509 +msgid "mcrypt PHP module" +msgstr "módulo PHP mcrypt " + +#: ../../mod/setup.php:510 +msgid "xml PHP module" +msgstr "módulo PHP xml" + +#: ../../mod/setup.php:514 ../../mod/setup.php:516 +msgid "Apache mod_rewrite module" +msgstr "módulo Apache mod_rewrite " + +#: ../../mod/setup.php:514 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." + +#: ../../mod/setup.php:520 ../../mod/setup.php:523 +msgid "proc_open" +msgstr "proc_open" + +#: ../../mod/setup.php:520 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" + +#: ../../mod/setup.php:528 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." + +#: ../../mod/setup.php:532 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." + +#: ../../mod/setup.php:536 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." + +#: ../../mod/setup.php:540 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." + +#: ../../mod/setup.php:544 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." + +#: ../../mod/setup.php:548 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: el módulo PHP mcrypt es necesario, pero no está instalado." + +#: ../../mod/setup.php:552 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." + +#: ../../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 "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." + +#: ../../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 "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." + +#: ../../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 "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." + +#: ../../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 "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." + +#: ../../mod/setup.php:576 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php tiene permisos de escritura" + +#: ../../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 "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." + +#: ../../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 "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalación de Hubzilla." + +#: ../../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 "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." + +#: ../../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 "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." + +#: ../../mod/setup.php:596 +#, php-format +msgid "%s is writable" +msgstr "%s tiene permisos de escritura" + +#: ../../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 guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación." + +#: ../../mod/setup.php:616 +msgid "store is writable" +msgstr "\"store\" tiene permisos de escritura" + +#: ../../mod/setup.php:649 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." + +#: ../../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 "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." + +#: ../../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 "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." + +#: ../../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 "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." + +#: ../../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 "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." + +#: ../../mod/setup.php:654 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." + +#: ../../mod/setup.php:656 +msgid "SSL certificate validation" +msgstr "validación del certificado SSL" + +#: ../../mod/setup.php:662 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" + +#: ../../mod/setup.php:665 +msgid "Url rewrite is working" +msgstr "La reescritura de las direcciones funciona correctamente" + +#: ../../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 "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." + +#: ../../mod/setup.php:698 +msgid "Errors encountered creating database tables." +msgstr "Se han encontrado errores al crear las tablas de la base de datos." + +#: ../../mod/setup.php:732 +msgid "

What next

" +msgstr "

Siguiente paso

" + +#: ../../mod/setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." + +#: ../../mod/sharedwithme.php:94 +msgid "Files: shared with me" +msgstr "Ficheros: compartidos conmigo" + +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "NUEVO" + +#: ../../mod/sharedwithme.php:99 +msgid "Remove all files" +msgstr "Eliminar todos los ficheros" + +#: ../../mod/sharedwithme.php:100 +msgid "Remove this file" +msgstr "Eliminar este fichero" + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." + #: ../../mod/profiles.php:18 ../../mod/profiles.php:174 #: ../../mod/profiles.php:231 ../../mod/profiles.php:600 msgid "Profile not found." @@ -5846,7 +8743,7 @@ msgstr "Perfil-" #: ../../mod/profiles.php:77 ../../mod/profiles.php:120 msgid "New profile created." -msgstr "Creado el nuevo perfil." +msgstr "El nuevo perfil ha sido creado." #: ../../mod/profiles.php:98 msgid "Profile unavailable to clone." @@ -5888,10 +8785,6 @@ msgstr "Religión" msgid "Political Views" msgstr "Ideas políticas" -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" -msgstr "Género" - #: ../../mod/profiles.php:435 msgid "Sexual Preference" msgstr "Preferencia sexual" @@ -5904,10 +8797,6 @@ msgstr "Página personal" msgid "Interests" msgstr "Intereses" -#: ../../mod/profiles.php:447 ../../mod/admin.php:994 -msgid "Address" -msgstr "Dirección" - #: ../../mod/profiles.php:537 msgid "Profile updated." msgstr "Perfil actualizado." @@ -6088,2825 +8977,59 @@ msgstr "Añadir cosas al perfil" msgid "Include desirable objects in your profile" msgstr "Añadir objetos interesantes en su perfil" -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Ninguna valoración" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Identificador del perfil no válido" -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Valoraciones" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Valoración:" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Pulsar en un contacto para añadirlo o eliminarlo." -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Sitio web:" +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Visible para" -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Descripción:" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Seleccionar una carpeta de marcadores" -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" -msgstr "Origen del elemento" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Guardar marcador" -#: ../../mod/setup.php:187 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Instalación" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "Dirección del marcador" -#: ../../mod/setup.php:191 -msgid "Could not connect to database." -msgstr "No se ha podido conectar a la base de datos." +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" -#: ../../mod/setup.php:195 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." - -#: ../../mod/setup.php:202 -msgid "Could not create table." -msgstr "No se puede crear la tabla." - -#: ../../mod/setup.php:207 -msgid "Your site database has been installed." -msgstr "La base de datos del sitio ha sido instalada." - -#: ../../mod/setup.php:211 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." - -#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." - -#: ../../mod/setup.php:277 -msgid "System check" -msgstr "Verificación del sistema" - -#: ../../mod/setup.php:282 -msgid "Check again" -msgstr "Verificar de nuevo" - -#: ../../mod/setup.php:304 -msgid "Database connection" -msgstr "Conexión a la base de datos" - -#: ../../mod/setup.php:305 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." - -#: ../../mod/setup.php:306 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." - -#: ../../mod/setup.php:307 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." - -#: ../../mod/setup.php:311 -msgid "Database Server Name" -msgstr "Nombre del servidor de base de datos" - -#: ../../mod/setup.php:311 -msgid "Default is localhost" -msgstr "Por defecto es localhost" - -#: ../../mod/setup.php:312 -msgid "Database Port" -msgstr "Puerto de la base de datos" - -#: ../../mod/setup.php:312 -msgid "Communication port number - use 0 for default" -msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" - -#: ../../mod/setup.php:313 -msgid "Database Login Name" -msgstr "Nombre de acceso a la base de datos" - -#: ../../mod/setup.php:314 -msgid "Database Login Password" -msgstr "Contraseña de acceso a la base de datos" - -#: ../../mod/setup.php:315 -msgid "Database Name" -msgstr "Nombre de la base de datos" - -#: ../../mod/setup.php:316 -msgid "Database Type" -msgstr "Tipo de base de datos" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "Site administrator email address" -msgstr "Dirección de correo electrónico del administrador del sitio" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Website URL" -msgstr "Dirección del sitio web" - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Please use SSL (https) URL if available." -msgstr "Por favor, use SSL (https) si está disponible." - -#: ../../mod/setup.php:321 ../../mod/setup.php:363 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciones la zona horaria por defecto de su sitio web" - -#: ../../mod/setup.php:348 -msgid "Site settings" -msgstr "Ajustes del sitio" - -#: ../../mod/setup.php:413 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." - -#: ../../mod/setup.php:414 -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 "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá ejecutar votaciones en segundo plano vía cron." - -#: ../../mod/setup.php:418 -msgid "PHP executable path" -msgstr "ruta del ejecutable PHP" - -#: ../../mod/setup.php:418 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." - -#: ../../mod/setup.php:423 -msgid "Command line PHP" -msgstr "PHP en línea de comandos" - -#: ../../mod/setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." - -#: ../../mod/setup.php:433 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para que funcione la entrega de mensajes." - -#: ../../mod/setup.php:436 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:454 -#, 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 "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." - -#: ../../mod/setup.php:459 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." - -#: ../../mod/setup.php:461 -msgid "PHP upload limits" -msgstr "Límites PHP de subida" - -#: ../../mod/setup.php:484 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." - -#: ../../mod/setup.php:485 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/setup.php:488 -msgid "Generate encryption keys" -msgstr "Generar claves de cifrado" - -#: ../../mod/setup.php:500 -msgid "libCurl PHP module" -msgstr "módulo libCurl PHP" - -#: ../../mod/setup.php:501 -msgid "GD graphics PHP module" -msgstr "módulo PHP GD graphics" - -#: ../../mod/setup.php:502 -msgid "OpenSSL PHP module" -msgstr "módulo PHP OpenSSL" - -#: ../../mod/setup.php:503 -msgid "mysqli or postgres PHP module" -msgstr "módulo PHP mysqli o postgres" - -#: ../../mod/setup.php:504 -msgid "mb_string PHP module" -msgstr "módulo PHP mb_string" - -#: ../../mod/setup.php:505 -msgid "mcrypt PHP module" -msgstr "módulo PHP mcrypt " - -#: ../../mod/setup.php:506 -msgid "xml PHP module" -msgstr "módulo PHP xml" - -#: ../../mod/setup.php:510 ../../mod/setup.php:512 -msgid "Apache mod_rewrite module" -msgstr "módulo Apache mod_rewrite " - -#: ../../mod/setup.php:510 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." - -#: ../../mod/setup.php:516 ../../mod/setup.php:519 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:516 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" - -#: ../../mod/setup.php:524 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." - -#: ../../mod/setup.php:528 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." - -#: ../../mod/setup.php:532 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." - -#: ../../mod/setup.php:536 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: el módulo PHP mysqli o postgres es necesario pero no ninguno de los dos está instalado." - -#: ../../mod/setup.php:540 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." - -#: ../../mod/setup.php:544 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: el módulo PHP mcrypt es necesario, pero no está instalado." - -#: ../../mod/setup.php:548 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." - -#: ../../mod/setup.php:566 -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 "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." - -#: ../../mod/setup.php:567 -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 "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." - -#: ../../mod/setup.php:568 -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 "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Red." - -#: ../../mod/setup.php:569 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." - -#: ../../mod/setup.php:572 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tiene permisos de escritura" - -#: ../../mod/setup.php:586 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." - -#: ../../mod/setup.php:587 -#, 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 "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalación de Red." - -#: ../../mod/setup.php:588 ../../mod/setup.php:609 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." - -#: ../../mod/setup.php:589 -#, 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 "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s -no al fichero de plantilla (.tpl) que contiene." - -#: ../../mod/setup.php:592 -#, php-format -msgid "%s is writable" -msgstr "%s tiene permisos de escritura" - -#: ../../mod/setup.php:608 -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 guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación." - -#: ../../mod/setup.php:612 -msgid "store is writable" -msgstr "\"store\" tiene permisos de escritura" - -#: ../../mod/setup.php:645 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." - -#: ../../mod/setup.php:646 -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 "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." - -#: ../../mod/setup.php:647 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." - -#: ../../mod/setup.php:648 -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 "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." - -#: ../../mod/setup.php:649 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." - -#: ../../mod/setup.php:650 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." - -#: ../../mod/setup.php:652 -msgid "SSL certificate validation" -msgstr "validación del certificado SSL" - -#: ../../mod/setup.php:658 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" - -#: ../../mod/setup.php:661 -msgid "Url rewrite is working" -msgstr "La reescritura de la direcciones funciona correctamente" - -#: ../../mod/setup.php:670 -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 "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." - -#: ../../mod/setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrado errores al crear las tablas de la base de datos." - -#: ../../mod/setup.php:728 -msgid "

What next

" -msgstr "

Siguiente paso

" - -#: ../../mod/setup.php:729 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para las actualizaciones." - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." - -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:286 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." - -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetado el %3$s de %2$s con %4$s" - -#: ../../mod/uexport.php:45 ../../mod/uexport.php:46 -msgid "Export Channel" -msgstr "Exportar el canal" - -#: ../../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 " -"be used to import your data to a new hub, but\tdoes not contain your " -"content." -msgstr "Exportar la base de datos de su canal a un pequeño fichero. Este podrá servir como una copia de seguridad de sus conexiones, permisos, perfil y datos básicos, que podrá importar a un nuevo canal, pero sin sus contenidos." - -#: ../../mod/uexport.php:48 -msgid "Export Content" -msgstr "Exportar contenidos" - -#: ../../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 " -"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 "Exportar toda la información del canal y todo su contenido a un fichero JSON. Este contendrá todas sus conexiones, permisos, información del perfil y todo su contenido, Sin embargo, a menudo, no será una buena solución para importarlo en una nueva instancia, pues el fichero será MUY voluminoso. Por favor, tenga paciencia - pueden pasar muchos minutos antes de que comience la carga." - -#: ../../mod/viewconnections.php:62 -msgid "No connections." -msgstr "Sin conexiones." - -#: ../../mod/viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar el perfil de %s [%s]" - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Ajustes del tema actualizados." - -#: ../../mod/admin.php:93 ../../mod/admin.php:452 -msgid "Site" -msgstr "Sitio" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Cuentas" - -#: ../../mod/admin.php:95 ../../mod/admin.php:985 -msgid "Channels" -msgstr "Canales" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 -msgid "Plugins" -msgstr "Extensiones" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 -msgid "Themes" -msgstr "Temas" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Examinar la cola" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Ajustes del perfil" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 -msgid "Logs" -msgstr "Informes" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Ajustes de la extensión" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Registros de usuarios pendientes de confirmación" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# Cuentas" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# cuentas bloqueadas" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "# cuentas caducadas" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "# cuentas que caducan" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# Canales" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "# primario" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# clones" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "Mensajes en cola" - -#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 -#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 -#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 -#: ../../mod/admin.php:1395 -msgid "Administration" -msgstr "Administración" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "Sumario" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Cuentas registradas" - -#: ../../mod/admin.php:245 ../../mod/admin.php:552 -msgid "Pending registrations" -msgstr "Registros pendientes" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Canales registrados" - -#: ../../mod/admin.php:247 ../../mod/admin.php:553 -msgid "Active plugins" -msgstr "Extensiones activas" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Versión" - -#: ../../mod/admin.php:363 -msgid "Site settings updated." -msgstr "Ajustes del sitio actualizados." - -#: ../../mod/admin.php:400 ../../mod/settings.php:813 -msgid "mobile" -msgstr "móvil" - -#: ../../mod/admin.php:402 -msgid "experimental" -msgstr "experimental" - -#: ../../mod/admin.php:404 -msgid "unsupported" -msgstr "no soportado" - -#: ../../mod/admin.php:429 -msgid "Yes - with approval" -msgstr "Sí - con aprobación" - -#: ../../mod/admin.php:435 -msgid "My site is not a public server" -msgstr "Mi sitio no es un servidor público" - -#: ../../mod/admin.php:436 -msgid "My site has paid access only" -msgstr "Mi sitio es un servicio de pago" - -#: ../../mod/admin.php:437 -msgid "My site has free access only" -msgstr "Mi sitio es un servicio gratuito" - -#: ../../mod/admin.php:438 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" - -#: ../../mod/admin.php:454 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registro" - -#: ../../mod/admin.php:455 -msgid "File upload" -msgstr "Fichero subido" - -#: ../../mod/admin.php:456 -msgid "Policies" -msgstr "Políticas" - -#: ../../mod/admin.php:461 -msgid "Site name" -msgstr "Nombre del sitio" - -#: ../../mod/admin.php:462 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:463 -msgid "Administrator Information" -msgstr "Información del Administrador" - -#: ../../mod/admin.php:463 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" - -#: ../../mod/admin.php:464 -msgid "System language" -msgstr "Idioma del sistema" - -#: ../../mod/admin.php:465 -msgid "System theme" -msgstr "Tema gráfico del sistema" - -#: ../../mod/admin.php:465 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar ajustes del tema" - -#: ../../mod/admin.php:466 -msgid "Mobile system theme" -msgstr "Tema del sistema para móviles" - -#: ../../mod/admin.php:466 -msgid "Theme for mobile devices" -msgstr "Tema para aparatos móviles" - -#: ../../mod/admin.php:468 -msgid "Enable Diaspora Protocol" -msgstr "Activar el protocolo de la red social Diaspora" - -#: ../../mod/admin.php:468 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Comunicar con Diaspora y Friendica - experimental" - -#: ../../mod/admin.php:469 -msgid "Allow Feeds as Connections" -msgstr "Permitir flujos RSS como conexiones" - -#: ../../mod/admin.php:469 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso de los recursos del sistema)" - -#: ../../mod/admin.php:470 -msgid "Maximum image size" -msgstr "Tamaño máximo de imagen" - -#: ../../mod/admin.php:470 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." - -#: ../../mod/admin.php:471 -msgid "Does this site allow new member registration?" -msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" - -#: ../../mod/admin.php:472 -msgid "Which best describes the types of account offered by this hub?" -msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" - -#: ../../mod/admin.php:473 -msgid "Register text" -msgstr "Texto del registro" - -#: ../../mod/admin.php:473 -msgid "Will be displayed prominently on the registration page." -msgstr "Se mostrará de forma destacada en la página de registro." - -#: ../../mod/admin.php:474 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" - -#: ../../mod/admin.php:474 -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 "ejemplo: 'public' para mostrar contenido público de los usuarios, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." - -#: ../../mod/admin.php:475 -msgid "Preserve site homepage URL" -msgstr "Preservar la dirección de la página personal" - -#: ../../mod/admin.php:475 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." - -#: ../../mod/admin.php:476 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonados después de x días" - -#: ../../mod/admin.php:476 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." - -#: ../../mod/admin.php:477 -msgid "Allowed friend domains" -msgstr "Dominios amigos permitidos" - -#: ../../mod/admin.php:477 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." - -#: ../../mod/admin.php:478 -msgid "Allowed email domains" -msgstr "Se aceptan dominios de correo electrónico" - -#: ../../mod/admin.php:478 -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 "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " - -#: ../../mod/admin.php:479 -msgid "Not allowed email domains" -msgstr "No se permiten dominios de correo electrónico" - -#: ../../mod/admin.php:479 -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 "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." - -#: ../../mod/admin.php:480 -msgid "Block public" -msgstr "Bloquear página pública" - -#: ../../mod/admin.php:480 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Activar para bloquear el acceso público a todas las páginas públicas personales en este sitio salvo que estén identificadas en el sistema." - -#: ../../mod/admin.php:481 -msgid "Verify Email Addresses" -msgstr "Verificar direcciones de correo electrónico" - -#: ../../mod/admin.php:481 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." - -#: ../../mod/admin.php:482 -msgid "Force publish" -msgstr "Forzar la publicación" - -#: ../../mod/admin.php:482 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." - -#: ../../mod/admin.php:483 -msgid "Disable discovery tab" -msgstr "Desactivar la pestaña \"Descubrir\"" - -#: ../../mod/admin.php:483 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Quitar la pestaña para ver contenido público extraído de las fuentes elegidas por este sitio." - -#: ../../mod/admin.php:484 -msgid "login on Homepage" -msgstr "acceso a la página personal" - -#: ../../mod/admin.php:484 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." - -#: ../../mod/admin.php:486 -msgid "Proxy user" -msgstr "Usuario del proxy" - -#: ../../mod/admin.php:487 -msgid "Proxy URL" -msgstr "Dirección del proxy" - -#: ../../mod/admin.php:488 -msgid "Network timeout" -msgstr "Tiempo de espera de la red" - -#: ../../mod/admin.php:488 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" - -#: ../../mod/admin.php:489 -msgid "Delivery interval" -msgstr "Intervalo de entrega" - -#: ../../mod/admin.php:489 -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 "Retrasar los procesos de entrega en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para hosts compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." - -#: ../../mod/admin.php:490 -msgid "Poll interval" -msgstr "Intervalo de sondeo" - -#: ../../mod/admin.php:490 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Retrasar el sondeo en segundo plano en esta cantidad de segundo para reducir la carga del sistema. Si es 0, use el intervalo de entrega." - -#: ../../mod/admin.php:491 -msgid "Maximum Load Average" -msgstr "Carga media máxima" - -#: ../../mod/admin.php:491 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carga máxima del sistema antes de que los procesos de entrega y sondeo se hayan retardado - por defecto, 50." - -#: ../../mod/admin.php:492 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "Periodo de caducidad en días para el contenido importado (red)" - -#: ../../mod/admin.php:492 -msgid "0 for no expiration of imported content" -msgstr "0 para que no caduque el contenido importado" - -#: ../../mod/admin.php:540 -msgid "No server found" -msgstr "Servidor no encontrado" - -#: ../../mod/admin.php:547 ../../mod/admin.php:831 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:547 -msgid "for channel" -msgstr "por canal" - -#: ../../mod/admin.php:547 -msgid "on server" -msgstr "en el servidor" - -#: ../../mod/admin.php:547 -msgid "Status" -msgstr "Estado" - -#: ../../mod/admin.php:549 -msgid "Server" -msgstr "Servidor" - -#: ../../mod/admin.php:566 -msgid "Update has been marked successful" -msgstr "La actualización ha sido marcada como exitosa" - -#: ../../mod/admin.php:576 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update %s was successfully applied." -msgstr "La actualización de %s se ha realizado exitosamente." - -#: ../../mod/admin.php:583 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." - -#: ../../mod/admin.php:586 -#, php-format -msgid "Update function %s could not be found." -msgstr "No se encuentra la función de actualización de %s." - -#: ../../mod/admin.php:602 -msgid "No failed updates." -msgstr "No ha fallado ninguna actualización." - -#: ../../mod/admin.php:606 -msgid "Failed Updates" -msgstr "Han fallado las actualizaciones" - -#: ../../mod/admin.php:608 -msgid "Mark success (if update was manually applied)" -msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" - -#: ../../mod/admin.php:609 -msgid "Attempt to execute this update step automatically" -msgstr "Intentar ejecutar este paso de actualización automáticamente" - -#: ../../mod/admin.php:641 -msgid "Queue Statistics" -msgstr "Estadísticas de la cola" - -#: ../../mod/admin.php:642 -msgid "Total Entries" -msgstr "Total de entradas" - -#: ../../mod/admin.php:643 -msgid "Priority" -msgstr "Prioridad" - -#: ../../mod/admin.php:644 -msgid "Destination URL" -msgstr "Dirección de destino" - -#: ../../mod/admin.php:645 -msgid "Mark hub permanently offline" -msgstr "Marcar el servidor como permanentemente fuera de línea" - -#: ../../mod/admin.php:646 -msgid "Empty queue for this hub" -msgstr "Vaciar la cola para este servidor" - -#: ../../mod/admin.php:647 -msgid "Last known contact" -msgstr "Último contacto conocido" - -#: ../../mod/admin.php:683 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s cuenta bloqueada/desbloqueada" -msgstr[1] "%s cuenta bloqueada/desbloqueada" - -#: ../../mod/admin.php:691 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s cuentas eliminadas" -msgstr[1] "%s cuentas eliminadas" - -#: ../../mod/admin.php:727 -msgid "Account not found" -msgstr "Cuenta no encontrada" - -#: ../../mod/admin.php:739 -#, php-format -msgid "Account '%s' deleted" -msgstr "La cuenta '%s' ha sido eliminada" - -#: ../../mod/admin.php:747 -#, php-format -msgid "Account '%s' blocked" -msgstr "La cuenta '%s' ha sido bloqueada" - -#: ../../mod/admin.php:755 -#, php-format -msgid "Account '%s' unblocked" -msgstr "La cuenta '%s' ha sido desbloqueada" - -#: ../../mod/admin.php:818 ../../mod/admin.php:830 -msgid "Users" -msgstr "Usuarios" - -#: ../../mod/admin.php:820 ../../mod/admin.php:987 -msgid "select all" -msgstr "seleccionar todo" - -#: ../../mod/admin.php:821 -msgid "User registrations waiting for confirm" -msgstr "Registros de usuario en espera de aprobación" - -#: ../../mod/admin.php:822 -msgid "Request date" -msgstr "Fecha de solicitud" - -#: ../../mod/admin.php:823 -msgid "No registrations." -msgstr "Sin registros." - -#: ../../mod/admin.php:824 ../../mod/connedit.php:699 -msgid "Approve" -msgstr "Aprobar" - -#: ../../mod/admin.php:825 -msgid "Deny" -msgstr "Rechazar" - -#: ../../mod/admin.php:827 ../../mod/connedit.php:531 -msgid "Block" -msgstr "Bloquear" - -#: ../../mod/admin.php:828 ../../mod/connedit.php:531 -msgid "Unblock" -msgstr "Desbloquear" - -#: ../../mod/admin.php:831 -msgid "Register date" -msgstr "Fecha de registro" - -#: ../../mod/admin.php:831 -msgid "Last login" -msgstr "Último acceso" - -#: ../../mod/admin.php:831 -msgid "Expires" -msgstr "Caduca" - -#: ../../mod/admin.php:831 -msgid "Service Class" -msgstr "Clase de servicio" - -#: ../../mod/admin.php:833 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../mod/admin.php:834 -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 "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../mod/admin.php:870 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canales censurados/no censurados" -msgstr[1] "%s canales censurados/no censurados" - -#: ../../mod/admin.php:879 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s código permitido/no permitido al canal" -msgstr[1] "%s código permitido/no permitido al canal" - -#: ../../mod/admin.php:886 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canales eliminados" -msgstr[1] "%s canales eliminados" - -#: ../../mod/admin.php:906 -msgid "Channel not found" -msgstr "Canal no encontrado" - -#: ../../mod/admin.php:917 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' eliminado" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censurado" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' no censurado" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Código permitido al canal '%s'" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Código no permitido al canal '%s'" - -#: ../../mod/admin.php:989 -msgid "Censor" -msgstr "Censurar" - -#: ../../mod/admin.php:990 -msgid "Uncensor" -msgstr "No censurar" - -#: ../../mod/admin.php:991 -msgid "Allow Code" -msgstr "Permitir código" - -#: ../../mod/admin.php:992 -msgid "Disallow Code" -msgstr "No permitir código" - -#: ../../mod/admin.php:994 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:996 -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 "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../mod/admin.php:997 -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 "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../mod/admin.php:1037 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extensión %s desactivada." - -#: ../../mod/admin.php:1041 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extensión %s activada." - -#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 -msgid "Disable" -msgstr "Desactivar" - -#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 -msgid "Enable" -msgstr "Activar" - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 -msgid "Toggle" -msgstr "Cambiar" - -#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 -msgid "Author: " -msgstr "Autor:" - -#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 -msgid "Maintainer: " -msgstr "Mantenedor:" - -#: ../../mod/admin.php:1214 -msgid "No themes found." -msgstr "No se han encontrado temas." - -#: ../../mod/admin.php:1270 -msgid "Screenshot" -msgstr "Instantánea de pantalla" - -#: ../../mod/admin.php:1316 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: ../../mod/admin.php:1317 -msgid "[Unsupported]" -msgstr "[No soportado]" - -#: ../../mod/admin.php:1341 -msgid "Log settings updated." -msgstr "Actualizado el informe de configuraciones." - -#: ../../mod/admin.php:1398 -msgid "Clear" -msgstr "Vaciar" - -#: ../../mod/admin.php:1404 -msgid "Debugging" -msgstr "Depuración" - -#: ../../mod/admin.php:1405 -msgid "Log file" -msgstr "Fichero de informe" - -#: ../../mod/admin.php:1405 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Debe tener permisos de escritura para el servidor web. Ruta relativa al directorio raíz de Red." - -#: ../../mod/admin.php:1406 -msgid "Log level" -msgstr "Nivel de depuración" - -#: ../../mod/admin.php:1452 -msgid "New Profile Field" -msgstr "Nuevo campo en el perfil" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "Field nickname" -msgstr "Alias del campo" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "System name of field" -msgstr "Nombre del campo en el sistema" - -#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 -msgid "Input type" -msgstr "Tipo de entrada" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Field Name" -msgstr "Nombre del campo" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Label on profile pages" -msgstr "Etiqueta a mostrar en las páginas del perfil" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Help text" -msgstr "Texto de ayuda" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Additional info (optional)" -msgstr "Información adicional (opcional)" - -#: ../../mod/admin.php:1466 -msgid "Field definition not found" -msgstr "Definición del campo no encontrada" - -#: ../../mod/admin.php:1472 -msgid "Edit Profile Field" -msgstr "Modificar el campo del perfil" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Enviado con éxito." - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Su registro está pendiente de aprobación por el propietario del sitio." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "El registro en este servidor/hub está sometido a aprobación previa." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Inscribirse en un servidor/hub afiliado" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Términos del servicio" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Acepto los %s de este sitio" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Para registrarse en este sitio es necesaria una invitación." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Por favor, introduzca el código de su invitación" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Su dirección de correo electrónico" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Elija una contraseña" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Por favor, vuelva a escribir su contraseña" - -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Eliminar esta cuenta" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "ATENCIÓN:" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduzca su contraseña para su verificación:" - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Remover esta cuenta, todos sus canales y clones de la red" - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" - -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 -msgid "Remove Account" -msgstr "Eliminar cuenta" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Ayuda:" - -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "No encontrado" - -#: ../../mod/help.php:100 -msgid "$Projectname Documentation" -msgstr "Documentación de $Projectname" - -#: ../../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 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenido incorporado - recargue la página para poder verlo]" - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "La información privada remota no está disponible." - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "Visible para:" - -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "El nombre es obligatorio" - -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Clave y Secreto son obligatorios" - -#: ../../mod/settings.php:130 -msgid "Diaspora Policy Settings updated." -msgstr "Configuración de directivas de Diaspora actualizada." - -#: ../../mod/settings.php:238 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." - -#: ../../mod/settings.php:242 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." - -#: ../../mod/settings.php:256 -msgid "Password changed." -msgstr "Constraseña cambiada." - -#: ../../mod/settings.php:258 -msgid "Password update failed. Please try again." -msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." - -#: ../../mod/settings.php:272 -msgid "Not valid email." -msgstr "Correo electrónico no válido." - -#: ../../mod/settings.php:275 -msgid "Protected email address. Cannot change to that email." -msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." - -#: ../../mod/settings.php:284 -msgid "System failure storing new email. Please try again." -msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." - -#: ../../mod/settings.php:523 -msgid "Settings updated." -msgstr "Ajustes actualizados." - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -#: ../../mod/settings.php:649 -msgid "Add application" -msgstr "Añadir aplicación" - -#: ../../mod/settings.php:590 -msgid "Name of application" -msgstr "Nombre de la aplicación" - -#: ../../mod/settings.php:591 ../../mod/settings.php:617 -msgid "Consumer Key" -msgstr "Clave de consumidor" - -#: ../../mod/settings.php:591 ../../mod/settings.php:592 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" - -#: ../../mod/settings.php:592 ../../mod/settings.php:618 -msgid "Consumer Secret" -msgstr "Clave secreta de consumidor" - -#: ../../mod/settings.php:593 ../../mod/settings.php:619 -msgid "Redirect" -msgstr "Redirigir" - -#: ../../mod/settings.php:593 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" - -#: ../../mod/settings.php:594 ../../mod/settings.php:620 -msgid "Icon url" -msgstr "dirección del icono" - -#: ../../mod/settings.php:594 -msgid "Optional" -msgstr "Opcional" - -#: ../../mod/settings.php:605 -msgid "You can't edit this application." -msgstr "No puede modificar esta aplicación." - -#: ../../mod/settings.php:648 -msgid "Connected Apps" -msgstr "Aplicaciones conectadas" - -#: ../../mod/settings.php:652 -msgid "Client key starts with" -msgstr "La clave de cliente empieza por" - -#: ../../mod/settings.php:653 -msgid "No name" -msgstr "Sin nombre" - -#: ../../mod/settings.php:654 -msgid "Remove authorization" -msgstr "Eliminar autorización" - -#: ../../mod/settings.php:668 -msgid "No feature settings configured" -msgstr "No se ha establecido la configuración de características" - -#: ../../mod/settings.php:685 -msgid "Feature/Addon Settings" -msgstr "Ajustes de la característica o el complemento" - -#: ../../mod/settings.php:687 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Configuración para el emulador de Diaspora incorporado" - -#: ../../mod/settings.php:688 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Permitir a cualquier miembro de Diaspora comentar en sus publicaciones públicas" - -#: ../../mod/settings.php:689 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Activar el protocolo de Diaspora para este canal" - -#: ../../mod/settings.php:690 -msgid "Diaspora Policy Settings" -msgstr "Configuración de directivas de Diaspora" - -#: ../../mod/settings.php:691 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " - -#: ../../mod/settings.php:715 -msgid "Account Settings" -msgstr "Configuración de la cuenta" - -#: ../../mod/settings.php:716 -msgid "Enter New Password:" -msgstr "Introduzca la nueva contraseña:" - -#: ../../mod/settings.php:717 -msgid "Confirm New Password:" -msgstr "Confirme la nueva contraseña:" - -#: ../../mod/settings.php:717 -msgid "Leave password fields blank unless changing" -msgstr "Dejar en blanco los campos de contraseña a menos que cambie" - -#: ../../mod/settings.php:719 ../../mod/settings.php:1057 -msgid "Email Address:" -msgstr "Dirección de correo electrónico:" - -#: ../../mod/settings.php:721 -msgid "Remove this account including all its channels" -msgstr "Eliminar esta cuenta incluyendo todos sus canales" - -#: ../../mod/settings.php:737 -msgid "Off" -msgstr "Desactivado" - -#: ../../mod/settings.php:737 -msgid "On" -msgstr "Activado" - -#: ../../mod/settings.php:744 -msgid "Additional Features" -msgstr "Características adicionales" - -#: ../../mod/settings.php:768 -msgid "Connector Settings" -msgstr "Configuración del conector" - -#: ../../mod/settings.php:807 -msgid "No special theme for mobile devices" -msgstr "Sin tema especial para dispositivos móviles" - -#: ../../mod/settings.php:810 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" - -#: ../../mod/settings.php:849 -msgid "Display Settings" -msgstr "Ajustes de visualización" - -#: ../../mod/settings.php:850 -msgid "Theme Settings" -msgstr "Ajustes del tema" - -#: ../../mod/settings.php:851 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados del tema" - -#: ../../mod/settings.php:852 -msgid "Content Settings" -msgstr "Ajustes del contenido" - -#: ../../mod/settings.php:858 -msgid "Display Theme:" -msgstr "Tema gráfico del perfil:" - -#: ../../mod/settings.php:859 -msgid "Mobile Theme:" -msgstr "Tema para el móvil:" - -#: ../../mod/settings.php:860 -msgid "Enable user zoom on mobile devices" -msgstr "Habilitar zoom de usuario en dispositivos móviles" - -#: ../../mod/settings.php:861 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" - -#: ../../mod/settings.php:861 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, sin máximo" - -#: ../../mod/settings.php:862 -msgid "Maximum number of conversations to load at any time:" -msgstr "Máximo número de conversaciones a cargar en cualquier momento:" - -#: ../../mod/settings.php:862 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 elementos" - -#: ../../mod/settings.php:863 -msgid "Show emoticons (smilies) as images" -msgstr "Mostrar emoticonos (smilies) como imágenes" - -#: ../../mod/settings.php:864 -msgid "Link post titles to source" -msgstr "Enlazar título de la publicación a la fuente original" - -#: ../../mod/settings.php:865 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de diseño de página del sistema - (avanzado)" - -#: ../../mod/settings.php:868 -msgid "Use blog/list mode on channel page" -msgstr "Usar modo blog/lista en la página de inicio del canal" - -#: ../../mod/settings.php:868 ../../mod/settings.php:869 -msgid "(comments displayed separately)" -msgstr "(comentarios mostrados de forma separada)" - -#: ../../mod/settings.php:869 -msgid "Use blog/list mode on matrix page" -msgstr "Mostrar la red en modo blog/lista" - -#: ../../mod/settings.php:870 -msgid "Channel page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página del canal (en píxeles)" - -#: ../../mod/settings.php:870 ../../mod/settings.php:871 -msgid "click to expand content exceeding this height" -msgstr "Pulsa para expandir el contenido que excede esta altura" +#: ../../mod/import_items.php:101 +msgid "Import completed" +msgstr "Importación completada" -#: ../../mod/settings.php:871 -msgid "Matrix page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página de la red (en píxeles)" +#: ../../mod/import_items.php:119 +msgid "Import Items" +msgstr "Importar elementos" -#: ../../mod/settings.php:905 -msgid "Nobody except yourself" -msgstr "Nadie excepto tú" - -#: ../../mod/settings.php:906 -msgid "Only those you specifically allow" -msgstr "Solo aquellos a los que usted permita explícitamente" - -#: ../../mod/settings.php:907 -msgid "Approved connections" -msgstr "Conexiones aprobadas" - -#: ../../mod/settings.php:908 -msgid "Any connections" -msgstr "Cualquier conexión" - -#: ../../mod/settings.php:909 -msgid "Anybody on this website" -msgstr "Cualquiera en este sitio web" - -#: ../../mod/settings.php:910 -msgid "Anybody in this network" -msgstr "Cualquiera en esta red" - -#: ../../mod/settings.php:911 -msgid "Anybody authenticated" -msgstr "Cualquiera que esté autenticado" - -#: ../../mod/settings.php:912 -msgid "Anybody on the internet" -msgstr "Cualquiera en internet" - -#: ../../mod/settings.php:986 -msgid "Publish your default profile in the network directory" -msgstr "Publicar su perfil principal en el directorio de la red" - -#: ../../mod/settings.php:991 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" - -#: ../../mod/settings.php:1000 -msgid "Your channel address is" -msgstr "Su dirección de canal es" - -#: ../../mod/settings.php:1048 -msgid "Channel Settings" -msgstr "Ajustes del canal" - -#: ../../mod/settings.php:1055 -msgid "Basic Settings" -msgstr "Configuración básica" - -#: ../../mod/settings.php:1058 -msgid "Your Timezone:" -msgstr "Su zona horaria:" - -#: ../../mod/settings.php:1059 -msgid "Default Post Location:" -msgstr "Ubicación de publicación predeterminada:" - -#: ../../mod/settings.php:1059 -msgid "Geographical location to display on your posts" -msgstr "Ubicación geográfica que debe mostrarse en sus publicaciones" - -#: ../../mod/settings.php:1060 -msgid "Use Browser Location:" -msgstr "Usar la localización del navegador:" - -#: ../../mod/settings.php:1062 -msgid "Adult Content" -msgstr "Contenido solo para adultos" - -#: ../../mod/settings.php:1062 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" - -#: ../../mod/settings.php:1064 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" - -#: ../../mod/settings.php:1066 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" - -#: ../../mod/settings.php:1068 -msgid "Hide my online presence" -msgstr "Ocultra mi presencia en línea" - -#: ../../mod/settings.php:1068 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evitar mostrar en su perfil que está en línea" - -#: ../../mod/settings.php:1070 -msgid "Simple Privacy Settings:" -msgstr "Configuración de privacidad sencilla:" - -#: ../../mod/settings.php:1071 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" - -#: ../../mod/settings.php:1072 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" - -#: ../../mod/settings.php:1073 -msgid "Private - default private, never open or public" -msgstr "Privado - por defecto, privado, nunca abierto o público" - -#: ../../mod/settings.php:1074 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" - -#: ../../mod/settings.php:1076 -msgid "Allow others to tag your posts" -msgstr "Permitir a otros etiquetar sus publicaciones" - -#: ../../mod/settings.php:1076 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." - -#: ../../mod/settings.php:1078 -msgid "Advanced Privacy Settings" -msgstr "Configuración de privacidad avanzada" - -#: ../../mod/settings.php:1080 -msgid "Expire other channel content after this many days" -msgstr "Caducar contenido de otro canal después de este número de días" - -#: ../../mod/settings.php:1080 -msgid "0 or blank prevents expiration" -msgstr "0 o en claro evitan la caducidad" - -#: ../../mod/settings.php:1081 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo de solicitudes de amistad por día:" - -#: ../../mod/settings.php:1081 -msgid "May reduce spam activity" -msgstr "Podría reducir la actividad de spam" - -#: ../../mod/settings.php:1082 -msgid "Default Post Permissions" -msgstr "Permidos de publicación predeterminados" - -#: ../../mod/settings.php:1087 -msgid "Channel permissions category:" -msgstr "Categoría de permisos del canal:" - -#: ../../mod/settings.php:1093 -msgid "Maximum private messages per day from unknown people:" -msgstr "Máximo de mensajes privados por día de gente desconocida:" - -#: ../../mod/settings.php:1093 -msgid "Useful to reduce spamming" -msgstr "Útil para reducir el envío de correo no deseado" - -#: ../../mod/settings.php:1096 -msgid "Notification Settings" -msgstr "Configuración de notificaciones" - -#: ../../mod/settings.php:1097 -msgid "By default post a status message when:" -msgstr "Por defecto, enviar un mensaje de estado cuando:" - -#: ../../mod/settings.php:1098 -msgid "accepting a friend request" -msgstr "acepte una solicitud de amistad" - -#: ../../mod/settings.php:1099 -msgid "joining a forum/community" -msgstr "al unirse a un foro o comunidad" - -#: ../../mod/settings.php:1100 -msgid "making an interesting profile change" -msgstr "realice un cambio interesante en su perfil" - -#: ../../mod/settings.php:1101 -msgid "Send a notification email when:" -msgstr "Enviar una notificación por correo electrónico cuando:" - -#: ../../mod/settings.php:1102 -msgid "You receive a connection request" -msgstr "Reciba una solicitud de conexión" - -#: ../../mod/settings.php:1103 -msgid "Your connections are confirmed" -msgstr "Sus conexiones hayan sido confirmadas" - -#: ../../mod/settings.php:1104 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en la página de su perfil (muro)" - -#: ../../mod/settings.php:1105 -msgid "Someone writes a followup comment" -msgstr "Alguien escriba un comentario sobre sus publicaciones" - -#: ../../mod/settings.php:1106 -msgid "You receive a private message" -msgstr "Reciba un mensaje privado" - -#: ../../mod/settings.php:1107 -msgid "You receive a friend suggestion" -msgstr "Reciba una sugerencia de amistad" - -#: ../../mod/settings.php:1108 -msgid "You are tagged in a post" -msgstr "Usted sea etiquetado en una publicación" - -#: ../../mod/settings.php:1109 -msgid "You are poked/prodded/etc. in a post" -msgstr "Recibir un toque o incitación en una publicación" - -#: ../../mod/settings.php:1112 -msgid "Show visual notifications including:" -msgstr "Mostrar notificaciones visuales que incluyan:" - -#: ../../mod/settings.php:1114 -msgid "Unseen matrix activity" -msgstr "Actividad no vista en la red" - -#: ../../mod/settings.php:1115 -msgid "Unseen channel activity" -msgstr "Actividad no vista en el canal" - -#: ../../mod/settings.php:1116 -msgid "Unseen private messages" -msgstr "Mensajes privados no leídos" - -#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Recommended" -msgstr "Recomendado" - -#: ../../mod/settings.php:1117 -msgid "Upcoming events" -msgstr "Próximos eventos" - -#: ../../mod/settings.php:1118 -msgid "Events today" -msgstr "Eventos de hoy" - -#: ../../mod/settings.php:1119 -msgid "Upcoming birthdays" -msgstr "Próximos cumpleaños" - -#: ../../mod/settings.php:1119 -msgid "Not available in all themes" -msgstr "No disponible en todos los temas" - -#: ../../mod/settings.php:1120 -msgid "System (personal) notifications" -msgstr "Notificaciones del sistema (personales)" - -#: ../../mod/settings.php:1121 -msgid "System info messages" -msgstr "Mensajes de información del sistema" - -#: ../../mod/settings.php:1122 -msgid "System critical alerts" -msgstr "Alertas críticas del sistema" - -#: ../../mod/settings.php:1123 -msgid "New connections" -msgstr "Nuevas conexiones" - -#: ../../mod/settings.php:1124 -msgid "System Registrations" -msgstr "Registros del sistema" - -#: ../../mod/settings.php:1125 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" - -#: ../../mod/settings.php:1127 -msgid "Notify me of events this many days in advance" -msgstr "Avisarme de los eventos con algunos días de antelación" - -#: ../../mod/settings.php:1127 -msgid "Must be greater than 0" -msgstr "Debe ser mayor que 0" - -#: ../../mod/settings.php:1129 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustes avanzados de la cuenta y de los tipos de página" - -#: ../../mod/settings.php:1130 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" - -#: ../../mod/settings.php:1133 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Activar modo experto (en Ajustes > Características Adicionales) para ajustar." - -#: ../../mod/settings.php:1134 -msgid "Miscellaneous Settings" -msgstr "Ajustes diversos" - -#: ../../mod/settings.php:1136 -msgid "Personal menu to display in your channel pages" -msgstr "Menú personal que debe mostrarse en las páginas de su canal" - -#: ../../mod/settings.php:1137 ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Eliminar canal" - -#: ../../mod/settings.php:1138 -msgid "Remove this channel." -msgstr "Eliminar este canal." - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Nombre" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Apellido" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Sobrenombre o Alias" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Nombre completo" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Foto de perfil 16px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Foto de perfil 32px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Foto de perfil 48px" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Foto de perfil 64px" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Foto de perfil 80px" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Foto de perfil 128px" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Zona horaria" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "Dirección de la página personal" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Año de nacimiento" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Mes de nacimiento" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Día de nacimiento" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Fecha de nacimiento" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Sin mensajes." - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Total de votos" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Valoración media" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Eliminar este canal" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Este canal va a ser completamente eliminado de la red." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Eliminar este canal y todos sus clones de la red" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "No se ha podido acceder al registro de contacto." - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "No se ha podido localizar el perfil seleccionado." - -#: ../../mod/connedit.php:219 -msgid "Connection updated." -msgstr "Conexión actualizada." - -#: ../../mod/connedit.php:221 -msgid "Failed to update connection record." -msgstr "Error al actualizar el registro de la conexión." - -#: ../../mod/connedit.php:267 -msgid "is now connected to" -msgstr "ahora está conectado a" - -#: ../../mod/connedit.php:392 -msgid "Could not access address book record." -msgstr "No se pudo acceder a la entrada en su libreta de direcciones." - -#: ../../mod/connedit.php:406 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Recarga fallida - no se puede encontrar actualmente el canal" - -#: ../../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 "No ha sido posible establecer los parámetros de la libreta de direcciones." - -#: ../../mod/connedit.php:494 -msgid "Connection has been removed." -msgstr "La conexión ha sido eliminada." - -#: ../../mod/connedit.php:513 -#, php-format -msgid "View %s's profile" -msgstr "Ver el perfil de %s" - -#: ../../mod/connedit.php:517 -msgid "Refresh Permissions" -msgstr "Recargar los permisos" - -#: ../../mod/connedit.php:520 -msgid "Fetch updated permissions" -msgstr "Obtener los permisos actualizados" - -#: ../../mod/connedit.php:524 -msgid "Recent Activity" -msgstr "Actividad reciente" - -#: ../../mod/connedit.php:527 -msgid "View recent posts and comments" -msgstr "Ver publicaciones y comentarios recientes" - -#: ../../mod/connedit.php:534 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" - -#: ../../mod/connedit.php:535 -msgid "This connection is blocked!" -msgstr "¡Esta conexión está bloqueada!" - -#: ../../mod/connedit.php:539 -msgid "Unignore" -msgstr "Dejar de ignorar" - -#: ../../mod/connedit.php:539 ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorar" - -#: ../../mod/connedit.php:542 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" - -#: ../../mod/connedit.php:543 -msgid "This connection is ignored!" -msgstr "¡Esta conexión es ignorada!" - -#: ../../mod/connedit.php:547 -msgid "Unarchive" -msgstr "Desarchivar" - -#: ../../mod/connedit.php:547 -msgid "Archive" -msgstr "Archivar" - -#: ../../mod/connedit.php:550 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" - -#: ../../mod/connedit.php:551 -msgid "This connection is archived!" -msgstr "¡Esta conexión esta archivada!" - -#: ../../mod/connedit.php:555 -msgid "Unhide" -msgstr "Mostrar" - -#: ../../mod/connedit.php:555 -msgid "Hide" -msgstr "Ocultar" - -#: ../../mod/connedit.php:558 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" - -#: ../../mod/connedit.php:559 -msgid "This connection is hidden!" -msgstr "¡Esta conexión está oculta!" - -#: ../../mod/connedit.php:566 -msgid "Delete this connection" -msgstr "Eliminar esta conexión" - -#: ../../mod/connedit.php:647 -msgid "Approve this connection" -msgstr "Aprobar esta conexión" - -#: ../../mod/connedit.php:647 -msgid "Accept connection to allow communication" -msgstr "Aceptar la conexión para permitir la comunicación" - -#: ../../mod/connedit.php:652 -msgid "Set Affinity" -msgstr "Ajustar Afinidad" - -#: ../../mod/connedit.php:655 -msgid "Set Profile" -msgstr "Ajustar Perfil" - -#: ../../mod/connedit.php:658 -msgid "Set Affinity & Profile" -msgstr "Ajustar Afinidad y Perfil" - -#: ../../mod/connedit.php:675 -msgid "Apply these permissions automatically" -msgstr "Aplicar estos permisos automaticamente" - -#: ../../mod/connedit.php:677 -msgid "This connection's address is" -msgstr "La dirección de esta conexión es" - -#: ../../mod/connedit.php:680 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." - -#: ../../mod/connedit.php:682 -msgid "Slide to adjust your degree of friendship" -msgstr "Deslizar para ajustar el grado de amistad" - -#: ../../mod/connedit.php:684 -msgid "Slide to adjust your rating" -msgstr "Deslizar para ajustar su valoración" - -#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 -msgid "Optionally explain your rating" -msgstr "Opcionalmente, puede explicar su valoración" - -#: ../../mod/connedit.php:687 -msgid "Custom Filter" -msgstr "Filtro Personalizado" - -#: ../../mod/connedit.php:688 -msgid "Only import posts with this text" -msgstr "Importar solo entradas que contengan este texto" - -#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 -msgid "" -"words one per line or #tags or /patterns/, leave blank to import all posts" -msgstr "Palabras, una por línea o #etiquetas o /patrones/, dejar en blanco para importar todas las entradas" - -#: ../../mod/connedit.php:689 -msgid "Do not import posts with this text" -msgstr "No importar entradas que contienen este texto" - -#: ../../mod/connedit.php:691 -msgid "This information is public!" -msgstr "¡Esta información es pública!" - -#: ../../mod/connedit.php:696 -msgid "Connection Pending Approval" -msgstr "Conexión pendiente de aprobación" - -#: ../../mod/connedit.php:697 -msgid "Connection Request" -msgstr "Solicitud de conexión" - -#: ../../mod/connedit.php:698 -#, php-format -msgid "" -"(%s) would like to connect with you. Please approve this connection to allow" -" communication." -msgstr "(%s) desearía conectar con usted. por favor, apruebe esta conexión para permitir la comunicación." - -#: ../../mod/connedit.php:700 -msgid "Approve Later" -msgstr "Aprobar más tarde" - -#: ../../mod/connedit.php:703 -msgid "inherited" -msgstr "heredado" - -#: ../../mod/connedit.php:705 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." - -#: ../../mod/connedit.php:707 -msgid "Their Settings" -msgstr "Sus ajustes" - -#: ../../mod/connedit.php:708 -msgid "My Settings" -msgstr "Mis ajustes" - -#: ../../mod/connedit.php:710 -msgid "Individual Permissions" -msgstr "Permisos individuales" - -#: ../../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 "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." - -#: ../../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 "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún impacto hasta que cambie los ajustes heredados." - -#: ../../mod/connedit.php:713 -msgid "Last update:" -msgstr "Última actualización:" - -#: ../../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 "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. por favor, compruebe que la ID está correctamente escrita." - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "El mensaje de error fue:" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Falló la autenticación." - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Acceso desde su servidor" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Acceder" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Imposible asociar a un destinatario." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Imposible comunicar con el canal solicitado." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Mensaje eliminado." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Mensaje recuperado." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "Para:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Asunto:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Enviar" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "No se encuentra el mensaje." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Mensaje eliminado" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Recuperar el mensaje" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "El mensaje ha sido recuperado." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Conversación privada" - -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicación segura no disponible. Pero puede responder desde la página de perfil del remitente." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Responder" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Petición inválida del identificador." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Descartar" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Por favor, inicie sesión." - -#: ../../mod/post.php:235 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo." - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Añadir un canal" - -#: ../../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 "Un canal está formado por su propia colección de páginas web relacionadas. Se puede utilizar para almacenar los perfiles sociales de la red, blogs, grupos de conversación y foros, páginas de famosos y mucho más. Puede crear tantos canales como su proveedor de servicio permita." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Ejemplos: \"Juan García\", \"Isabel y sus caballos\", \"Fútbol\", \"Grupo de parapente\" " - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" - -#: ../../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 "Su alias podrá usarse para crear una dirección de canal fácilmente memorizable (como una dirección de correo electrónico) que puede ser compartido con otros." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "O importar un canal existente de otro lugar" - -#: ../../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 "Elija el tipo de canal (como red social o foro de discusión) y la privacidad que requiera, así podremos seleccionar el mejor conjunto de permisos para usted" - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Tipo de canal" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Leer más sobre los roles" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "Aplicación instalada." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Aplicación con errores" - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "código incorporado" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Modificar la aplicación" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Crear una aplicación" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Nombre de la aplicación" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ubicación (URL) de la aplicación" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "Dirección del icono que se va a utilizar para esta foto" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versión" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Precio de la aplicación" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ubicación (URL) donde adquirir la aplicación" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "enviarle un mensaje privado" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "publicó un evento" - -#: ../../mod/layouts.php:176 -msgid "Comanche page description language help" -msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" - -#: ../../mod/layouts.php:180 -msgid "Layout Description" -msgstr "Descripción del formato" - -#: ../../mod/layouts.php:185 -msgid "Download PDL file" -msgstr "Descargar el fichero PDL" - -#: ../../mod/home.php:73 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" - -#: ../../mod/page.php:126 -msgid "Lorem Ipsum" -msgstr "Lorem Ipsum" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Marcador añadido" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mis Marcadores" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Marcadores de mis conexiones" - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." - -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." - -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" -msgstr "Editor de configuración" - -#: ../../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 "Atención: El cambio de algunos ajustes puede volver inoperante su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." - -#: ../../mod/suggest.php:35 +#: ../../mod/import_items.php:120 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Sondear" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Mostrar resultados" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "No se han encontrado restricciones sobre esta clase de servicio." - -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "Ficheros: compartidos conmigo" - -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "NUEVO" - -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "Borrar todos los ficheros" - -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "Borrar este fichero" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Esquema predeterminado" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" +"Use this form to import existing posts and content from an export file." +msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" +#: ../../view/theme/redbasic/php/config.php:82 +msgid "Focus (Hubzilla default)" +msgstr "Focus (predefinido)" -#: ../../view/theme/apw/php/config.php:259 #: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "Ajustes del tema" -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Ajustar esquema" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Ajustar el tamaño del tipo de letra para entradas y comentarios" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Ajustar el tipo de letra" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Ajustar el conjunto de iconos" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Ajustar el sombreado grande, por defecto 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Ajustar el sombreado pequeño, por defecto 5px 5px 5px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Ajustar el color del sombreado, predeterminado a #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Ajusta el tamaño del radio, predeterminado a 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Ajustar la altura de linea para entradas y comentarios" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Ajustar la imagen de fondo" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Ajustar el fondo adjuntado" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Ajustar el color de fondo" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Ajustar la imagen de la sección del fondo" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Ajustar el color de la sección del fondo" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Ajustar el color de los elementos - utilizar código hexadecimal" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Ajusta el color de los enlaces - utilizar código hexadecimal" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Ajustar la anchura máxima para los elementos. Predeterminado a 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Ajustar la anchura mínima para los elementos. Predeterminado a 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Ajustar el ancho de la envoltura del contenido genérico. Predeterminado 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Ajustar el color del tipo de letra - utiliza código hexadecimal" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Ajustar el tamaño de fondo del elemento" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Opacidad del elemento" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Mostrar solo las previsualizaciones de las entradas" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Muestra la barra lateral en la página del canal" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Color de la barra de navegación" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Elemento flotante" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Desplazamiento izquierdo del elemento de la sección" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Desplazamiento derecho del elemento de la sección" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Ancho de la sección" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Desplazamiento izquierdo del lateral" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Desplazamiento derecho del elemento lateral" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Red Matrix default)" -msgstr "Ligero (predeterminado de RedMatrix)" - #: ../../view/theme/redbasic/php/config.php:103 msgid "Select scheme" msgstr "Elegir un esquema" @@ -8995,6 +9118,10 @@ msgstr "Ajustar el tamaño de letra para toda la aplicación" msgid "Example: 14px" msgstr "Ejemplo: 14px" +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Ajustar el tamaño del tipo de letra para entradas y comentarios" + #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-color for posts and comments" msgstr "Establecer el color de la letra para publicaciones y comentarios" @@ -9016,8 +9143,8 @@ msgid "Leave empty for default width" msgstr "Dejar en blanco para la anchura predeterminada" #: ../../view/theme/redbasic/php/config.php:129 -msgid "Center page content" -msgstr "Contenido del centro de la página" +msgid "Left align page content" +msgstr "Alinear a la izquierda el contenido de la página" #: ../../view/theme/redbasic/php/config.php:130 msgid "Set minimum opacity of nav bar - to hide it" @@ -9031,51 +9158,51 @@ msgstr "Ajustar el tamaño de la foto del autor de la conversación" msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" -#: ../../boot.php:1355 +#: ../../boot.php:1308 #, php-format msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." -#: ../../boot.php:1358 +#: ../../boot.php:1311 #, php-format msgid "Update Error at %s" -msgstr "Error de Actualización en %s" +msgstr "Error de actualización en %s" -#: ../../boot.php:1525 +#: ../../boot.php:1478 msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de la red" +"Create an account to access services and applications within the Hubzilla" +msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla" -#: ../../boot.php:1553 +#: ../../boot.php:1506 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1554 +#: ../../boot.php:1507 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1557 +#: ../../boot.php:1510 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2177 +#: ../../boot.php:2136 msgid "toggle mobile" msgstr "cambiar a modo móvil" -#: ../../boot.php:2312 +#: ../../boot.php:2271 msgid "Website SSL certificate is not valid. Please correct." -msgstr "El certificado SSL del sitio web no es válido. Por favor, corríjalo." +msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema." + +#: ../../boot.php:2274 +#, php-format +msgid "[hubzilla] Website SSL error for %s" +msgstr "[hubzilla] Error SSL del sitio web en %s" + +#: ../../boot.php:2311 +msgid "Cron/Scheduled tasks not running." +msgstr "Las tareas del Planificador/Cron no están funcionando." #: ../../boot.php:2315 #, php-format -msgid "[red] Website SSL error for %s" -msgstr "[red] Error SSL del sitio web en %s" - -#: ../../boot.php:2352 -msgid "Cron/Scheduled tasks not running." -msgstr "Las tareas del Planificador/Cron no se están funcionando." - -#: ../../boot.php:2356 -#, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "[red] Las tareas de Cron no están funcionando en %s" +msgid "[hubzilla] Cron tasks not running on %s" +msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s" diff --git a/view/es/hstrings.php b/view/es/hstrings.php index 1d91ed820..8b2145108 100644 --- a/view/es/hstrings.php +++ b/view/es/hstrings.php @@ -5,57 +5,75 @@ function string_plural_select_es($n){ return ($n != 1);; }} ; -$a->strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; -$a->strings["Profile Photos"] = "Fotos de perfil"; -$a->strings["Edit"] = "Editar"; -$a->strings["Frequently"] = "Frecuentemente"; -$a->strings["Hourly"] = "Cada hora"; -$a->strings["Twice daily"] = "Dos veces al día"; -$a->strings["Daily"] = "Diariamente"; -$a->strings["Weekly"] = "Semanalmente"; -$a->strings["Monthly"] = "Mensualmente"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "Correo electrónico"; -$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"] = "ha creado una nueva entrada"; -$a->strings["commented on %s's post"] = "ha comentado la entrada de %s"; +$a->strings["Permission denied."] = "Acceso denegado."; +$a->strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; +$a->strings["Image file is empty."] = "El fichero de imagen está vacío. "; +$a->strings["Unable to process image"] = "No ha sido posible procesar la imagen"; +$a->strings["Photo storage failed."] = "La foto no ha podido ser guardada."; +$a->strings["Photo Albums"] = "Álbumes de fotos"; +$a->strings["Upload New Photos"] = "Subir nuevas fotos"; $a->strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; $a->strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; $a->strings["Import completed."] = "Importación completada."; -$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."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto por favor cree otro grupo con un nombre diferente."; -$a->strings["Default privacy group for new contacts"] = "Privacidad de grupo por defecto para nuevos contactos "; -$a->strings["All Channels"] = "Todos los canales"; -$a->strings["edit"] = "editar"; -$a->strings["Collections"] = "Colecciones"; -$a->strings["Edit collection"] = "Editar colección"; -$a->strings["Add new collection"] = "Añadir nueva colección"; -$a->strings["Channels not in any collection"] = "El canal no se encuentra en ninguna colección"; -$a->strings["add"] = "añadir"; -$a->strings["Not a valid email address"] = "Dirección de correo no válida"; -$a->strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a los dominios permitidos en este sitio."; -$a->strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; -$a->strings["An invitation is required."] = "Es obligatorio que le inviten."; -$a->strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; -$a->strings["Please enter the required information."] = "Por favor introduzca la información requerida."; -$a->strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; -$a->strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; -$a->strings["Registration request at %s"] = "Solicitud de registro en %s"; -$a->strings["Administrator"] = "Administrador"; -$a->strings["your registration password"] = "su contraseña de registro"; -$a->strings["Registration details for %s"] = "Detalles del registro de %s"; -$a->strings["Account approved."] = "Cuenta aprobada."; -$a->strings["Registration revoked for %s"] = "Registro revocado para %s"; -$a->strings["Account verified. Please login."] = "Cuenta verificada. Por favor, inicie sesión."; -$a->strings["Click here to upgrade."] = "Pulse aquí para actualizar"; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; -$a->strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; +$a->strings["parent"] = "padre"; +$a->strings["Collection"] = "Colección"; +$a->strings["Principal"] = "Principal"; +$a->strings["Addressbook"] = "Libreta de direcciones"; +$a->strings["Calendar"] = "Calendario"; +$a->strings["Schedule Inbox"] = "Programar bandeja de entrada"; +$a->strings["Schedule Outbox"] = "Programar bandeja de salida"; +$a->strings["Unknown"] = "Desconocido"; +$a->strings["%1\$s used"] = "%1\$s usado"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s usado de %2\$s (%3\$s%)"; +$a->strings["Files"] = "Ficheros"; +$a->strings["Total"] = "Total"; +$a->strings["Shared"] = "Compartido"; +$a->strings["Create"] = "Crear"; +$a->strings["Upload"] = "Subir"; +$a->strings["Name"] = "Nombre"; +$a->strings["Type"] = "Tipo"; +$a->strings["Size"] = "Tamaño"; +$a->strings["Last Modified"] = "Última modificación"; +$a->strings["Edit"] = "Editar"; +$a->strings["Delete"] = "Eliminar"; +$a->strings["Create new folder"] = "Crear nueva carpeta"; +$a->strings["Upload file"] = "Subir fichero"; +$a->strings["Can view my normal stream and posts"] = "Pueden verse mi flujo de actividad y publicaciones normales"; +$a->strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; +$a->strings["Can view my connections"] = "Pueden verse mis conexiones"; +$a->strings["Can view my file storage and photos"] = "Pueden verse mi repositorio de ficheros y mis fotos"; +$a->strings["Can view my webpages"] = "Pueden verse mis páginas web"; +$a->strings["Can send me their channel stream and posts"] = "Me pueden enviar sus entradas y flujo de actividad del canal"; +$a->strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; +$a->strings["Can comment on or like my posts"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'."; +$a->strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados"; +$a->strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; +$a->strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención"; +$a->strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; +$a->strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; +$a->strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; +$a->strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; +$a->strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; +$a->strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; +$a->strings["Social Networking"] = "Redes sociales"; +$a->strings["Mostly Public"] = "Público en su mayor parte"; +$a->strings["Restricted"] = "Restringido"; +$a->strings["Private"] = "Privado"; +$a->strings["Community Forum"] = "Foro de discusión"; +$a->strings["Feed Republish"] = "Republicar un \"feed\""; +$a->strings["Special Purpose"] = "Propósito especial"; +$a->strings["Celebrity/Soapbox"] = "Página para fans"; +$a->strings["Group Repository"] = "Repositorio de grupo"; +$a->strings["Other"] = "Otro"; +$a->strings["Custom/Expert Mode"] = "Modo personalizado/experto"; +$a->strings["Missing room name"] = "Sala de chat sin nombre"; +$a->strings["Duplicate room name"] = "Nombre de sala duplicado."; +$a->strings["Invalid room specifier."] = "Especificador de sala no válido."; +$a->strings["Room not found."] = "Sala no encontrada."; +$a->strings["Room is full"] = "La sala está llena."; $a->strings["Miscellaneous"] = "Varios"; $a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; $a->strings["Required"] = "Obligatorio"; @@ -78,21 +96,68 @@ $a->strings["seconds"] = "segundos"; $a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; $a->strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; $a->strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; -$a->strings["Directory Options"] = "Opciones del directorio"; -$a->strings["Safe Mode"] = "Modo seguro"; -$a->strings["No"] = "No"; -$a->strings["Yes"] = "Sí"; -$a->strings["Public Forums Only"] = "Solo foros públicos"; -$a->strings["This Website Only"] = "Solo este sitio web"; -$a->strings["New Page"] = "Nueva página"; -$a->strings["View"] = "Ver"; -$a->strings["Preview"] = "Previsualizar"; -$a->strings["Actions"] = "Acciones"; -$a->strings["Page Link"] = "Vínculo de la página"; -$a->strings["Title"] = "Título"; -$a->strings["Created"] = "Creado"; -$a->strings["Edited"] = "Editado"; -$a->strings["Public Timeline"] = "Cronología pública"; +$a->strings["General Features"] = "Características generales"; +$a->strings["Content Expiration"] = "Caducidad del contenido"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; +$a->strings["Multiple Profiles"] = "Múltiples perfiles"; +$a->strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +$a->strings["Advanced Profiles"] = "Perfiles avanzados"; +$a->strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; +$a->strings["Profile Import/Export"] = "Importar/Exportar perfil"; +$a->strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; +$a->strings["Web Pages"] = "Páginas web"; +$a->strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; +$a->strings["Private Notes"] = "Notas privadas"; +$a->strings["Enables a tool to store notes and reminders"] = "Activar una herramienta para almacenar notas y recordatorios"; +$a->strings["Navigation Channel Select"] = "Navegación por el selector de canales"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; +$a->strings["Photo Location"] = "Ubicación de las fotos"; +$a->strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; +$a->strings["Expert Mode"] = "Modo de experto"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; +$a->strings["Premium Channel"] = "Canal premium"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Les permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; +$a->strings["Post Composition Features"] = "Características de composición de entradas"; +$a->strings["Use Markdown"] = "Usar Markdown"; +$a->strings["Allow use of \"Markdown\" to format posts"] = "Permitir el uso de \"Markdown\" para formatear publicaciones"; +$a->strings["Large Photos"] = "Fotos de gran tamaño"; +$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (640px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (320px)"; +$a->strings["Channel Sources"] = "Orígenes de los contenidos del canal"; +$a->strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; +$a->strings["Even More Encryption"] = "Más cifrado todavía"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; +$a->strings["Enable voting tools"] = "Activar herramientas de votación"; +$a->strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; +$a->strings["Network and Stream Filtering"] = "Filtrado del contenido"; +$a->strings["Search by Date"] = "Buscar por fecha"; +$a->strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; +$a->strings["Collections Filter"] = "Filtrado de colecciones"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Habilitar la muestra de entradas eligiendo colecciones"; +$a->strings["Saved Searches"] = "Búsquedas guardadas"; +$a->strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; +$a->strings["Network Personal Tab"] = "Actividad personal"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; +$a->strings["Network New Tab"] = "Contenido nuevo"; +$a->strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; +$a->strings["Affinity Tool"] = "Herramienta de afinidad"; +$a->strings["Filter stream activity by depth of relationships"] = "Filtrar la actividad del flujo por profundidad de relaciones"; +$a->strings["Connection Filtering"] = "Filtrado de conexiones"; +$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; +$a->strings["Suggest Channels"] = "Sugerir canales"; +$a->strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; +$a->strings["Post/Comment Tools"] = "Herramientas de entradas/comentarios"; +$a->strings["Tagging"] = "Etiquetado"; +$a->strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; +$a->strings["Post Categories"] = "Categorías de entradas"; +$a->strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; +$a->strings["Saved Folders"] = "Carpetas guardadas"; +$a->strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; +$a->strings["Dislike Posts"] = "Desagrado de publicaciones"; +$a->strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; +$a->strings["Star Posts"] = "Entradas destacadas"; +$a->strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; +$a->strings["Tag Cloud"] = "Nube de etiquetas"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; $a->strings["Default"] = "Predeterminado"; $a->strings["Delete this item?"] = "¿Borrar este elemento?"; $a->strings["Comment"] = "Comentar"; @@ -101,7 +166,7 @@ $a->strings["[-] show less"] = "[-] mostrar menos"; $a->strings["[+] expand"] = "[+] expandir"; $a->strings["[-] collapse"] = "[-] contraer"; $a->strings["Password too short"] = "Contraseña demasiado corta"; -$a->strings["Passwords do not match"] = "Las contraseñas no cinciden"; +$a->strings["Passwords do not match"] = "Las contraseñas no coinciden"; $a->strings["everybody"] = "cualquiera"; $a->strings["Secret Passphrase"] = "Contraseña secreta"; $a->strings["Passphrase hint"] = "Pista de contraseña"; @@ -116,7 +181,7 @@ $a->strings["Please enter a link URL"] = "Por favor, introduzca una dirección d $a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?"; $a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; $a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -$a->strings["ago"] = "de su publicación"; +$a->strings["ago"] = "antes"; $a->strings["from now"] = "desde ahora"; $a->strings["less than a minute"] = "menos de un minuto"; $a->strings["about a minute"] = "alrededor de un minuto"; @@ -131,6 +196,219 @@ $a->strings["about a year"] = "alrededor de un año"; $a->strings["%d years"] = "%d años"; $a->strings[" "] = " "; $a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["January"] = "enero"; +$a->strings["February"] = "febrero"; +$a->strings["March"] = "marzo"; +$a->strings["April"] = "abril"; +$a->strings["__ctx:long__ May"] = "mayo"; +$a->strings["June"] = "junio"; +$a->strings["July"] = "julio"; +$a->strings["August"] = "agosto"; +$a->strings["September"] = "septiembre"; +$a->strings["October"] = "octubre"; +$a->strings["November"] = "noviembre"; +$a->strings["December"] = "diciembre"; +$a->strings["Jan"] = "Ene"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Abr"; +$a->strings["__ctx:short__ May"] = "May"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Ago"; +$a->strings["Sep"] = "Sep"; +$a->strings["Oct"] = "Oct"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dic"; +$a->strings["Sunday"] = "domingo"; +$a->strings["Monday"] = "lunes"; +$a->strings["Tuesday"] = "martes"; +$a->strings["Wednesday"] = "miércoles"; +$a->strings["Thursday"] = "jueves"; +$a->strings["Friday"] = "viernes"; +$a->strings["Saturday"] = "sábado"; +$a->strings["Sun"] = "Dom"; +$a->strings["Mon"] = "Lun"; +$a->strings["Tue"] = "Mar"; +$a->strings["Wed"] = "Mié"; +$a->strings["Thu"] = "Jue"; +$a->strings["Fri"] = "Vie"; +$a->strings["Sat"] = "Sáb"; +$a->strings["__ctx:calendar__ today"] = "hoy"; +$a->strings["__ctx:calendar__ month"] = "mes"; +$a->strings["__ctx:calendar__ week"] = "semana"; +$a->strings["__ctx:calendar__ day"] = "día"; +$a->strings["__ctx:calendar__ All day"] = "Todos los días"; +$a->strings["Frequently"] = "Frecuentemente"; +$a->strings["Hourly"] = "Cada hora"; +$a->strings["Twice daily"] = "Dos veces al día"; +$a->strings["Daily"] = "Diariamente"; +$a->strings["Weekly"] = "Semanalmente"; +$a->strings["Monthly"] = "Mensualmente"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Correo electrónico"; +$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 "] = "y"; +$a->strings["public profile"] = "perfil público"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s cambió %2\$s a “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s actualizó %2\$s, %3\$s cambió."; +$a->strings["Connect"] = "Conectar"; +$a->strings["New window"] = "Nueva ventana"; +$a->strings["Open the selected location in a different window or browser tab"] = "Abrir la ubicación seleccionada en una ventana o pestaña aparte"; +$a->strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; +$a->strings["Permission denied"] = "Permiso denegado"; +$a->strings["(Unknown)"] = "(Desconocido)"; +$a->strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; +$a->strings["Visible to you only."] = "Visible sólo para usted."; +$a->strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; +$a->strings["Visible to anybody authenticated."] = "Visible para cualquiera que haya sido autenticado."; +$a->strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; +$a->strings["Visible to all connections."] = "Visible para todas las conexiones."; +$a->strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; +$a->strings["Visible to specific connections."] = "Visible para conexiones específicas."; +$a->strings["Item not found."] = "Elemento no encontrado."; +$a->strings["Collection not found."] = "Colección no encontrada."; +$a->strings["Collection is empty."] = "La colección está vacía."; +$a->strings["Collection: %s"] = "Colección: %s"; +$a->strings["Connection: %s"] = "Conexión: %s"; +$a->strings["Connection not found."] = "Conexión no encontrada"; +$a->strings["Public Timeline"] = "Cronología pública"; +$a->strings["view full size"] = "Ver en el tamaño original"; +$a->strings["\$Projectname Notification"] = "Notificación de \$Projectname"; +$a->strings["\$projectname"] = "\$projectname"; +$a->strings["Thank You,"] = "Gracias,"; +$a->strings["%s Administrator"] = "%s Administrador"; +$a->strings["Administrator"] = "Administrador"; +$a->strings["No Subject"] = "Sin asunto"; +$a->strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; +$a->strings["Visible to your default audience"] = "Visible para su público predeterminado."; +$a->strings["Show"] = "Mostrar"; +$a->strings["Don't show"] = "No mostrar"; +$a->strings["Permissions"] = "Permisos"; +$a->strings["Close"] = "Cerrar"; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; +$a->strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; +$a->strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; +$a->strings["created a new post"] = "ha creado una nueva entrada"; +$a->strings["commented on %s's post"] = "ha comentado la entrada de %s"; +$a->strings["New Page"] = "Nueva página"; +$a->strings["View"] = "Ver"; +$a->strings["Preview"] = "Previsualizar"; +$a->strings["Actions"] = "Acciones"; +$a->strings["Page Link"] = "Vínculo de la página"; +$a->strings["Title"] = "Título"; +$a->strings["Created"] = "Creado"; +$a->strings["Edited"] = "Editado"; +$a->strings["Profile Photos"] = "Fotos del perfil"; +$a->strings["Male"] = "Hombre"; +$a->strings["Female"] = "Mujer"; +$a->strings["Currently Male"] = "Actualmente hombre"; +$a->strings["Currently Female"] = "Actualmente mujer"; +$a->strings["Mostly Male"] = "Generalmente hombre"; +$a->strings["Mostly Female"] = "Generalmente mujer"; +$a->strings["Transgender"] = "Transgénero"; +$a->strings["Intersex"] = "Intersexual"; +$a->strings["Transsexual"] = "Transexual"; +$a->strings["Hermaphrodite"] = "Hermafrodita"; +$a->strings["Neuter"] = "Neutral"; +$a->strings["Non-specific"] = "No especificado"; +$a->strings["Undecided"] = "Indeciso/a"; +$a->strings["Males"] = "Hombres"; +$a->strings["Females"] = "Mujeres"; +$a->strings["Gay"] = "Homosexual"; +$a->strings["Lesbian"] = "Lesbiana"; +$a->strings["No Preference"] = "Sin preferencias"; +$a->strings["Bisexual"] = "Bisexual"; +$a->strings["Autosexual"] = "Autosexual"; +$a->strings["Abstinent"] = "Casto/a"; +$a->strings["Virgin"] = "Virgen"; +$a->strings["Deviant"] = "Fuera de lo común"; +$a->strings["Fetish"] = "Fetichista"; +$a->strings["Oodles"] = "Orgías"; +$a->strings["Nonsexual"] = "Asexual"; +$a->strings["Single"] = "Soltero/a"; +$a->strings["Lonely"] = "Solo/a"; +$a->strings["Available"] = "Disponible"; +$a->strings["Unavailable"] = "No disponible"; +$a->strings["Has crush"] = "Enamorado/a"; +$a->strings["Infatuated"] = "Apasionado/a"; +$a->strings["Dating"] = "Saliendo con alguien"; +$a->strings["Unfaithful"] = "Infiel"; +$a->strings["Sex Addict"] = "Con adicción al sexo"; +$a->strings["Friends"] = "Amigos"; +$a->strings["Friends/Benefits"] = "Amigos con algo extra"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Prometido/a"; +$a->strings["Married"] = "Casado/a"; +$a->strings["Imaginarily married"] = "Casado/a en sueños"; +$a->strings["Partners"] = "Pareja"; +$a->strings["Cohabiting"] = "Cohabitando"; +$a->strings["Common law"] = "Matrimonio tradicional"; +$a->strings["Happy"] = "Felíz"; +$a->strings["Not looking"] = "No estoy buscando"; +$a->strings["Swinger"] = "Libertino"; +$a->strings["Betrayed"] = "Engañado/a"; +$a->strings["Separated"] = "Separado/a"; +$a->strings["Unstable"] = "Inestable"; +$a->strings["Divorced"] = "Divorciado/a"; +$a->strings["Imaginarily divorced"] = "Divorciado/a en sueños"; +$a->strings["Widowed"] = "Viudo/a"; +$a->strings["Uncertain"] = "Indeterminado"; +$a->strings["It's complicated"] = "Es complicado"; +$a->strings["Don't care"] = "No me importa"; +$a->strings["Ask me"] = "Pregúnteme"; +$a->strings["Embedded content"] = "Contenido incorporado"; +$a->strings["Embedding disabled"] = "Incrustación deshabilitada"; +$a->strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; +$a->strings["Starts:"] = "Comienza:"; +$a->strings["Finishes:"] = "Finaliza:"; +$a->strings["Location:"] = "Ubicación:"; +$a->strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; +$a->strings["event"] = "evento"; +$a->strings["Not specified"] = "Sin especificar"; +$a->strings["Needs Action"] = "Necesita de una intervención"; +$a->strings["Completed"] = "Completado/a"; +$a->strings["In Process"] = "En proceso"; +$a->strings["Cancelled"] = "Cancelado/a"; +$a->strings["Site Admin"] = "Adminstrador del sitio"; +$a->strings["Bookmarks"] = "Marcadores"; +$a->strings["Address Book"] = "Libreta de direcciones"; +$a->strings["Login"] = "Iniciar sesión"; +$a->strings["Channel Manager"] = "Administración de canales"; +$a->strings["Grid"] = "Red"; +$a->strings["Settings"] = "Ajustes"; +$a->strings["Webpages"] = "Páginas web"; +$a->strings["Channel Home"] = "Mi canal"; +$a->strings["Profile"] = "Perfil"; +$a->strings["Photos"] = "Fotos"; +$a->strings["Events"] = "Eventos"; +$a->strings["Directory"] = "Directorio"; +$a->strings["Help"] = "Ayuda"; +$a->strings["Mail"] = "Correo"; +$a->strings["Mood"] = "Estado de ánimo"; +$a->strings["Poke"] = "Toques y otras cosas"; +$a->strings["Chat"] = "Chat"; +$a->strings["Search"] = "Buscar"; +$a->strings["Probe"] = "Probar"; +$a->strings["Suggest"] = "Sugerir"; +$a->strings["Random Channel"] = "Canal aleatorio"; +$a->strings["Invite"] = "Invitar"; +$a->strings["Features"] = "Características"; +$a->strings["Language"] = "Idioma"; +$a->strings["Post"] = "Publicación"; +$a->strings["Profile Photo"] = "Foto del perfil"; +$a->strings["Update"] = "Actualizar"; +$a->strings["Install"] = "Instalar"; +$a->strings["Purchase"] = "Comprar"; $a->strings["prev"] = "anterior"; $a->strings["first"] = "primera"; $a->strings["last"] = "última"; @@ -143,25 +421,24 @@ $a->strings["%d Connection"] = array( 1 => "%d Conexiones", ); $a->strings["View Connections"] = "Ver conexiones"; -$a->strings["Search"] = "Buscar"; $a->strings["Save"] = "Guardar"; -$a->strings["poke"] = "dar un toque"; +$a->strings["poke"] = "un toque"; $a->strings["poked"] = "ha recibido un toque"; -$a->strings["ping"] = "avisar"; +$a->strings["ping"] = "un \"ping\""; $a->strings["pinged"] = "avisado/a"; -$a->strings["prod"] = "incitar"; -$a->strings["prodded"] = "incitado/a"; -$a->strings["slap"] = "abofetear"; -$a->strings["slapped"] = "abofeteado/a"; -$a->strings["finger"] = "señalar"; -$a->strings["fingered"] = "señalado/a"; -$a->strings["rebuff"] = "desairar"; -$a->strings["rebuffed"] = "desairado/a"; +$a->strings["prod"] = "una incitación"; +$a->strings["prodded"] = "ha recibido una incitación"; +$a->strings["slap"] = "una bofetada"; +$a->strings["slapped"] = "ha recibido una bofetada"; +$a->strings["finger"] = "un \"finger\""; +$a->strings["fingered"] = "ha recibido un \"finger\""; +$a->strings["rebuff"] = "un rechazo"; +$a->strings["rebuffed"] = "ha sido rechazado/a"; $a->strings["happy"] = "feliz"; $a->strings["sad"] = "triste"; $a->strings["mellow"] = "amable"; $a->strings["tired"] = "cansado/a"; -$a->strings["perky"] = "fesco/a"; +$a->strings["perky"] = "fresco/a"; $a->strings["angry"] = "enfadado/a"; $a->strings["stupified"] = "estupefacto/a"; $a->strings["puzzled"] = "perplejo/a"; @@ -178,27 +455,10 @@ $a->strings["depressed"] = "deprimido/a"; $a->strings["motivated"] = "motivado/a"; $a->strings["relaxed"] = "relajado/a"; $a->strings["surprised"] = "sorprendido/a"; -$a->strings["Monday"] = "lunes"; -$a->strings["Tuesday"] = "martes"; -$a->strings["Wednesday"] = "miércoles"; -$a->strings["Thursday"] = "jueves"; -$a->strings["Friday"] = "viernes"; -$a->strings["Saturday"] = "sábado"; -$a->strings["Sunday"] = "domingo"; -$a->strings["January"] = "enero"; -$a->strings["February"] = "febrero"; -$a->strings["March"] = "marzo"; -$a->strings["April"] = "abril"; $a->strings["May"] = "mayo"; -$a->strings["June"] = "junio"; -$a->strings["July"] = "julio"; -$a->strings["August"] = "agosto"; -$a->strings["September"] = "septiembre"; -$a->strings["October"] = "octubre"; -$a->strings["November"] = "noviembre"; -$a->strings["December"] = "diciembre"; -$a->strings["unknown.???"] = "desconocido???"; -$a->strings["bytes"] = "bytes"; +$a->strings["Unknown Attachment"] = "Adjunto no reconocido"; +$a->strings["Attachment"] = "Fichero adjunto"; +$a->strings["Size Unknown"] = "Tamaño desconocido"; $a->strings["remove category"] = "eliminar categoría"; $a->strings["remove from file"] = "eliminar del fichero"; $a->strings["Click to open/close"] = "Pulsar para abrir/cerrar"; @@ -207,10 +467,9 @@ $a->strings["default"] = "por defecto"; $a->strings["Page layout"] = "Formato de la página"; $a->strings["You can create your own with the layouts tool"] = "Puede crear su propio formato gráfico con las herramientas de diseño"; $a->strings["Page content type"] = "Tipo de contenido de página"; -$a->strings["Select an alternate language"] = "Selecciona un idioma alternativo"; +$a->strings["Select an alternate language"] = "Seleccionar un idioma alternativo"; $a->strings["photo"] = "foto"; -$a->strings["event"] = "evento"; -$a->strings["status"] = "estado"; +$a->strings["status"] = "el mensaje de estado"; $a->strings["comment"] = "comentario"; $a->strings["activity"] = "actividad"; $a->strings["Design Tools"] = "Herramientas de diseño"; @@ -218,200 +477,47 @@ $a->strings["Blocks"] = "Bloques"; $a->strings["Menus"] = "Menús"; $a->strings["Layouts"] = "Formato gráfico"; $a->strings["Pages"] = "Páginas"; -$a->strings["Collection"] = "Colección"; -$a->strings["parent"] = "padre"; -$a->strings["Principal"] = "Principal"; -$a->strings["Addressbook"] = "Libreta de direcciones"; -$a->strings["Calendar"] = "Calendario"; -$a->strings["Schedule Inbox"] = "Programar bandeja de entrada"; -$a->strings["Schedule Outbox"] = "Programar bandeja de salida"; -$a->strings["Unknown"] = "Desconocido"; -$a->strings["%1\$s used"] = "%1\$s usado"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s usado de %2\$s (%3\$s%)"; -$a->strings["Files"] = "Ficheros"; -$a->strings["Total"] = "Total"; -$a->strings["Shared"] = "Compartido"; -$a->strings["Create"] = "Crear"; -$a->strings["Upload"] = "Subir"; -$a->strings["Name"] = "Nombre"; -$a->strings["Type"] = "Tipo"; -$a->strings["Size"] = "Tamaño"; -$a->strings["Last Modified"] = "Última modificación"; -$a->strings["Delete"] = "Borrar"; -$a->strings["Create new folder"] = "Crear nueva carpeta"; -$a->strings["Upload file"] = "Subir fichero"; -$a->strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; -$a->strings["view full size"] = "Ver en el tamaño original"; -$a->strings["\$Projectname Notification"] = "Notificación de \$Projectname"; -$a->strings["\$projectname"] = "\$projectname"; -$a->strings["Thank You,"] = "Gracias,"; -$a->strings["%s Administrator"] = "%s Administrador"; -$a->strings["No Subject"] = "Sin asunto"; -$a->strings["General Features"] = "Características generales"; -$a->strings["Content Expiration"] = "Caducidad del contenido"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; -$a->strings["Multiple Profiles"] = "Múltiples perfiles"; -$a->strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; -$a->strings["Advanced Profiles"] = "Perfiles avanzados"; -$a->strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; -$a->strings["Profile Import/Export"] = "Importar/Exportar perfil"; -$a->strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; -$a->strings["Web Pages"] = "Páginas web"; -$a->strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; -$a->strings["Private Notes"] = "Notas privadas"; -$a->strings["Enables a tool to store notes and reminders"] = "Activar una herramienta para almacenar notas y recordatorios"; -$a->strings["Navigation Channel Select"] = "Navegación por el selector de canales"; -$a->strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar canales directamente desde el menú de navegación desplegable"; -$a->strings["Photo Location"] = "Ubicación de las fotos"; -$a->strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlaza estas a un mapa."; -$a->strings["Expert Mode"] = "Modo de experto"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; -$a->strings["Premium Channel"] = "Canal premium"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Les permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; -$a->strings["Post Composition Features"] = "Características de composición de entradas"; -$a->strings["Use Markdown"] = "Usar Markdown"; -$a->strings["Allow use of \"Markdown\" to format posts"] = "Permitir el uso de \"Markdown\" para formatear publicaciones"; -$a->strings["Large Photos"] = "Fotos de gran tamaño"; -$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (640px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (320px)"; -$a->strings["Channel Sources"] = "Orígenes de los contenidos del canal"; -$a->strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; -$a->strings["Even More Encryption"] = "Más cifrado todavía"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido punto-a-punto con una clave secreta compartida."; -$a->strings["Enable voting tools"] = "Activar herramientas de votación"; -$a->strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; -$a->strings["Network and Stream Filtering"] = "Filtrado del contenido"; -$a->strings["Search by Date"] = "Buscar por fecha"; -$a->strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; -$a->strings["Collections Filter"] = "Filtrado de colecciones"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Habilitar la muestra de entradas eligiendo colecciones"; -$a->strings["Saved Searches"] = "Búsquedas guardadas"; -$a->strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; -$a->strings["Network Personal Tab"] = "Pestaña de red personal"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; -$a->strings["Network New Tab"] = "Nueva pestaña de red"; -$a->strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre toda la actividad de la red"; -$a->strings["Affinity Tool"] = "Herramienta de afinidad"; -$a->strings["Filter stream activity by depth of relationships"] = "Filtrar la actividad del flujo por profundidad de relaciones"; -$a->strings["Connection Filtering"] = "Filtrado de conexiones"; -$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones basadas en palabras clave / contenido"; -$a->strings["Suggest Channels"] = "Sugerir canales"; -$a->strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; -$a->strings["Post/Comment Tools"] = "Herramientas de entradas/comentarios"; -$a->strings["Tagging"] = "Etiquetado"; -$a->strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; -$a->strings["Post Categories"] = "Categorías de entradas"; -$a->strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; -$a->strings["Saved Folders"] = "Carpetas guardadas"; -$a->strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; -$a->strings["Dislike Posts"] = "Desagrado de publicaciones"; -$a->strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; -$a->strings["Star Posts"] = "Entradas destacadas"; -$a->strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; -$a->strings["Tag Cloud"] = "Nube de etiquetas"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; -$a->strings["Categories"] = "Categorías"; -$a->strings["Apps"] = "Aplicaciones"; -$a->strings["System"] = "Sistema"; -$a->strings["Personal"] = "Personales"; -$a->strings["Create Personal App"] = "Crear una aplicación personal"; -$a->strings["Edit Personal App"] = "Editar una aplicación personal"; -$a->strings["Connect"] = "Conectar"; -$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; -$a->strings["Suggestions"] = "Sugerencias"; -$a->strings["See more..."] = "Ver más..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; -$a->strings["Add New Connection"] = "Añadir nueva conexión"; -$a->strings["Enter the channel address"] = "Introducir la dirección del canal"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: paco@ejemplo.com, http://ejemplo.com/paco"; -$a->strings["Notes"] = "Notas"; -$a->strings["Remove term"] = "Eliminar término"; -$a->strings["Everything"] = "Todo"; -$a->strings["Archives"] = "Hemeroteca"; -$a->strings["Me"] = "Yo"; -$a->strings["Family"] = "Familia"; -$a->strings["Friends"] = "Amigos"; -$a->strings["Acquaintances"] = "Conocidos/as"; -$a->strings["All"] = "Todas"; -$a->strings["Refresh"] = "Recargar"; -$a->strings["Account settings"] = "Configuración de la cuenta"; -$a->strings["Channel settings"] = "Configuración del canal"; -$a->strings["Additional features"] = "Características adicionales"; -$a->strings["Feature/Addon settings"] = "Configuración de características o complementos"; -$a->strings["Display settings"] = "Ajustes de visualización"; -$a->strings["Connected apps"] = "Aplicaciones conectadas"; -$a->strings["Export channel"] = "Exportar canal"; -$a->strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; -$a->strings["Premium Channel Settings"] = "Configuración del canal premium"; -$a->strings["Settings"] = "Ajustes"; -$a->strings["Messages"] = "Mensajes"; -$a->strings["Check Mail"] = "Comprobar correo"; -$a->strings["New Message"] = "Nuevo mensaje"; -$a->strings["Chat Rooms"] = "Salas de chat"; -$a->strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; -$a->strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; -$a->strings["photo/image"] = "foto/imagen"; -$a->strings["Rate Me"] = "Valorar este canal"; -$a->strings["View Ratings"] = "Mostrar las valoraciones"; -$a->strings["Public Hubs"] = "Servidores públicos"; -$a->strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; -$a->strings["Starts:"] = "Comienza:"; -$a->strings["Finishes:"] = "Finaliza:"; -$a->strings["Location:"] = "Ubicación:"; -$a->strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; +$a->strings["Logged out."] = "Desconectado/a."; +$a->strings["Failed authentication"] = "Autenticación fallida."; +$a->strings["Login failed."] = "El acceso ha fallado."; $a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Aviso] Nuevo correo recibido en %s"; +$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo mensaje en %s"; $a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; $a->strings["%1\$s sent you %2\$s."] = "%1\$s le envió %2\$s."; $a->strings["a private message"] = "un mensaje privado"; $a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s comentó en [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 comentó en [zrl=%3\$s]%4\$s de %5\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s comentó en [zrl=%3\$s]su %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentó un elemento/conversación que ha estado siguiendo."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl] "; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]"; +$a->strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Aviso] Nuevo comentario de %2\$s a la conversación #%1\$d"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo."; $a->strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Aviso] %s escribió en su página de perfil"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicó en su página de perfil en %3\$s"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicó en [zrl=%3\$s]su página de perfil[/zrl]"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Aviso] %s le etiquetó"; +$a->strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicó en su página del perfil en %3\$s"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicó en [zrl=%3\$s]su página del perfil[/zrl]"; +$a->strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado"; $a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le etiquetó en %3\$s"; $a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Aviso] %1\$s le ha dado un toque"; +$a->strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; $a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le dio un toque en %3\$s"; $a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le dio un toque[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Aviso] %s etiquetó su entrada"; +$a->strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación"; $a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s etiquetó su publicación en %3\$s"; $a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s etiquetó [zrl=%3\$s]su publicación[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Aviso] Solicitud de conexión recibida"; +$a->strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión"; $a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; $a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; $a->strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; $a->strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Aviso] recibió una sugerencia de conexión"; +$a->strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad"; $a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; $a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; $a->strings["Name:"] = "Nombre:"; $a->strings["Photo:"] = "Foto:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; -$a->strings["[Red:Notify]"] = "[Red:Aviso]"; -$a->strings["No recipient provided."] = "No se ha especificado ningún destinatario."; -$a->strings["[no subject]"] = "[sin asunto]"; -$a->strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; -$a->strings["Stored post could not be verified."] = "No se han podido verificar las entradas guardadas."; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s le gusta el %3\$s de %2\$s"; -$a->strings["Please choose"] = "Por favor, elija"; -$a->strings["Agree"] = "De acuerdo"; -$a->strings["Disagree"] = "En desacuerdo"; -$a->strings["Abstain"] = "Abstención"; -$a->strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; -$a->strings["Channel location missing."] = "Falta la ubicación del canal."; -$a->strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; -$a->strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; -$a->strings["Protocol disabled."] = "Protocolo deshabilitado."; -$a->strings["Protocol blocked for this channel."] = "Protocolo bloqueado para este canal."; -$a->strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; -$a->strings["local account not found."] = "No se ha encontrado la cuenta local."; -$a->strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; +$a->strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; +$a->strings["Attachments:"] = "Ficheros adjuntos:"; +$a->strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; $a->strings["Private Message"] = "Mensaje Privado"; $a->strings["Select"] = "Seleccionar"; $a->strings["Save to Folder"] = "Guardar en carpeta"; @@ -450,8 +556,9 @@ $a->strings["%d comment"] = array( $a->strings["View %s's profile - %s"] = "Ver el perfil de %s - %s"; $a->strings["to"] = "a"; $a->strings["via"] = "mediante"; -$a->strings["Wall-to-Wall"] = "De página de perfil a página de perfil (de Muro a Muro)"; -$a->strings["via Wall-To-Wall:"] = "Mediante el procedimiento página de perfil a página de perfil (de Muro a Muro)"; +$a->strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de Muro a Muro)"; +$a->strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de Muro a Muro)"; +$a->strings["Delivery Report"] = "Informe de transmisión"; $a->strings["from %s"] = "desde %s"; $a->strings["last edited: %s"] = "último cambio: %s"; $a->strings["Expires: %s"] = "Caduca: %s"; @@ -460,8 +567,7 @@ $a->strings["Add to Calendar"] = "Añadir al calendario"; $a->strings["Mark all seen"] = "Marcar todo como visto"; $a->strings["__ctx:noun__ Likes"] = "Me gusta"; $a->strings["__ctx:noun__ Dislikes"] = "No me gusta"; -$a->strings["Close"] = "Cerrar"; -$a->strings["Please wait"] = "Espera por favor"; +$a->strings["Please wait"] = "Espere por favor"; $a->strings["This is you"] = "Este es usted"; $a->strings["Bold"] = "Negrita"; $a->strings["Italic"] = "Itálico "; @@ -472,73 +578,136 @@ $a->strings["Image"] = "Imagen"; $a->strings["Insert Link"] = "Insertar enlace"; $a->strings["Video"] = "Vídeo"; $a->strings["Encrypt text"] = "Cifrar texto"; -$a->strings["New window"] = "Nueva ventana"; -$a->strings["Open the selected location in a different window or browser tab"] = "Abrir la ubicación seleccionada en una ventana o pestaña aparte"; -$a->strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; -$a->strings["Attachments:"] = "Ficheros adjuntos:"; -$a->strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; -$a->strings["Logout"] = "Finalizar sesión"; -$a->strings["End this session"] = "Finalizar esta sesión"; -$a->strings["Home"] = "Inicio"; -$a->strings["Your posts and conversations"] = "Sus entradas y conversaciones"; -$a->strings["View Profile"] = "Ver el perfil"; -$a->strings["Your profile page"] = "Su página de perfil"; -$a->strings["Edit Profiles"] = "Editar perfiles"; -$a->strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -$a->strings["Edit Profile"] = "Editar perfil"; -$a->strings["Edit your profile"] = "Editar su perfil"; -$a->strings["Photos"] = "Fotos"; -$a->strings["Your photos"] = "Sus fotos"; -$a->strings["Your files"] = "Sus ficheros"; -$a->strings["Chat"] = "Chat"; -$a->strings["Your chatrooms"] = "Sus salas de chat"; -$a->strings["Bookmarks"] = "Marcadores"; -$a->strings["Your bookmarks"] = "Sus marcadores"; -$a->strings["Webpages"] = "Páginas web"; -$a->strings["Your webpages"] = "Sus páginas web"; -$a->strings["Login"] = "Iniciar sesión"; -$a->strings["Sign in"] = "Acceder"; -$a->strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; -$a->strings["Remote authentication"] = "Acceder desde su servidor"; -$a->strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -$a->strings["Home Page"] = "Página de inicio"; -$a->strings["Register"] = "Registrarse"; -$a->strings["Create an account"] = "Crear una cuenta"; -$a->strings["Help"] = "Ayuda"; -$a->strings["Help and documentation"] = "Ayuda y documentación"; -$a->strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; -$a->strings["Search site content"] = "Buscar contenido del sitio"; -$a->strings["Directory"] = "Directorio"; -$a->strings["Channel Directory"] = "Directorio de canales"; -$a->strings["Matrix"] = "RedMatrix"; -$a->strings["Your matrix"] = "Su red"; -$a->strings["Mark all matrix notifications seen"] = "Marcar todas las notificaciones de la red como leídas"; -$a->strings["Channel Home"] = "Mi canal"; -$a->strings["Channel home"] = "Mi canal"; -$a->strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -$a->strings["Connections"] = "Conexiones"; -$a->strings["Notices"] = "Avisos"; -$a->strings["Notifications"] = "Notificaciones"; -$a->strings["See all notifications"] = "Ver todas las notificaciones"; -$a->strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; -$a->strings["Mail"] = "Correo"; -$a->strings["Private mail"] = "Correo privado"; -$a->strings["See all private messages"] = "Ver todas los mensajes privados"; -$a->strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; -$a->strings["Inbox"] = "Bandeja de entrada"; -$a->strings["Outbox"] = "Bandeja de salida"; -$a->strings["Events"] = "Eventos"; -$a->strings["Event Calendar"] = "Calendario de eventos"; -$a->strings["See all events"] = "Ver todos los eventos"; -$a->strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; -$a->strings["Channel Manager"] = "Administración de canales"; -$a->strings["Manage Your Channels"] = "Gestionar sus canales"; -$a->strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; -$a->strings["Admin"] = "Administrador"; -$a->strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; -$a->strings["Loading..."] = "Cargando..."; -$a->strings["@name, #tag, content"] = "@nombre, #etiqueta, contenido"; -$a->strings["Please wait..."] = "Espere por favor…"; +$a->strings["Image/photo"] = "Imagen/foto"; +$a->strings["Encrypted content"] = "Contenido cifrado"; +$a->strings["Install %s element: "] = "Instalar el elemento %s:"; +$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; +$a->strings["webpage"] = "página web"; +$a->strings["layout"] = "disposición"; +$a->strings["block"] = "bloque"; +$a->strings["menu"] = "menú"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió la siguiente %2\$s %3\$s"; +$a->strings["post"] = "entrada"; +$a->strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; +$a->strings["$1 spoiler"] = "$1 spoiler"; +$a->strings["$1 wrote:"] = "$1 escribió"; +$a->strings["Not a valid email address"] = "Dirección de correo no válida"; +$a->strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; +$a->strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; +$a->strings["An invitation is required."] = "Es obligatorio que le inviten."; +$a->strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; +$a->strings["Please enter the required information."] = "Por favor introduzca la información requerida."; +$a->strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; +$a->strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; +$a->strings["Registration request at %s"] = "Solicitud de registro en %s"; +$a->strings["your registration password"] = "su contraseña de registro"; +$a->strings["Registration details for %s"] = "Detalles del registro de %s"; +$a->strings["Account approved."] = "Cuenta aprobada."; +$a->strings["Registration revoked for %s"] = "Registro revocado para %s"; +$a->strings["Account verified. Please login."] = "Cuenta verificada. Por favor, inicie sesión."; +$a->strings["Click here to upgrade."] = "Pulse aquí para actualizar"; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; +$a->strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; +$a->strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; +$a->strings["Channel location missing."] = "Falta la ubicación del canal."; +$a->strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; +$a->strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; +$a->strings["Protocol disabled."] = "Protocolo deshabilitado."; +$a->strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; +$a->strings["local account not found."] = "No se ha encontrado la cuenta local."; +$a->strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; +$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."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitación pendiente", + 1 => "%d invitaciones disponibles", +); +$a->strings["Advanced"] = "Avanzado"; +$a->strings["Find Channels"] = "Encontrar canales"; +$a->strings["Enter name or interest"] = "Introducir nombre o interés"; +$a->strings["Connect/Follow"] = "Conectar/Seguir"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca"; +$a->strings["Find"] = "Encontrar"; +$a->strings["Channel Suggestions"] = "Sugerencias de canales"; +$a->strings["Random Profile"] = "Perfil aleatorio"; +$a->strings["Invite Friends"] = "Invitar a amigos"; +$a->strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; +$a->strings["Everything"] = "Todo"; +$a->strings["Categories"] = "Categorías"; +$a->strings["%d connection in common"] = array( + 0 => "%d conexión en común", + 1 => "%d conexiones en común", +); +$a->strings["show more"] = "mostrar más"; +$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."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; +$a->strings["Add new connections to this collection (privacy group)"] = "Añadir nuevas conexiones a esta colección (privacidad del grupo)"; +$a->strings["All Channels"] = "Todos los canales"; +$a->strings["edit"] = "editar"; +$a->strings["Collections"] = "Colecciones"; +$a->strings["Edit collection"] = "Editar colección"; +$a->strings["Add new collection"] = "Añadir nueva colección"; +$a->strings["Channels not in any collection"] = "El canal no se encuentra en ninguna colección"; +$a->strings["add"] = "añadir"; +$a->strings["No recipient provided."] = "No se ha especificado ningún destinatario."; +$a->strings["[no subject]"] = "[sin asunto]"; +$a->strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; +$a->strings["Stored post could not be verified."] = "No se han podido verificar las entradas guardadas."; +$a->strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; +$a->strings["Empty name"] = "Nombre vacío"; +$a->strings["Name too long"] = "Nombre demasiado largo"; +$a->strings["No account identifier"] = "Ningún identificador de la cuenta"; +$a->strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; +$a->strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros usuarios de este sitio."; +$a->strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; +$a->strings["Default Profile"] = "Perfil principal"; +$a->strings["Requested channel is not available."] = "El canal solicitado no está disponible."; +$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; +$a->strings["Change profile photo"] = "Cambiar la foto del perfil"; +$a->strings["Profiles"] = "Perfiles"; +$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; +$a->strings["Create New Profile"] = "Crear un nuevo perfil"; +$a->strings["Edit Profile"] = "Editar el perfil"; +$a->strings["Profile Image"] = "Imagen del perfil"; +$a->strings["visible to everybody"] = "visible para cualquiera"; +$a->strings["Edit visibility"] = "Editar visibilidad"; +$a->strings["Gender:"] = "Género:"; +$a->strings["Status:"] = "Estado:"; +$a->strings["Homepage:"] = "Página personal:"; +$a->strings["Online Now"] = "Ahora en línea"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[hoy]"; +$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; +$a->strings["Birthdays this week:"] = "Cumpleaños de esta semana:"; +$a->strings["[No description]"] = "[Sin descripción]"; +$a->strings["Event Reminders"] = "Recordatorios de eventos"; +$a->strings["Events this week:"] = "Eventos de esta semana:"; +$a->strings["Full Name:"] = "Nombre completo:"; +$a->strings["Like this channel"] = "Me gusta este canal"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Cumpleaños:"; +$a->strings["Age:"] = "Edad:"; +$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Orientación sexual:"; +$a->strings["Hometown:"] = "Ciudad de origen:"; +$a->strings["Tags:"] = "Etiquetas:"; +$a->strings["Political Views:"] = "Posición política:"; +$a->strings["Religion:"] = "Religión:"; +$a->strings["About:"] = "Sobre mí:"; +$a->strings["Hobbies/Interests:"] = "Aficciones/Intereses:"; +$a->strings["Likes:"] = "Me gusta:"; +$a->strings["Dislikes:"] = "No me gusta:"; +$a->strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; +$a->strings["My other channels:"] = "Mis otros canales:"; +$a->strings["Musical interests:"] = "Intereses musicales:"; +$a->strings["Books, literature:"] = "Libros, literatura:"; +$a->strings["Television:"] = "Televisión:"; +$a->strings["Film/dance/culture/entertainment:"] = "Cine/danza/cultura/entretenimiento:"; +$a->strings["Love/Romance:"] = "Vida sentimental/amorosa:"; +$a->strings["Work/employment:"] = "Trabajo:"; +$a->strings["School/education:"] = "Estudios:"; +$a->strings["Like this thing"] = "Me gusta esto"; $a->strings["Tags"] = "Etiquetas"; $a->strings["Keywords"] = "Palabras clave"; $a->strings["have"] = "tener"; @@ -547,72 +716,54 @@ $a->strings["want"] = "quiero"; $a->strings["wants"] = "quiere"; $a->strings["likes"] = "le gusta"; $a->strings["dislikes"] = "no le gusta"; -$a->strings[" and "] = "y"; -$a->strings["public profile"] = "perfil público"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s cambió %2\$s a “%3\$s”"; -$a->strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s actualizó %2\$s, %3\$s cambió."; -$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."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; -$a->strings["Can view my normal stream and posts"] = "Pueden verse mi flujo de actividad y publicaciones normales"; -$a->strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; -$a->strings["Can view my photo albums"] = "Pueden verse mis álbumes de fotos"; -$a->strings["Can view my connections"] = "Pueden verse mis conexiones"; -$a->strings["Can view my file storage"] = "Pueden verse mis ficheros compartidos"; -$a->strings["Can view my webpages"] = "Pueden verse mis páginas web"; -$a->strings["Can send me their channel stream and posts"] = "Me pueden enviar sus entradas y flujo de actividad su canal"; -$a->strings["Can post on my channel page (\"wall\")"] = "Pueden crear entradas en mi página de inicio del canal (“muro”)"; -$a->strings["Can comment on or like my posts"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'."; -$a->strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados"; -$a->strings["Can post photos to my photo albums"] = "Pueden publicarse fotos en mis álbumes"; -$a->strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gustar/no me gusta."; -$a->strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención"; -$a->strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foro o grupos"; -$a->strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; -$a->strings["Can write to my file storage"] = "Puede escribirse en mi carpeta de ficheros"; -$a->strings["Can edit my webpages"] = "Puede editar mis páginas web"; -$a->strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; -$a->strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; -$a->strings["Social Networking"] = "Redes sociales"; -$a->strings["Mostly Public"] = "Público en su mayor parte"; -$a->strings["Restricted"] = "Restringido"; -$a->strings["Private"] = "Privado"; -$a->strings["Community Forum"] = "Foro de discusión"; -$a->strings["Feed Republish"] = "Republicar un \"feed\""; -$a->strings["Special Purpose"] = "Propósito especial"; -$a->strings["Celebrity/Soapbox"] = "Página para fans"; -$a->strings["Group Repository"] = "Repositorio de grupo"; -$a->strings["Other"] = "Otro"; -$a->strings["Custom/Expert Mode"] = "Modo personalizado/experto"; +$a->strings["Invalid data packet"] = "Paquete de datos no válido"; +$a->strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; +$a->strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; +$a->strings["invalid target signature"] = "La firma recibida no es válida"; +$a->strings["Item was not found."] = "Elemento no encontrado."; +$a->strings["No source file."] = "Ningún fichero de origen"; +$a->strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; +$a->strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; +$a->strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; +$a->strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; +$a->strings["Path not available."] = "Ruta no disponible."; +$a->strings["Empty pathname"] = "Ruta vacía"; +$a->strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; +$a->strings["Path not found."] = "Ruta no encontrada"; +$a->strings["mkdir failed."] = "mkdir ha fallado."; +$a->strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; +$a->strings["Empty path"] = "Ruta vacía"; $a->strings["channel"] = "canal"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s le gusta el %3\$s de %2\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "a %1\$s no le gusta el %3\$s de %2\$s"; -$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado con %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s dio un toque a %2\$s"; +$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; $a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; $a->strings["__ctx:title__ Likes"] = "Me gusta"; $a->strings["__ctx:title__ Dislikes"] = "No me gusta"; $a->strings["__ctx:title__ Agree"] = "De acuerdo"; $a->strings["__ctx:title__ Disagree"] = "En desacuerdo"; $a->strings["__ctx:title__ Abstain"] = "Abstención"; -$a->strings["__ctx:title__ Attending"] = "Participar"; -$a->strings["__ctx:title__ Not attending"] = "No participar"; +$a->strings["__ctx:title__ Attending"] = "Participaré"; +$a->strings["__ctx:title__ Not attending"] = "No participaré"; $a->strings["__ctx:title__ Might attend"] = "Quizá participe"; $a->strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; $a->strings["Categories:"] = "Categorías:"; $a->strings["Filed under:"] = "Archivado bajo:"; $a->strings["View in context"] = "Mostrar en su contexto"; $a->strings["remove"] = "eliminar"; +$a->strings["Loading..."] = "Cargando..."; $a->strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; $a->strings["View Source"] = "Ver la fuente original de la entrada"; $a->strings["Follow Thread"] = "Seguir el hilo"; -$a->strings["View Status"] = "Ver estado"; +$a->strings["View Status"] = "Estado actual"; +$a->strings["View Profile"] = "Ver el perfil"; $a->strings["View Photos"] = "Ver fotos"; -$a->strings["Matrix Activity"] = "Actividad en la red de esta conexión"; -$a->strings["Edit Contact"] = "Editar contacto"; -$a->strings["Send PM"] = "Enviar Mensaje Privado"; -$a->strings["Poke"] = "Dar un toque"; +$a->strings["Activity/Posts"] = "Actividad y entradas"; +$a->strings["Edit Connection"] = "Editar conexión"; +$a->strings["Send PM"] = "Enviar un mensaje privado"; $a->strings["%s likes this."] = "a %s le gusta esto."; $a->strings["%s doesn't like this."] = "a %s no le gusta esto."; $a->strings["%2\$d people like this."] = array( @@ -671,6 +822,7 @@ $a->strings["Commented Order"] = "Comentarios recientes"; $a->strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; $a->strings["Posted Order"] = "Publicaciones recientes"; $a->strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; +$a->strings["Personal"] = "Personales"; $a->strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; $a->strings["New"] = "Nuevas"; $a->strings["Activity Stream - by date"] = "Flujo de actividad - por fecha"; @@ -682,18 +834,17 @@ $a->strings["Channel"] = "Canal"; $a->strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; $a->strings["About"] = "Sobre mí"; $a->strings["Profile Details"] = "Detalles del perfil"; -$a->strings["Photo Albums"] = "Álbumes de fotos"; -$a->strings["Files and Storage"] = "Ficheros y carpetas"; +$a->strings["Files and Storage"] = "Ficheros y repositorio"; $a->strings["Chatrooms"] = "Salas de chat"; $a->strings["Saved Bookmarks"] = "Marcadores guardados"; $a->strings["Manage Webpages"] = "Administrar páginas web"; $a->strings["__ctx:noun__ Attending"] = array( - 0 => "Asistir", - 1 => "Participar", + 0 => "Participando", + 1 => "Participaré", ); $a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "No asistir", - 1 => "No participar", + 0 => "No participando", + 1 => "No participaré", ); $a->strings["__ctx:noun__ Undecided"] = array( 0 => "Indeciso/a", @@ -711,229 +862,126 @@ $a->strings["__ctx:noun__ Abstain"] = array( 0 => "se abstiene", 1 => "Se abstienen", ); -$a->strings["Permission denied"] = "Permiso denegado"; -$a->strings["(Unknown)"] = "(Desconocido)"; -$a->strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; -$a->strings["Visible to you only."] = "Visible sólo para usted."; -$a->strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; -$a->strings["Visible to anybody authenticated."] = "Visible para cualquiera que haya sido autenticado."; -$a->strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; -$a->strings["Visible to all connections."] = "Visible para todas las conexiones."; -$a->strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; -$a->strings["Visible to specific connections."] = "Visible para conexiones específicas."; -$a->strings["Item not found."] = "Elemento no encontrado."; -$a->strings["Permission denied."] = "Acceso denegado."; -$a->strings["Collection not found."] = "Colección no encontrada."; -$a->strings["Collection is empty."] = "La colección está vacía."; -$a->strings["Collection: %s"] = "Colección: %s"; -$a->strings["Connection: %s"] = "Conexión: %s"; -$a->strings["Connection not found."] = "Conexión no encontrada"; -$a->strings["Invalid data packet"] = "Paquete de datos no válido"; -$a->strings["Unable to verify channel signature"] = "No ha sido posible de verificar la signatura del canal"; -$a->strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la signatura del sitio para %s"; -$a->strings["Embedded content"] = "Contenido incorporado"; -$a->strings["Embedding disabled"] = "Incrustación deshabilitada"; -$a->strings["Logged out."] = "Desconectado."; -$a->strings["Failed authentication"] = "Autenticación fallida."; -$a->strings["Login failed."] = "El acceso ha fallado."; -$a->strings["%d invitation available"] = array( - 0 => "%d invitación pendiente", - 1 => "%d invitaciones disponibles", -); -$a->strings["Advanced"] = "Avanzado"; -$a->strings["Find Channels"] = "Encontrar canales"; -$a->strings["Enter name or interest"] = "Introducir nombre o interés"; -$a->strings["Connect/Follow"] = "Conectar/Seguir"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca"; -$a->strings["Find"] = "Encontrar"; -$a->strings["Channel Suggestions"] = "Sugerencias de canales"; -$a->strings["Random Profile"] = "Perfil aleatorio"; -$a->strings["Invite Friends"] = "Invitar a amigos"; -$a->strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; -$a->strings["%d connection in common"] = array( - 0 => "%d conexión en común", - 1 => "%d conexiones en común", -); -$a->strings["show more"] = "mostrar más"; -$a->strings["Visible to your default audience"] = "Visible para su público predeterminado."; -$a->strings["Show"] = "Mostrar"; -$a->strings["Don't show"] = "No mostrar"; -$a->strings["Permissions"] = "Permisos"; -$a->strings["Item was not found."] = "Elemento no encontrado."; -$a->strings["No source file."] = "Ningún fichero de origen"; -$a->strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; -$a->strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; -$a->strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite de sistema o porque la acción ha finalizado."; -$a->strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; -$a->strings["Path not available."] = "Ruta no disponible."; -$a->strings["Empty pathname"] = "Ruta vacía"; -$a->strings["duplicate filename or path"] = "Nombre de ruta o fichero duplicados"; -$a->strings["Path not found."] = "Ruta no encontrada"; -$a->strings["mkdir failed."] = "mkdir ha fallado."; -$a->strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; -$a->strings["Unable to obtain identity information from database"] = "No ha sido posible obtener los datos de identidad desde la base de datos"; -$a->strings["Empty name"] = "Nombre vacío"; -$a->strings["Name too long"] = "Nombre demasiado largo"; -$a->strings["No account identifier"] = "Ningún identificador de la cuenta"; -$a->strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; -$a->strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros usuarios de este sitio."; -$a->strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; -$a->strings["Default Profile"] = "Perfil principal"; -$a->strings["Requested channel is not available."] = "El canal solicitado no está disponible."; -$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; -$a->strings["Change profile photo"] = "Cambiar foto de perfil"; -$a->strings["Profiles"] = "Perfiles"; -$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; -$a->strings["Create New Profile"] = "Crear nuevo perfil"; -$a->strings["Profile Image"] = "Imagen de perfil"; -$a->strings["visible to everybody"] = "visible para cualquiera"; -$a->strings["Edit visibility"] = "Editar visibilidad"; -$a->strings["Gender:"] = "Género:"; -$a->strings["Status:"] = "Estado:"; -$a->strings["Homepage:"] = "Página personal:"; -$a->strings["Online Now"] = "Ahora en línea"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[hoy]"; -$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; -$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:"; -$a->strings["[No description]"] = "[Sin descripción]"; -$a->strings["Event Reminders"] = "Recordatorios de eventos"; -$a->strings["Events this week:"] = "Eventos de esta semana:"; -$a->strings["Profile"] = "Perfil"; -$a->strings["Full Name:"] = "Nombre completo:"; -$a->strings["Like this channel"] = "Me gusta este canal"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Cumpleaños:"; -$a->strings["Age:"] = "Edad:"; -$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Orientación sexual:"; -$a->strings["Hometown:"] = "Ciudad de origen:"; -$a->strings["Tags:"] = "Etiquetas:"; -$a->strings["Political Views:"] = "Posición política:"; -$a->strings["Religion:"] = "Religión:"; -$a->strings["About:"] = "Sobre mí:"; -$a->strings["Hobbies/Interests:"] = "Aficciones/Intereses:"; -$a->strings["Likes:"] = "Me gusta:"; -$a->strings["Dislikes:"] = "No me gusta:"; -$a->strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; -$a->strings["My other channels:"] = "Mis otros canales:"; -$a->strings["Musical interests:"] = "Intereses musicales:"; -$a->strings["Books, literature:"] = "Libros, literatura:"; -$a->strings["Television:"] = "Televisión:"; -$a->strings["Film/dance/culture/entertainment:"] = "Cine/danza/cultura/entretenimiento:"; -$a->strings["Love/Romance:"] = "Vida sentimental/amorosa:"; -$a->strings["Work/employment:"] = "Trabajo:"; -$a->strings["School/education:"] = "Estudios:"; -$a->strings["Like this thing"] = "Me gusta esto"; -$a->strings["Male"] = "Hombre"; -$a->strings["Female"] = "Mujer"; -$a->strings["Currently Male"] = "Actualmente hombre"; -$a->strings["Currently Female"] = "Actualmente mujer"; -$a->strings["Mostly Male"] = "Generalmente hombre"; -$a->strings["Mostly Female"] = "Generalmente mujer"; -$a->strings["Transgender"] = "Transgénero"; -$a->strings["Intersex"] = "Intersexual"; -$a->strings["Transsexual"] = "Transexual"; -$a->strings["Hermaphrodite"] = "Hermafrodita"; -$a->strings["Neuter"] = "Neutral"; -$a->strings["Non-specific"] = "No especificado"; -$a->strings["Undecided"] = "Indeciso"; -$a->strings["Males"] = "Hombres"; -$a->strings["Females"] = "Mujeres"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbiana"; -$a->strings["No Preference"] = "Sin preferencias"; -$a->strings["Bisexual"] = "Bisexual"; -$a->strings["Autosexual"] = "Autosexual"; -$a->strings["Abstinent"] = "Casto"; -$a->strings["Virgin"] = "Virgen"; -$a->strings["Deviant"] = "Fuera de lo común"; -$a->strings["Fetish"] = "Fetichista"; -$a->strings["Oodles"] = "Orgías"; -$a->strings["Nonsexual"] = "Asexual"; -$a->strings["Single"] = "Soltero/a"; -$a->strings["Lonely"] = "Solo/a"; -$a->strings["Available"] = "Disponible"; -$a->strings["Unavailable"] = "No disponible"; -$a->strings["Has crush"] = "Enamorado/a"; -$a->strings["Infatuated"] = "Apasionado"; -$a->strings["Dating"] = "Saliendo con alguien"; -$a->strings["Unfaithful"] = "Infiel"; -$a->strings["Sex Addict"] = "Con adicción al sexo"; -$a->strings["Friends/Benefits"] = "Amistad beneficiosa"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Prometido/a"; -$a->strings["Married"] = "Casado/a"; -$a->strings["Imaginarily married"] = "Casado/a en sueños"; -$a->strings["Partners"] = "Pareja"; -$a->strings["Cohabiting"] = "Cohabitando"; -$a->strings["Common law"] = "Matrimonio tradicional"; -$a->strings["Happy"] = "Felíz"; -$a->strings["Not looking"] = "No estoy buscando"; -$a->strings["Swinger"] = "Infiel"; -$a->strings["Betrayed"] = "Engañado/a"; -$a->strings["Separated"] = "Separado/a"; -$a->strings["Unstable"] = "Inestable"; -$a->strings["Divorced"] = "Divorciado/a"; -$a->strings["Imaginarily divorced"] = "Divorciado/a en sueños"; -$a->strings["Widowed"] = "Viudo/a"; -$a->strings["Uncertain"] = "Indeterminado"; -$a->strings["It's complicated"] = "Es complicado"; -$a->strings["Don't care"] = "No me importa"; -$a->strings["Ask me"] = "Pregúnteme"; -$a->strings["Site Admin"] = "Adminstrador del sitio"; -$a->strings["Address Book"] = "Libreta de direcciones"; -$a->strings["Mood"] = "Estado de ánimo"; -$a->strings["Probe"] = "Probar"; -$a->strings["Suggest"] = "Sugerir"; -$a->strings["Random Channel"] = "Canal aleatorio"; -$a->strings["Invite"] = "Invitar"; -$a->strings["Features"] = "Características"; -$a->strings["Language"] = "Idioma"; -$a->strings["Post"] = "Publicación"; -$a->strings["Profile Photo"] = "Foto de perfil"; -$a->strings["Update"] = "Actualizar"; -$a->strings["Install"] = "Instalar"; -$a->strings["Purchase"] = "Comprar"; -$a->strings["Image/photo"] = "Imagen/foto"; -$a->strings["Encrypted content"] = "Contenido cifrado"; -$a->strings["Install %s element: "] = "Instalar el elemento %s:"; -$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; -$a->strings["webpage"] = "página web"; -$a->strings["layout"] = "disposición"; -$a->strings["block"] = "bloque"; -$a->strings["menu"] = "menú"; -$a->strings["QR code"] = "Código QR"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió la siguiente %2\$s %3\$s"; -$a->strings["post"] = "entrada"; -$a->strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma diferente"; -$a->strings["$1 spoiler"] = "$1 spoiler"; -$a->strings["$1 wrote:"] = "$1 escribió"; -$a->strings["Missing room name"] = "Nombre de sala desaparecido."; -$a->strings["Duplicate room name"] = "Nombre de sala duplicado."; -$a->strings["Invalid room specifier."] = "Especificador de sala no válido."; -$a->strings["Room not found."] = "Sala no encontrada."; -$a->strings["Room is full"] = "La sala está llena."; -$a->strings["Image exceeds website size limit of %lu bytes"] = "La imagen es demasiado grande (%lu demás)"; -$a->strings["Image file is empty."] = "El fichero de imagen está vacío. "; -$a->strings["Unable to process image"] = "No ha sido posible procesar la imagen"; -$a->strings["Photo storage failed."] = "La foto no ha podido ser guardada."; -$a->strings["Upload New Photos"] = "Subir nuevas fotos"; -$a->strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; -$a->strings["Create a new channel"] = "Crear un nuevo canal"; -$a->strings["Current Channel"] = "Canal actual"; -$a->strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; -$a->strings["Default Channel"] = "Canal principal"; -$a->strings["Make Default"] = "Convertir en predeterminado"; -$a->strings["%d new messages"] = "%d mensajes nuevos"; -$a->strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; -$a->strings["Delegated Channels"] = "Canales delegados"; +$a->strings["Apps"] = "Aplicaciones"; +$a->strings["System"] = "Sistema"; +$a->strings["Create Personal App"] = "Crear una aplicación personal"; +$a->strings["Edit Personal App"] = "Editar una aplicación personal"; +$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; +$a->strings["Suggestions"] = "Sugerencias"; +$a->strings["See more..."] = "Ver más..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; +$a->strings["Add New Connection"] = "Añadir nueva conexión"; +$a->strings["Enter the channel address"] = "Introducir la dirección del canal"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: paco@ejemplo.com, http://ejemplo.com/paco"; +$a->strings["Notes"] = "Notas"; +$a->strings["Remove term"] = "Eliminar término"; +$a->strings["Archives"] = "Hemeroteca"; +$a->strings["Me"] = "Yo"; +$a->strings["Family"] = "Familia"; +$a->strings["Acquaintances"] = "Conocidos/as"; +$a->strings["All"] = "Todas"; +$a->strings["Refresh"] = "Recargar"; +$a->strings["Account settings"] = "Configuración de la cuenta"; +$a->strings["Channel settings"] = "Configuración del canal"; +$a->strings["Additional features"] = "Características adicionales"; +$a->strings["Feature/Addon settings"] = "Configuración de características o complementos"; +$a->strings["Display settings"] = "Ajustes de visualización"; +$a->strings["Connected apps"] = "Aplicaciones conectadas"; +$a->strings["Export channel"] = "Exportar canal"; +$a->strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; +$a->strings["Premium Channel Settings"] = "Configuración del canal premium"; +$a->strings["Private Mail Menu"] = "Menú de correo privado"; +$a->strings["Combined View"] = "Vista combinada"; +$a->strings["Inbox"] = "Bandeja de entrada"; +$a->strings["Outbox"] = "Bandeja de salida"; +$a->strings["New Message"] = "Nuevo mensaje"; +$a->strings["Conversations"] = "Conversaciones"; +$a->strings["Received Messages"] = "Mensajes recibidos"; +$a->strings["Sent Messages"] = "Enviar mensajes"; +$a->strings["No messages."] = "Sin mensajes."; +$a->strings["Delete conversation"] = "Eliminar conversación"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["Chat Rooms"] = "Salas de chat"; +$a->strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; +$a->strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; +$a->strings["photo/image"] = "foto/imagen"; +$a->strings["Rate Me"] = "Valorar este canal"; +$a->strings["View Ratings"] = "Mostrar las valoraciones"; +$a->strings["Public Hubs"] = "Servidores públicos"; +$a->strings["Forums"] = "Foros"; +$a->strings["Tasks"] = "Actividad"; +$a->strings["Documentation"] = "Documentación"; +$a->strings["Project/Site Information"] = "Información sobre el proyecto o sitio"; +$a->strings["For Members"] = "Para los usuarios"; +$a->strings["For Administrators"] = "Para los administradores"; +$a->strings["For Developers"] = "Para los desarrolladores"; +$a->strings["Site"] = "Sitio"; +$a->strings["Accounts"] = "Cuentas"; +$a->strings["Channels"] = "Canales"; +$a->strings["Plugins"] = "Extensiones"; +$a->strings["Themes"] = "Temas"; +$a->strings["Inspect queue"] = "Examinar la cola"; +$a->strings["Profile Config"] = "Ajustes del perfil"; +$a->strings["DB updates"] = "Actualizaciones de la base de datos"; +$a->strings["Logs"] = "Informes"; +$a->strings["Admin"] = "Administrador"; +$a->strings["Plugin Features"] = "Ajustes de la extensión"; +$a->strings["User registrations waiting for confirmation"] = "Registros de usuarios pendientes de confirmación"; +$a->strings["Logout"] = "Finalizar sesión"; +$a->strings["End this session"] = "Finalizar esta sesión"; +$a->strings["Home"] = "Inicio"; +$a->strings["Your posts and conversations"] = "Sus entradas y conversaciones"; +$a->strings["Your profile page"] = "Su página del perfil"; +$a->strings["Edit Profiles"] = "Editar perfiles"; +$a->strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +$a->strings["Edit your profile"] = "Editar su perfil"; +$a->strings["Your photos"] = "Sus fotos"; +$a->strings["Your files"] = "Sus ficheros"; +$a->strings["Your chatrooms"] = "Sus salas de chat"; +$a->strings["Your bookmarks"] = "Sus marcadores"; +$a->strings["Your webpages"] = "Sus páginas web"; +$a->strings["Sign in"] = "Acceder"; +$a->strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; +$a->strings["Remote authentication"] = "Acceder desde su servidor"; +$a->strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; +$a->strings["Home Page"] = "Página de inicio"; +$a->strings["Register"] = "Registrarse"; +$a->strings["Create an account"] = "Crear una cuenta"; +$a->strings["Help and documentation"] = "Ayuda y documentación"; +$a->strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; +$a->strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; +$a->strings["Channel Directory"] = "Directorio de canales"; +$a->strings["Your grid"] = "Su red"; +$a->strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; +$a->strings["Channel home"] = "Mi canal"; +$a->strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; +$a->strings["Connections"] = "Conexiones"; +$a->strings["Notices"] = "Avisos"; +$a->strings["Notifications"] = "Notificaciones"; +$a->strings["See all notifications"] = "Ver todas las notificaciones"; +$a->strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; +$a->strings["Private mail"] = "Correo privado"; +$a->strings["See all private messages"] = "Ver todas los mensajes privados"; +$a->strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; +$a->strings["Event Calendar"] = "Calendario de eventos"; +$a->strings["See all events"] = "Ver todos los eventos"; +$a->strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; +$a->strings["Manage Your Channels"] = "Gestionar sus canales"; +$a->strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; +$a->strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; +$a->strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; +$a->strings["Please wait..."] = "Espere por favor…"; +$a->strings["Directory Options"] = "Opciones del directorio"; +$a->strings["Safe Mode"] = "Modo seguro"; +$a->strings["No"] = "No"; +$a->strings["Yes"] = "Sí"; +$a->strings["Public Forums Only"] = "Solo foros públicos"; +$a->strings["This Website Only"] = "Solo este sitio web"; +$a->strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; +$a->strings["Contact not found."] = "Contacto no encontrado"; +$a->strings["Friend suggestion sent."] = "Enviar sugerencia a un amigo."; +$a->strings["Suggest Friends"] = "Sugerir amigos"; +$a->strings["Suggest a friend for %s"] = "Sugerir un amigo a %s"; $a->strings["Public access denied."] = "Acceso público denegado."; $a->strings["%d rating"] = array( 0 => "%d valoración", @@ -958,65 +1006,31 @@ $a->strings["Reverse Alphabetic"] = "Alfabético inverso"; $a->strings["Newest to Oldest"] = "De más nuevo a más antiguo"; $a->strings["Oldest to Newest"] = "De más antiguo a más nuevo"; $a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; -$a->strings["Xchan Lookup"] = "Búsqueda de canales"; -$a->strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; -$a->strings["Not found."] = "No encontrado."; -$a->strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; -$a->strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; -$a->strings["Please login to continue."] = "Por favor inicia sesión para continuar."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; -$a->strings["Page Title"] = "Título de página"; -$a->strings["Channel added."] = "Canal añadido."; -$a->strings["Tag removed"] = "Etiqueta eliminada."; -$a->strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; -$a->strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; -$a->strings["Remove"] = "Eliminar"; -$a->strings["Continue"] = "Continuar"; -$a->strings["Premium Channel Setup"] = "Configuración del canal premium"; -$a->strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo paypal, normas de uso, etc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán por tanto el siguiente texto antes de proceder:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las intrucciones proporcionadas en esta página."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; -$a->strings["Restricted or Premium Channel"] = "Canal premium o restringido"; -$a->strings["Thing updated"] = "Elemento actualizado."; -$a->strings["Object store: failed"] = "Guardar objeto: ha fallado"; -$a->strings["Thing added"] = "Elemento añadido"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Mostrar elemento"; -$a->strings["item not found."] = "elemento no encontrado."; -$a->strings["Edit Thing"] = "Editar elemento"; -$a->strings["Select a profile"] = "Seleccionar un perfil"; -$a->strings["Post an activity"] = "Publicar una actividad"; -$a->strings["Only sends to viewers of the applicable profile"] = "Sólo envíos a espectadores del perfil pertinente."; -$a->strings["Name of thing e.g. something"] = "Nombre del elemento p. ej.:. \"algo\""; -$a->strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; -$a->strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; -$a->strings["Add Thing to your Profile"] = "Añadir elemento a su perfil"; -$a->strings["Item not available."] = "Elemento no disponible"; -$a->strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; -$a->strings["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; -$a->strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; -$a->strings["Image exceeds size limit of %d"] = "La imagen supera el tamaño límite de %d"; -$a->strings["Unable to process image."] = "No ha sido posible procesar la imagen."; -$a->strings["Photo not available."] = "Foto no disponible."; -$a->strings["Upload File:"] = "Subir fichero:"; -$a->strings["Select a profile:"] = "Seleccionar un perfil:"; -$a->strings["Upload Profile Photo"] = "Subir foto de perfil"; -$a->strings["or"] = "o"; -$a->strings["skip this step"] = "Omitir este paso"; -$a->strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes de fotos"; -$a->strings["Crop Image"] = "Recortar imagen"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; -$a->strings["Done Editing"] = "Edición completada"; -$a->strings["Image uploaded successfully."] = "Imagen subida correctamente."; -$a->strings["Image upload failed."] = "Subida de imagen fallida."; -$a->strings["Image size reduction [%s] failed."] = "La reducción de la imagen [%s] ha fallado."; +$a->strings["Bookmark added"] = "Marcador añadido"; +$a->strings["My Bookmarks"] = "Mis Marcadores"; +$a->strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; +$a->strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; +$a->strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; $a->strings["Invalid item."] = "Elemento no válido."; $a->strings["Channel not found."] = "Canal no encontrado."; $a->strings["Page not found."] = "Página no encontrada."; +$a->strings["First Name"] = "Nombre"; +$a->strings["Last Name"] = "Apellido"; +$a->strings["Nickname"] = "Sobrenombre o Alias"; +$a->strings["Full Name"] = "Nombre completo"; +$a->strings["Profile Photo 16px"] = "Foto del perfil 16px"; +$a->strings["Profile Photo 32px"] = "Foto del perfil 32px"; +$a->strings["Profile Photo 48px"] = "Foto del perfil 48px"; +$a->strings["Profile Photo 64px"] = "Foto del perfil 64px"; +$a->strings["Profile Photo 80px"] = "Foto del perfil 80px"; +$a->strings["Profile Photo 128px"] = "Foto del perfil 128px"; +$a->strings["Timezone"] = "Zona horaria"; +$a->strings["Homepage URL"] = "Dirección de la página personal"; +$a->strings["Birth Year"] = "Año de nacimiento"; +$a->strings["Birth Month"] = "Mes de nacimiento"; +$a->strings["Birth Day"] = "Día de nacimiento"; +$a->strings["Birthdate"] = "Fecha de nacimiento"; +$a->strings["Gender"] = "Género"; $a->strings["Like/Dislike"] = "Me gusta/No me gusta"; $a->strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; $a->strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; @@ -1027,224 +1041,54 @@ $a->strings["Previous action reversed."] = "Acción anterior revocada."; $a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s está de acuerdo con %3\$s de %2\$s"; $a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s no está de acuerdo con %3\$s de %2\$s"; $a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s se abstiene en %3\$s de %2\$s"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participará en el %3\$s de %2\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no participará en el %3\$s de %2\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s tal vez participe en el %3\$s de %2\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; $a->strings["Action completed."] = "Acción completada."; $a->strings["Thank you."] = "Gracias."; -$a->strings["Calendar entries imported."] = "Entradas de calendario importadas."; -$a->strings["No calendar entries found."] = "No encontradas entradas de calendario."; -$a->strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; -$a->strings["Unable to generate preview."] = "No se puede crear la vista previa."; -$a->strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; -$a->strings["Event not found."] = "Evento no encontrado."; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Editar evento"; -$a->strings["Delete event"] = "Borrar evento"; -$a->strings["calendar"] = "calendario"; -$a->strings["Create New Event"] = "Crear Nuevo Evento"; -$a->strings["Previous"] = "Anterior"; -$a->strings["Next"] = "Siguiente"; -$a->strings["Export"] = "Exportar"; -$a->strings["Import"] = "Importar"; -$a->strings["Event removed"] = "Evento borrado"; -$a->strings["Failed to remove event"] = "Error al borrar el evento"; -$a->strings["Event details"] = "Detalles del evento"; -$a->strings["Starting date and Title are required."] = "Se requieren fecha y título."; -$a->strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; -$a->strings["Event Starts:"] = "Inicio del evento:"; -$a->strings["Finish date/time is not known or not relevant"] = "La fecha / hora de finalización no se conocen o no son relevantes"; -$a->strings["Event Finishes:"] = "Finalización del evento:"; -$a->strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de zona horaria"; -$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; -$a->strings["Title:"] = "Título:"; -$a->strings["Share this event"] = "Compartir este evento"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %2\$s de %3\$s"; -$a->strings["Public Sites"] = "Sitios públicos"; -$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."] = "Los sitios listados permiten el registro público de la red \$Projectname. Todos los sitios de la red están vinculados entre sí por lo que sus miembros, en ninguna de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los enlaces de los proveedores pueden proporcionar detalles adicionales."; -$a->strings["Rate this hub"] = "Valorar este sitio"; -$a->strings["Site URL"] = "Dirección del sitio"; -$a->strings["Access Type"] = "Tipo de Acceso"; -$a->strings["Registration Policy"] = "Normas de Registro"; -$a->strings["Location"] = "Localización"; -$a->strings["View hub ratings"] = "Ver las valoraciones del sitio"; -$a->strings["Rate"] = "Valorar"; -$a->strings["View ratings"] = "Ver valoraciones"; -$a->strings["Edit post"] = "Editar entrada"; -$a->strings["\$Projectname channel"] = "canal \$Projectname"; -$a->strings["Collection created."] = "Colección creada."; -$a->strings["Could not create collection."] = "No se puede crear colección."; -$a->strings["Collection updated."] = "Colección actualizada."; -$a->strings["Create a collection of channels."] = "Crear una colección de canales."; -$a->strings["Collection Name: "] = "Nombre de la colección:"; -$a->strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; -$a->strings["Collection removed."] = "Colección eliminada."; -$a->strings["Unable to remove collection."] = "No ha sido posible de eliminar la colección."; -$a->strings["Collection Editor"] = "Editor de colecciones"; -$a->strings["Members"] = "Miembros"; -$a->strings["All Connected Channels"] = "Todos los canales conectados"; -$a->strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; -$a->strings["Version %s"] = "Versión %s"; -$a->strings["Installed plugins/addons/apps:"] = "Extensiones/Aplicaciones instaladas:"; -$a->strings["No installed plugins/addons/apps"] = "Extensiones/Aplicaciones no instaladas:"; -$a->strings["\$Projectname"] = "\$Projectname"; -$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; -$a->strings["Tag: "] = "Etiqueta:"; -$a->strings["Last background fetch: "] = "Última actualización en segundo plano:"; -$a->strings["Running at web location"] = "Corriendo en el sitio web"; -$a->strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Por favor, visite redmatrix.me para aprender más sobre \$Projectname."; -$a->strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por, favor visite"; -$a->strings["\$projectname issues"] = "Problemas en \$projectname"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; -$a->strings["Site Administrators"] = "Administradores del sitio"; -$a->strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; -$a->strings["Empty post discarded."] = "Desechada entrada vacía."; -$a->strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; -$a->strings["System error. Post not saved."] = "Error del sistema. Entrada no salvada."; -$a->strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f tope máximo de entradas"; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; -$a->strings["No such group"] = "No se encuentra el grupo"; -$a->strings["No such channel"] = "No se encuentra el canal"; -$a->strings["Search Results For:"] = "Buscar resultados para:"; -$a->strings["Collection is empty"] = "La colección está vacía"; -$a->strings["Collection: "] = "Colección:"; -$a->strings["Connection: "] = "Conexión:"; -$a->strings["Invalid connection."] = "Conexión no válida."; +$a->strings["Export Channel"] = "Exportar el canal"; +$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."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; +$a->strings["Export Content"] = "Exportar contenidos"; +$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."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; +$a->strings["Export your posts from a given year."] = "Exporta sus entradas de un año dado."; +$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."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; +$a->strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; +$a->strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %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)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; +$a->strings["Away"] = "Ausente"; +$a->strings["Online"] = "Conectado/a"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado la %3\$s de %2\$s con %4\$s"; $a->strings["No channel."] = "Ningún canal."; $a->strings["Common connections"] = "Conexiones comunes"; $a->strings["No connections in common."] = "Ninguna conexión en común."; -$a->strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; -$a->strings["Blocked"] = "Bloqueadas"; -$a->strings["Ignored"] = "Ignoradas"; -$a->strings["Hidden"] = "Ocultas"; -$a->strings["Archived"] = "Archivadas"; -$a->strings["Suggest new connections"] = "Sugerir nuevas conexiones"; -$a->strings["New Connections"] = "Nuevas conexiones"; -$a->strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; -$a->strings["All Connections"] = "Todas las conexiones"; -$a->strings["Show all connections"] = "Mostrar todas las conexiones"; -$a->strings["Unblocked"] = "Desbloqueadas"; -$a->strings["Only show unblocked connections"] = "Mostrar solo las conexiones desbloqueadas"; -$a->strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas"; -$a->strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas"; -$a->strings["Only show archived connections"] = "Mostrar solo las conexiones archivadas"; -$a->strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit connection"] = "Editar conexión"; -$a->strings["Search your connections"] = "Buscar sus conexiones"; -$a->strings["Finding: "] = "Búsqueda:"; -$a->strings["Block Name"] = "Nombre del bloque"; -$a->strings["Block Title"] = "Título del bloque"; -$a->strings["Item not found"] = "Elemento no encontrado"; -$a->strings["Item is not editable"] = "El elemento no es editable"; -$a->strings["Delete item?"] = "¿Borrar el elemento?"; -$a->strings["Insert YouTube video"] = "Insertar vídeo de YouTube"; -$a->strings["Insert Vorbis [.ogg] video"] = "Insertar vídeo Vorbis [.ogg]"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Insertar audio Vorbis [.ogg]"; -$a->strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "\$Projectname - Invitados: Nombre de usuario: {su dirección de correo electrónico}, Contraseña: +++"; -$a->strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; -$a->strings["Album not found."] = "Álbum no encontrado."; -$a->strings["Delete Album"] = "Borrar álbum"; -$a->strings["Delete Photo"] = "Borrar foto"; -$a->strings["No photos selected"] = "No hay fotos seleccionadas"; -$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; -$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."; -$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado."; -$a->strings["Upload Photos"] = "Subir fotos"; -$a->strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum"; -$a->strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente"; -$a->strings["Create a status post for this upload"] = "Crear una entrada de estado para esta subida"; -$a->strings["Album name could not be decoded"] = "El nombre del álbum no ha podido ser descifrado"; -$a->strings["Contact Photos"] = "Fotos de contacto"; -$a->strings["Show Newest First"] = "Mostrar lo más reciente primero"; -$a->strings["Show Oldest First"] = "Mostrar lo más antiguo primero"; -$a->strings["View Photo"] = "Ver foto"; -$a->strings["Edit Album"] = "Editar álbum"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; -$a->strings["Photo not available"] = "Foto no disponible"; -$a->strings["Use as profile photo"] = "Usar como foto de perfil"; -$a->strings["Private Photo"] = "Foto privada"; -$a->strings["View Full Size"] = "Ver tamaño completo"; -$a->strings["Edit photo"] = "Editar foto"; -$a->strings["Rotate CW (right)"] = "Girar CW (a la derecha)"; -$a->strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)"; -$a->strings["Caption"] = "Título"; -$a->strings["Add a Tag"] = "Añadir una etiqueta"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplo: @bob, @Barbara_Gómez, @juan@ejemplo.com"; -$a->strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; -$a->strings["In This Photo:"] = "En esta foto:"; -$a->strings["Map"] = "Mapa"; -$a->strings["View Album"] = "Ver álbum"; -$a->strings["Recent Photos"] = "Fotos recientes"; -$a->strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; -$a->strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; -$a->strings["Profile Match"] = "Perfil compatible"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; -$a->strings["is interested in:"] = "está interesado en:"; -$a->strings["No matches"] = "No se han encontrado perfiles compatibles"; -$a->strings["Away"] = "Ausente"; -$a->strings["Online"] = "Conectado"; -$a->strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; -$a->strings["Save Bookmark"] = "Guardar marcador"; -$a->strings["URL of bookmark"] = "Dirección del marcador"; -$a->strings["Description"] = "Descripción"; -$a->strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; -$a->strings["No more system notifications."] = "No hay más notificaciones del sistema"; -$a->strings["System Notifications"] = "Notificaciones de sistema"; -$a->strings["network"] = "red"; -$a->strings["RSS"] = "RSS"; -$a->strings["Layout updated."] = "Formato actualizado"; -$a->strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; -$a->strings["Layout not found."] = "Formato no encontrado"; -$a->strings["Module Name:"] = "Nombre del módulo:"; -$a->strings["Layout Help"] = "Ayuda para el diseño de la página"; +$a->strings["sent you a private message"] = "le ha enviado un mensaje privado"; +$a->strings["added your channel"] = "añadió este canal a sus conexiones"; +$a->strings["posted an event"] = "publicó un evento"; +$a->strings["Documentation Search"] = "Búsqueda de Documentación"; +$a->strings["Help:"] = "Ayuda:"; +$a->strings["Not Found"] = "No encontrado"; +$a->strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; +$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; +$a->strings["Remove This Channel"] = "Eliminar este canal"; +$a->strings["WARNING: "] = "ATENCIÓN:"; +$a->strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red."; +$a->strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!"; +$a->strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:"; +$a->strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; +$a->strings["Remove Channel"] = "Eliminar el canal"; $a->strings["- select -"] = "- seleccionar -"; -$a->strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; -$a->strings["Nothing to import."] = "No hay nada para importar."; -$a->strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; -$a->strings["Imported file is empty."] = "El fichero importado está vacío."; -$a->strings["The data provided is not compatible with this project."] = "Los datos proporcionados no son compatibles con este proyecto."; -$a->strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear el canal porque el identificador del canal no se ha podido duplicar en este servidor."; -$a->strings["Channel clone failed. Import failed."] = "No se ha podido importar el canal porque el canal no se ha podido clonar."; -$a->strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; -$a->strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; -$a->strings["Import Channel"] = "Importar canal"; -$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."] = "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."; -$a->strings["File to Upload"] = "Fichero para subir"; -$a->strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; -$a->strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; -$a->strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; -$a->strings["Your old login password"] = "Su antigua contraseña"; -$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."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua ubicación debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."; -$a->strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; -$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; -$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; -$a->strings["Delete layout?"] = "¿Borrar formato?"; -$a->strings["Layout Description (Optional)"] = "Descripción del formato gráfico (opcional)"; -$a->strings["Layout Name"] = "Nombre del formato"; -$a->strings["Edit Layout"] = "Modificar formato"; -$a->strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; -$a->strings["Room not found"] = "Sala no encontrada"; -$a->strings["Leave Room"] = "Abandonar sala"; -$a->strings["Delete This Room"] = "Eliminar esta sala"; -$a->strings["I am away right now"] = "Estoy ausente momentáneamente"; -$a->strings["I am online"] = "Estoy conectado"; -$a->strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; -$a->strings["New Chatroom"] = "Nueva sala de chat"; -$a->strings["Chatroom Name"] = "Nombre de sala de chat"; -$a->strings["%1\$s's Chatrooms"] = "Sala de chat de %1\$s"; $a->strings["Menu not found."] = "Menú no encontrado"; $a->strings["Unable to create element."] = "Imposible crear el elemento."; $a->strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; $a->strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; +$a->strings["Not found."] = "No encontrado."; $a->strings["Menu Item Permissions"] = "Permisos del elemento del menú"; -$a->strings["(click to open/close)"] = "(pulse para abrir/cerrar)"; +$a->strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; $a->strings["Link Name"] = "Nombre del enlace"; $a->strings["Link or Submenu Target"] = "Destino del enlace o submenú"; -$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "Introduzca la dirección del enlace o seleccione el nombre de un submenú"; -$a->strings["Use magic-auth if available"] = "Use la autenticación mágica si está disponible"; +$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; +$a->strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; $a->strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; $a->strings["Order in list"] = "Orden en la lista"; $a->strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; @@ -1253,7 +1097,7 @@ $a->strings["Submit and continue"] = "Enviar y continuar"; $a->strings["Menu:"] = "Menú:"; $a->strings["Link Target"] = "Destino del enlace"; $a->strings["Edit menu"] = "Editar menú"; -$a->strings["Edit element"] = "Editar elemento"; +$a->strings["Edit element"] = "Editar el elemento"; $a->strings["Drop element"] = "Eliminar el elemento"; $a->strings["New element"] = "Nuevo elemento"; $a->strings["Edit this menu container"] = "Modificar el contenedor del menú"; @@ -1265,73 +1109,374 @@ $a->strings["Menu item deleted."] = "Este elemento del menú ha sido borrado"; $a->strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado."; $a->strings["Edit Menu Element"] = "Editar elemento del menú"; $a->strings["Link text"] = "Texto del enlace"; -$a->strings["Delete webpage?"] = "¿Eliminar página web?"; -$a->strings["Page link title"] = "Título del enlace de la página"; -$a->strings["Edit Webpage"] = "Editar página web"; -$a->strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; -$a->strings["No valid account found."] = "No se ha encontrado una cuenta válida."; -$a->strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; -$a->strings["Site Member (%s)"] = "Usuario del sitio (%s)"; -$a->strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; -$a->strings["Password Reset"] = "Restablecer la contraseña"; -$a->strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; -$a->strings["Your new password is"] = "Su nueva contraseña es"; -$a->strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; -$a->strings["click here to login"] = "Pulse aquí para conectarse"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; -$a->strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; -$a->strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; -$a->strings["Email Address"] = "Dirección de correo electrónico"; -$a->strings["Reset"] = "Reiniciar"; +$a->strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; +$a->strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; +$a->strings["Connection updated."] = "Conexión actualizada."; +$a->strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; +$a->strings["is now connected to"] = "ahora está conectado/a"; +$a->strings["Could not access address book record."] = "No se pudo acceder a la entrada en su libreta de direcciones."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; +$a->strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; +$a->strings["Connection has been removed."] = "La conexión ha sido eliminada."; +$a->strings["View %s's profile"] = "Ver el perfil de %s"; +$a->strings["Refresh Permissions"] = "Recargar los permisos"; +$a->strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; +$a->strings["Recent Activity"] = "Actividad reciente"; +$a->strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; +$a->strings["Unblock"] = "Desbloquear"; +$a->strings["Block"] = "Bloquear"; +$a->strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; +$a->strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; +$a->strings["Unignore"] = "Dejar de ignorar"; +$a->strings["Ignore"] = "Ignorar"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; +$a->strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; +$a->strings["Unarchive"] = "Desarchivar"; +$a->strings["Archive"] = "Archivar"; +$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; +$a->strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; +$a->strings["Unhide"] = "Mostrar"; +$a->strings["Hide"] = "Ocultar"; +$a->strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; +$a->strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; +$a->strings["Delete this connection"] = "Eliminar esta conexión"; +$a->strings["Approve this connection"] = "Aprobar esta conexión"; +$a->strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; +$a->strings["Set Affinity"] = "Ajustar la afinidad"; +$a->strings["Set Profile"] = "Ajustar el perfil"; +$a->strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; +$a->strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; +$a->strings["This connection's address is"] = "La dirección de esta conexión es"; +$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; +$a->strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; +$a->strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; +$a->strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; +$a->strings["Custom Filter"] = "Filtro personalizado"; +$a->strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; +$a->strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "palabras, una por línea, o #etiquetas o /patrones/, dejar en blanco para importar todas las entradas"; +$a->strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; +$a->strings["This information is public!"] = "¡Esta información es pública!"; +$a->strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; +$a->strings["Connection Request"] = "Solicitud de conexión"; +$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) desearía conectar con usted. por favor, apruebe esta conexión para permitir la comunicación."; +$a->strings["Approve"] = "Aprobar"; +$a->strings["Approve Later"] = "Aprobar más tarde"; +$a->strings["inherited"] = "heredado"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; +$a->strings["Their Settings"] = "Sus ajustes"; +$a->strings["My Settings"] = "Mis ajustes"; +$a->strings["Individual Permissions"] = "Permisos individuales"; +$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."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; +$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."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; +$a->strings["Last update:"] = "Última actualización:"; +$a->strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; +$a->strings["Hub not found."] = "Servidor no encontrado"; +$a->strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; +$a->strings["Configuration Editor"] = "Editor de configuración"; +$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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; +$a->strings["Public Sites"] = "Sitios públicos"; +$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."] = "Los sitios listados permiten el registro público de la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los enlaces de los proveedores pueden proporcionar detalles adicionales."; +$a->strings["Rate this hub"] = "Valorar este sitio"; +$a->strings["Site URL"] = "Dirección del sitio"; +$a->strings["Access Type"] = "Tipo de acceso"; +$a->strings["Registration Policy"] = "Normas de registro"; +$a->strings["Location"] = "Localización"; +$a->strings["View hub ratings"] = "Ver las valoraciones del sitio"; +$a->strings["Rate"] = "Valorar"; +$a->strings["View ratings"] = "Ver valoraciones"; +$a->strings["Permission Denied."] = "Permiso denegado"; +$a->strings["File not found."] = "Fichero no encontrado."; +$a->strings["Edit file permissions"] = "Modificar los permisos del fichero"; +$a->strings["Set/edit permissions"] = "Establecer/editar los permisos"; +$a->strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; +$a->strings["Return to file list"] = "Volver a la lista de ficheros"; +$a->strings["Copy/paste this code to attach file to a post"] = "Copiar/pegar este código para adjuntar el fichero al envío"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Copiar/pegar esta dirección para enlazar el fichero desde una página web"; +$a->strings["Share this file"] = "Compartir este fichero"; +$a->strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; +$a->strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; +$a->strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; +$a->strings["Layout Name"] = "Nombre del formato"; +$a->strings["Layout Description (Optional)"] = "Descripción del formato gráfico (opcional)"; +$a->strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; +$a->strings["Layout Description"] = "Descripción del formato"; +$a->strings["Download PDL file"] = "Descargar el fichero PDL"; +$a->strings["Poke/Prod"] = "Toque/Incitación"; +$a->strings["poke, prod or do other things to somebody"] = "dar un toque, incitar u otras cosas a alguien"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; +$a->strings["Make this post private"] = "Convertir en privado este envío"; +$a->strings["No such group"] = "No se encuentra el grupo"; +$a->strings["No such channel"] = "No se encuentra el canal"; +$a->strings["forum"] = "foro"; +$a->strings["Search Results For:"] = "Buscar resultados para:"; +$a->strings["Collection is empty"] = "La colección está vacía"; +$a->strings["Collection: "] = "Colección:"; +$a->strings["Invalid connection."] = "Conexión no válida."; +$a->strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; +$a->strings["Room not found"] = "Sala no encontrada"; +$a->strings["Leave Room"] = "Abandonar la sala"; +$a->strings["Delete This Room"] = "Eliminar esta sala"; +$a->strings["I am away right now"] = "Estoy ausente momentáneamente"; +$a->strings["I am online"] = "Estoy conectado/a"; +$a->strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; +$a->strings["New Chatroom"] = "Nueva sala de chat"; +$a->strings["Chatroom Name"] = "Nombre de la sala de chat"; +$a->strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; +$a->strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; +$a->strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; $a->strings["Website:"] = "Sitio web:"; $a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; $a->strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; $a->strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; -$a->strings["Delete block?"] = "¿Borrar este bloque?"; -$a->strings["Edit Block"] = "Modificar este bloque"; -$a->strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; -$a->strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; -$a->strings["Please join us on Red"] = "Únase a nosotros en RedMatrix"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; -$a->strings["%s : Message delivery failed."] = "%s : Falló la entrega del mensaje."; -$a->strings["%d message sent."] = array( - 0 => "%d mensajes enviados.", - 1 => "%d mensajes enviados.", -); -$a->strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; -$a->strings["Send invitations"] = "Enviar invitaciones"; -$a->strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónica, una por línea:"; +$a->strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; +$a->strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; +$a->strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; +$a->strings["Messages"] = "Mensajes"; +$a->strings["Message recalled."] = "Mensaje revocado."; +$a->strings["Conversation removed."] = "Conversación eliminada."; +$a->strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; +$a->strings["Send Private Message"] = "Enviar un mensaje privado"; +$a->strings["To:"] = "Para:"; +$a->strings["Subject:"] = "Asunto:"; $a->strings["Your message:"] = "Su mensaje:"; -$a->strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; -$a->strings["You will need to supply this invitation code: "] = "Debe proporcionar este código de invitación:"; -$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier lugar del \$Projectname (están todos interconectados)"; -$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; -$a->strings["or visit "] = "o visite"; -$a->strings["3. Click [Connect]"] = "3. Pulse [conectar]"; -$a->strings["Location not found."] = "Localización no encontrada."; -$a->strings["Primary location cannot be removed."] = "La localización primaria no puede ser eliminada."; -$a->strings["No locations found."] = "Ninguna localización encontrada."; -$a->strings["Manage Channel Locations"] = "Gestionar localizaciones del canal"; -$a->strings["Location (address)"] = "Localización (dirección)"; -$a->strings["Primary Location"] = "Localización primaria"; -$a->strings["Drop location"] = "Eliminar localización"; -$a->strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los clontenidos. Ningún canal ha sido seleccionado."; -$a->strings["Source created."] = "Fuente creada."; -$a->strings["Source updated."] = "Fuente actualizada."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; -$a->strings["New Source"] = "Nueva fuente"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal, y distribuirlo de acuerdo con sus ajustes."; -$a->strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; -$a->strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; -$a->strings["Channel Name"] = "Nombre del canal"; -$a->strings["Source not found."] = "Fuente no encontrada"; -$a->strings["Edit Source"] = "Editar fuente"; -$a->strings["Delete Source"] = "Eliminar fuente"; -$a->strings["Source removed"] = "Fuente eliminada"; -$a->strings["Unable to remove source."] = "Imposible eliminar la fuente."; +$a->strings["Send"] = "Enviar"; +$a->strings["Delete message"] = "Borrar mensaje"; +$a->strings["Delivery report"] = "Informe de transmisión"; +$a->strings["Recall message"] = "Revocar el mensaje"; +$a->strings["Message has been recalled."] = "El mensaje ha sido revocado."; +$a->strings["Delete Conversation"] = "Eliminar Conversación"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; +$a->strings["Send Reply"] = "Responder"; +$a->strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; +$a->strings["Item not found"] = "Elemento no encontrado"; +$a->strings["Item is not editable"] = "El elemento no es editable"; +$a->strings["Delete item?"] = "¿Borrar elemento?"; +$a->strings["Insert YouTube video"] = "Insertar vídeo de YouTube"; +$a->strings["Insert Vorbis [.ogg] video"] = "Insertar vídeo Vorbis [.ogg]"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Insertar audio Vorbis [.ogg]"; +$a->strings["Edit post"] = "Editar la entrada"; +$a->strings["Invalid message"] = "Mensaje no válido"; +$a->strings["no results"] = "sin resultados"; +$a->strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; +$a->strings["channel sync processed"] = "se ha realizado la sincronización del canal"; +$a->strings["queued"] = "encolado"; +$a->strings["posted"] = "enviado"; +$a->strings["accepted for delivery"] = "aceptado para el envío"; +$a->strings["updated"] = "actualizado"; +$a->strings["update ignored"] = "actualización ignorada"; +$a->strings["permission denied"] = "permiso denegado"; +$a->strings["recipient not found"] = "destinatario no encontrado"; +$a->strings["mail recalled"] = "mensaje de correo revocado"; +$a->strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; +$a->strings["mail delivered"] = "correo enviado"; +$a->strings["Delete block?"] = "¿Borrar bloque?"; +$a->strings["Edit Block"] = "Modificar este bloque"; +$a->strings["\$Projectname"] = "\$Projectname"; +$a->strings["Welcome to %s"] = "Bienvenido a %s"; +$a->strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; +$a->strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; +$a->strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; +$a->strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; +$a->strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; +$a->strings["Unable to find your hub."] = "No se puede encontrar su servidor."; +$a->strings["Post successful."] = "Enviado con éxito."; +$a->strings["Theme settings updated."] = "Ajustes del tema actualizados."; +$a->strings["# Accounts"] = "# Cuentas"; +$a->strings["# blocked accounts"] = "# cuentas bloqueadas"; +$a->strings["# expired accounts"] = "# cuentas caducadas"; +$a->strings["# expiring accounts"] = "# cuentas que caducan"; +$a->strings["# Channels"] = "# Canales"; +$a->strings["# primary"] = "# primario"; +$a->strings["# clones"] = "# clones"; +$a->strings["Message queues"] = "Mensajes en cola"; +$a->strings["Administration"] = "Administración"; +$a->strings["Summary"] = "Sumario"; +$a->strings["Registered accounts"] = "Cuentas registradas"; +$a->strings["Pending registrations"] = "Registros pendientes"; +$a->strings["Registered channels"] = "Canales registrados"; +$a->strings["Active plugins"] = "Extensiones activas"; +$a->strings["Version"] = "Versión"; +$a->strings["Site settings updated."] = "Ajustes del sitio actualizados."; +$a->strings["mobile"] = "móvil"; +$a->strings["experimental"] = "experimental"; +$a->strings["unsupported"] = "no soportado"; +$a->strings["Yes - with approval"] = "Sí - con aprobación"; +$a->strings["My site is not a public server"] = "Mi sitio no es un servidor público"; +$a->strings["My site has paid access only"] = "Mi sitio es un servicio de pago"; +$a->strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; +$a->strings["Registration"] = "Registro"; +$a->strings["File upload"] = "Fichero subido"; +$a->strings["Policies"] = "Políticas"; +$a->strings["Site name"] = "Nombre del sitio"; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Administrator Information"] = "Información del Administrador"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; +$a->strings["System language"] = "Idioma del sistema"; +$a->strings["System theme"] = "Tema gráfico del sistema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema"; +$a->strings["Mobile system theme"] = "Tema del sistema para móviles"; +$a->strings["Theme for mobile devices"] = "Tema para dispositivos móviles"; +$a->strings["Allow Feeds as Connections"] = "Permitir flujos RSS como conexiones"; +$a->strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)"; +$a->strings["Maximum image size"] = "Tamaño máximo de la imagen"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites."; +$a->strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; +$a->strings["Register text"] = "Texto del registro"; +$a->strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; +$a->strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; +$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."] = "ejemplo: 'public' para mostrar contenido público de los usuarios, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero."; +$a->strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; +$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; +$a->strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; +$a->strings["Allowed friend domains"] = "Dominios amigos permitidos"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio."; +$a->strings["Allowed email domains"] = "Se aceptan dominios de correo electrónico"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. "; +$a->strings["Not allowed email domains"] = "No se permiten dominios de correo electrónico"; +$a->strings["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."] = "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado."; +$a->strings["Block public"] = "Bloquear páginas públicas"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Activar para bloquear el acceso a todas las páginas públicas personales en este sitio, salvo que estén identificadas en el sistema."; +$a->strings["Verify Email Addresses"] = "Verificar las direcciones de correo electrónico"; +$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)."; +$a->strings["Force publish"] = "Forzar la publicación"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; +$a->strings["Disable discovery tab"] = "Desactivar la pestaña \"Descubrir\""; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Quitar la pestaña para ver contenido público extraído de las fuentes elegidas por este sitio."; +$a->strings["login on Homepage"] = "acceso a la página personal"; +$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido."; +$a->strings["Proxy user"] = "Usuario del proxy"; +$a->strings["Proxy URL"] = "Dirección del proxy"; +$a->strings["Network timeout"] = "Tiempo de espera de la red"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)"; +$a->strings["Delivery interval"] = "Intervalo de entrega"; +$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."] = "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados."; +$a->strings["Deliveries per process"] = "Intentos de envío por proceso"; +$a->strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5."; +$a->strings["Poll interval"] = "Intervalo de sondeo"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar el sondeo en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de transmisión."; +$a->strings["Maximum Load Average"] = "Carga media máxima"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de transmisión y sondeo se hayan retardado - por defecto, 50."; +$a->strings["Expiration period in days for imported (matrix/network) content"] = "Periodo de caducidad en días para el contenido importado (red)"; +$a->strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; +$a->strings["No server found"] = "Servidor no encontrado"; +$a->strings["ID"] = "ID"; +$a->strings["for channel"] = "por canal"; +$a->strings["on server"] = "en el servidor"; +$a->strings["Status"] = "Estado"; +$a->strings["Server"] = "Servidor"; +$a->strings["Update has been marked successful"] = "La actualización ha sido marcada como exitosa"; +$a->strings["Executing %s failed. Check system logs."] = "La ejecución de %s ha fallado. Mirar en los informes del sistema."; +$a->strings["Update %s was successfully applied."] = "La actualización de %s se ha realizado exitosamente."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito."; +$a->strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s."; +$a->strings["No failed updates."] = "No ha fallado ninguna actualización."; +$a->strings["Failed Updates"] = "Han fallado las actualizaciones"; +$a->strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; +$a->strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; +$a->strings["Queue Statistics"] = "Estadísticas de la cola"; +$a->strings["Total Entries"] = "Total de entradas"; +$a->strings["Priority"] = "Prioridad"; +$a->strings["Destination URL"] = "Dirección de destino"; +$a->strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea"; +$a->strings["Empty queue for this hub"] = "Vaciar la cola para este servidor"; +$a->strings["Last known contact"] = "Último contacto conocido"; +$a->strings["%s account blocked/unblocked"] = array( + 0 => "%s cuenta bloqueada/desbloqueada", + 1 => "%s cuenta bloqueada/desbloqueada", +); +$a->strings["%s account deleted"] = array( + 0 => "%s cuentas eliminadas", + 1 => "%s cuentas eliminadas", +); +$a->strings["Account not found"] = "Cuenta no encontrada"; +$a->strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada"; +$a->strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; +$a->strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; +$a->strings["Users"] = "Usuarios"; +$a->strings["select all"] = "seleccionar todo"; +$a->strings["User registrations waiting for confirm"] = "Registros de usuario en espera de aprobación"; +$a->strings["Request date"] = "Fecha de solicitud"; +$a->strings["No registrations."] = "Sin registros."; +$a->strings["Deny"] = "Rechazar"; +$a->strings["Register date"] = "Fecha de registro"; +$a->strings["Last login"] = "Último acceso"; +$a->strings["Expires"] = "Caduca"; +$a->strings["Service Class"] = "Clase de servicio"; +$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; +$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?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "%s canales censurados/no censurados", + 1 => "%s canales censurados/no censurados", +); +$a->strings["%s channel code allowed/disallowed"] = array( + 0 => "%s código permitido/no permitido al canal", + 1 => "%s código permitido/no permitido al canal", +); +$a->strings["%s channel deleted"] = array( + 0 => "%s canales eliminados", + 1 => "%s canales eliminados", +); +$a->strings["Channel not found"] = "Canal no encontrado"; +$a->strings["Channel '%s' deleted"] = "Canal '%s' eliminado"; +$a->strings["Channel '%s' censored"] = "Canal '%s' censurado"; +$a->strings["Channel '%s' uncensored"] = "Canal '%s' no censurado"; +$a->strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'"; +$a->strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'"; +$a->strings["Censor"] = "Censurar"; +$a->strings["Uncensor"] = "No censurar"; +$a->strings["Allow Code"] = "Permitir código"; +$a->strings["Disallow Code"] = "No permitir código"; +$a->strings["UID"] = "UID"; +$a->strings["Address"] = "Dirección"; +$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?"] = "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; +$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?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; +$a->strings["Plugin %s disabled."] = "Extensión %s desactivada."; +$a->strings["Plugin %s enabled."] = "Extensión %s activada."; +$a->strings["Disable"] = "Desactivar"; +$a->strings["Enable"] = "Activar"; +$a->strings["Toggle"] = "Cambiar"; +$a->strings["Author: "] = "Autor:"; +$a->strings["Maintainer: "] = "Mantenedor:"; +$a->strings["No themes found."] = "No se han encontrado temas."; +$a->strings["Screenshot"] = "Instantánea de pantalla"; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[No soportado]"; +$a->strings["Log settings updated."] = "Actualizado el informe de configuraciones."; +$a->strings["Clear"] = "Vaciar"; +$a->strings["Debugging"] = "Depuración"; +$a->strings["Log file"] = "Fichero de informe"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio de instalación de Hubzilla."; +$a->strings["Log level"] = "Nivel de depuración"; +$a->strings["New Profile Field"] = "Nuevo campo en el perfil"; +$a->strings["Field nickname"] = "Alias del campo"; +$a->strings["System name of field"] = "Nombre del campo en el sistema"; +$a->strings["Input type"] = "Tipo de entrada"; +$a->strings["Field Name"] = "Nombre del campo"; +$a->strings["Label on profile pages"] = "Etiqueta a mostrar en la página del perfil"; +$a->strings["Help text"] = "Texto de ayuda"; +$a->strings["Additional info (optional)"] = "Información adicional (opcional)"; +$a->strings["Field definition not found"] = "Definición del campo no encontrada"; +$a->strings["Edit Profile Field"] = "Modificar el campo del perfil"; +$a->strings["App installed."] = "Aplicación instalada."; +$a->strings["Malformed app."] = "Aplicación con errores"; +$a->strings["Embed code"] = "Código incorporado"; +$a->strings["Edit App"] = "Modificar la aplicación"; +$a->strings["Create App"] = "Crear una aplicación"; +$a->strings["Name of app"] = "Nombre de la aplicación"; +$a->strings["Location (URL) of app"] = "Ubicación (URL) de la aplicación"; +$a->strings["Description"] = "Descripción"; +$a->strings["Photo icon URL"] = "Dirección del icono que se va a utilizar para esta foto"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; +$a->strings["Version ID"] = "Versión"; +$a->strings["Price of app"] = "Precio de la aplicación"; +$a->strings["Location (URL) to purchase app"] = "Ubicación (URL) donde adquirir la aplicación"; $a->strings["Unable to update menu."] = "No se puede actualizar el menú."; $a->strings["Unable to create menu."] = "No se puede crear el menú."; $a->strings["Menu Name"] = "Nombre del menú"; @@ -1354,37 +1499,565 @@ $a->strings["Must be unique, only seen by you"] = "Debe ser único, solo será v $a->strings["Menu title"] = "Título del menú"; $a->strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; $a->strings["Allow bookmarks"] = "Permitir marcadores"; -$a->strings["Permission Denied."] = "Permiso denegado"; -$a->strings["File not found."] = "Fichero no encontrado."; -$a->strings["Edit file permissions"] = "Modificar los permisos del fichero"; -$a->strings["Set/edit permissions"] = "Establecer/editar los permisos"; -$a->strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; -$a->strings["Return to file list"] = "Volver a la lista de ficheros"; -$a->strings["Copy/paste this code to attach file to a post"] = "Copiar/pegar este código para adjuntar el fichero al envío"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Copiar/pegar esta dirección para enlazar el fichero desde una página web"; -$a->strings["Share this file"] = "Compartir este fichero"; -$a->strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; -$a->strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; -$a->strings["Contact not found."] = "Contacto no encontrado"; -$a->strings["Friend suggestion sent."] = "Enviar sugerencia a un amigo."; -$a->strings["Suggest Friends"] = "Sugerir amigos"; -$a->strings["Suggest a friend for %s"] = "Sugerir un amigo a %s"; -$a->strings["Hub not found."] = "Servidor no encontrado"; -$a->strings["Poke/Prod"] = "Dar un toque/Incitar"; -$a->strings["poke, prod or do other things to somebody"] = "dar un toque, incitar u otras cosas a alguien"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; -$a->strings["Make this post private"] = "Convertir en privado este envío"; -$a->strings["Invalid profile identifier."] = "Identificador de perfil no válido"; -$a->strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -$a->strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadir o eliminar."; -$a->strings["Visible To"] = "Visible para"; +$a->strings["No more system notifications."] = "No hay más notificaciones del sistema"; +$a->strings["System Notifications"] = "Notificaciones de sistema"; +$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"] = "Añadir un canal"; +$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."] = "Un canal está formado por su propia colección de páginas web relacionadas. Se puede utilizar para almacenar los perfiles sociales de la red, blogs, grupos de conversación y foros, páginas de famosos y mucho más. Puede crear tantos canales como su proveedor de servicio permita."; +$a->strings["Channel Name"] = "Nombre del canal"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Ejemplos: \"Juan García\", \"Isabel y sus caballos\", \"Fútbol\", \"Grupo de parapente\" "; +$a->strings["Choose a short nickname"] = "Elija un alias corto"; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Su alias podrá usarse para crear una dirección de canal fácilmente memorizable (como una dirección de correo electrónico) que puede ser compartido con otros."; +$a->strings["Or import an existing channel from another location"] = "O importar un canal existente de otro lugar"; +$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"] = "Elija el tipo de canal (como red social o foro de discusión) y la privacidad que requiera, así podremos seleccionar el mejor conjunto de permisos para usted"; +$a->strings["Channel Type"] = "Tipo de canal"; +$a->strings["Read more about roles"] = "Leer más sobre los roles"; +$a->strings["Invalid request identifier."] = "Petición inválida del identificador."; +$a->strings["Discard"] = "Descartar"; +$a->strings["Layout updated."] = "Formato actualizado"; +$a->strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; +$a->strings["Layout not found."] = "Formato no encontrado"; +$a->strings["Module Name:"] = "Nombre del módulo:"; +$a->strings["Layout Help"] = "Ayuda para el diseño de la página"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %2\$s de %3\$s"; +$a->strings["No valid account found."] = "No se ha encontrado una cuenta válida."; +$a->strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; +$a->strings["Site Member (%s)"] = "Usuario del sitio (%s)"; +$a->strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; +$a->strings["Password Reset"] = "Restablecer la contraseña"; +$a->strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; +$a->strings["Your new password is"] = "Su nueva contraseña es"; +$a->strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; +$a->strings["click here to login"] = "pulse aquí para conectarse"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; +$a->strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; +$a->strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; +$a->strings["Email Address"] = "Dirección de correo electrónico"; +$a->strings["Reset"] = "Reiniciar"; +$a->strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; +$a->strings["Album not found."] = "Álbum no encontrado."; +$a->strings["Delete Album"] = "Borrar álbum"; +$a->strings["Delete Photo"] = "Borrar foto"; +$a->strings["No photos selected"] = "No hay fotos seleccionadas"; +$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado."; +$a->strings["Upload Photos"] = "Subir fotos"; +$a->strings["Enter an album name"] = "Introducir un nombre de álbum"; +$a->strings["or select an existing album (doubleclick)"] = "o seleccionar uno existente (doble click)"; +$a->strings["Create a status post for this upload"] = "Crear una entrada de estado para esta subida"; +$a->strings["Album name could not be decoded"] = "El nombre del álbum no ha podido ser descifrado"; +$a->strings["Contact Photos"] = "Fotos de contacto"; +$a->strings["Show Newest First"] = "Mostrar lo más reciente primero"; +$a->strings["Show Oldest First"] = "Mostrar lo más antiguo primero"; +$a->strings["View Photo"] = "Ver foto"; +$a->strings["Edit Album"] = "Editar álbum"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; +$a->strings["Photo not available"] = "Foto no disponible"; +$a->strings["Use as profile photo"] = "Usar como foto del perfil"; +$a->strings["Private Photo"] = "Foto privada"; +$a->strings["Previous"] = "Anterior"; +$a->strings["View Full Size"] = "Ver tamaño completo"; +$a->strings["Next"] = "Siguiente"; +$a->strings["Remove"] = "Eliminar"; +$a->strings["Edit photo"] = "Editar foto"; +$a->strings["Rotate CW (right)"] = "Girar CW (a la derecha)"; +$a->strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)"; +$a->strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum"; +$a->strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente"; +$a->strings["Caption"] = "Título"; +$a->strings["Add a Tag"] = "Añadir una etiqueta"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com"; +$a->strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; +$a->strings["In This Photo:"] = "En esta foto:"; +$a->strings["Map"] = "Mapa"; +$a->strings["View Album"] = "Ver álbum"; +$a->strings["Recent Photos"] = "Fotos recientes"; +$a->strings["\$Projectname channel"] = "Canal \$Projectname"; +$a->strings["Calendar entries imported."] = "Entradas de calendario importadas."; +$a->strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; +$a->strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; +$a->strings["Unable to generate preview."] = "No se puede crear la vista previa."; +$a->strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; +$a->strings["Event not found."] = "Evento no encontrado."; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Editar evento"; +$a->strings["Delete event"] = "Borrar evento"; +$a->strings["calendar"] = "calendario"; +$a->strings["Create New Event"] = "Crear un nuevo evento"; +$a->strings["Export"] = "Exportar"; +$a->strings["Import"] = "Importar"; +$a->strings["Event removed"] = "Evento borrado"; +$a->strings["Failed to remove event"] = "Error al eliminar el evento"; +$a->strings["Event details"] = "Detalles del evento"; +$a->strings["Starting date and Title are required."] = "Se requieren fecha y título."; +$a->strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; +$a->strings["Event Starts:"] = "Inicio del evento:"; +$a->strings["Finish date/time is not known or not relevant"] = "La fecha / hora de finalización no se conocen o no son relevantes"; +$a->strings["Event Finishes:"] = "Finalización del evento:"; +$a->strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de zona horaria"; +$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; +$a->strings["Title:"] = "Título:"; +$a->strings["Share this event"] = "Compartir este evento"; $a->strings["%s element installed"] = "%s elemento instalado"; $a->strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; +$a->strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; +$a->strings["Profile Match"] = "Perfil compatible"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; +$a->strings["is interested in:"] = "está interesado en:"; +$a->strings["No matches"] = "No se han encontrado perfiles compatibles"; +$a->strings["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; +$a->strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; +$a->strings["Image upload failed."] = "Subida de imagen fallida."; +$a->strings["Unable to process image."] = "No ha sido posible procesar la imagen."; +$a->strings["female"] = "mujer"; +$a->strings["%1\$s updated her %2\$s"] = "%1\$s ha actualizado su %2\$s"; +$a->strings["male"] = "hombre"; +$a->strings["%1\$s updated his %2\$s"] = "%1\$s ha actualizado su %2\$s"; +$a->strings["%1\$s updated their %2\$s"] = "%1\$s ha actualizado sus %2\$s"; +$a->strings["profile photo"] = "foto del perfil"; +$a->strings["Photo not available."] = "Foto no disponible."; +$a->strings["Upload File:"] = "Subir fichero:"; +$a->strings["Select a profile:"] = "Seleccionar un perfil:"; +$a->strings["Upload Profile Photo"] = "Subir foto del perfil"; +$a->strings["or"] = "o"; +$a->strings["skip this step"] = "Omitir este paso"; +$a->strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes de fotos"; +$a->strings["Crop Image"] = "Recortar imagen"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; +$a->strings["Done Editing"] = "Edición completada"; +$a->strings["Channel added."] = "Canal añadido."; +$a->strings["Tag removed"] = "Etiqueta eliminada."; +$a->strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; +$a->strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; +$a->strings["No ratings"] = "Ninguna valoración"; +$a->strings["Ratings"] = "Valoraciones"; +$a->strings["Rating: "] = "Valoración:"; +$a->strings["Website: "] = "Sitio web:"; +$a->strings["Description: "] = "Descripción:"; +$a->strings["Page Title"] = "Título de página"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; +$a->strings["Passwords do not match."] = "Las contraseñas no coinciden."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; +$a->strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; +$a->strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; +$a->strings["Registration on this site/hub is by approval only."] = "El registro en este servidor/hub está sometido a aprobación previa."; +$a->strings["Register at another affiliated site/hub"] = "Inscribirse en un servidor/hub afiliado"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; +$a->strings["Terms of Service"] = "Términos del servicio"; +$a->strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Tengo más de 13 años de edad y acepto los %s de este sitio"; +$a->strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; +$a->strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; +$a->strings["Your email address"] = "Su dirección de correo electrónico"; +$a->strings["Choose a password"] = "Elija una contraseña"; +$a->strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; +$a->strings["Block Name"] = "Nombre del bloque"; +$a->strings["Block Title"] = "Título del bloque"; +$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; +$a->strings["Remove This Account"] = "Eliminar esta cuenta"; +$a->strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red."; +$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; +$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; +$a->strings["Remove Account"] = "Eliminar cuenta"; +$a->strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; +$a->strings["Item not available."] = "Elemento no disponible"; +$a->strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; +$a->strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado."; +$a->strings["Source created."] = "Fuente creada."; +$a->strings["Source updated."] = "Fuente actualizada."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; +$a->strings["New Source"] = "Nueva fuente"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes."; +$a->strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; +$a->strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; +$a->strings["Source not found."] = "Fuente no encontrada"; +$a->strings["Edit Source"] = "Editar fuente"; +$a->strings["Delete Source"] = "Eliminar fuente"; +$a->strings["Source removed"] = "Fuente eliminada"; +$a->strings["Unable to remove source."] = "Imposible eliminar la fuente."; +$a->strings["Remote privacy information not available."] = "La información privada remota no está disponible."; +$a->strings["Visible to:"] = "Visible para:"; +$a->strings["network"] = "red"; +$a->strings["RSS"] = "RSS"; +$a->strings["Please login."] = "Por favor, inicie sesión."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita."; +$a->strings["The error message was:"] = "El mensaje de error fue:"; +$a->strings["Authentication failed."] = "Falló la autenticación."; +$a->strings["Remote Authentication"] = "Acceso desde su servidor"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; +$a->strings["Authenticate"] = "Acceder"; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; +$a->strings["Version %s"] = "Versión %s"; +$a->strings["Installed plugins/addons/apps:"] = "Extensiones/Aplicaciones instaladas:"; +$a->strings["No installed plugins/addons/apps"] = "Extensiones/Aplicaciones no instaladas:"; +$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; +$a->strings["Tag: "] = "Etiqueta:"; +$a->strings["Last background fetch: "] = "Última actualización en segundo plano:"; +$a->strings["Current load average: "] = "Carga media actual:"; +$a->strings["Running at web location"] = "Corriendo en el sitio web"; +$a->strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; +$a->strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por, favor visite"; +$a->strings["\$projectname issues"] = "Problemas en \$projectname"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; +$a->strings["Site Administrators"] = "Administradores del sitio"; +$a->strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; +$a->strings["Nothing to import."] = "No hay nada para importar."; +$a->strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; +$a->strings["Imported file is empty."] = "El fichero importado está vacío."; +$a->strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; +$a->strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; +$a->strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; +$a->strings["Import Channel"] = "Importar canal"; +$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."] = "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."; +$a->strings["File to Upload"] = "Fichero para subir"; +$a->strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; +$a->strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; +$a->strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; +$a->strings["Your old login password"] = "Su antigua contraseña"; +$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."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua ubicación debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."; +$a->strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; +$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; +$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; +$a->strings["Thing updated"] = "Elemento actualizado."; +$a->strings["Object store: failed"] = "Guardar objeto: ha fallado"; +$a->strings["Thing added"] = "Elemento añadido"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Mostrar elemento"; +$a->strings["item not found."] = "elemento no encontrado."; +$a->strings["Edit Thing"] = "Editar elemento"; +$a->strings["Select a profile"] = "Seleccionar un perfil"; +$a->strings["Post an activity"] = "Publicar una actividad"; +$a->strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; +$a->strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; +$a->strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; +$a->strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; +$a->strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; +$a->strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; +$a->strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; +$a->strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; +$a->strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; +$a->strings["%d message sent."] = array( + 0 => "%d mensajes enviados.", + 1 => "%d mensajes enviados.", +); +$a->strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; +$a->strings["Send invitations"] = "Enviar invitaciones"; +$a->strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónica, una por línea:"; +$a->strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; +$a->strings["You will need to supply this invitation code: "] = "Debe proporcionar este código de invitación:"; +$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier lugar de \$Projectname (están todos interconectados)"; +$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; +$a->strings["or visit "] = "o visite"; +$a->strings["3. Click [Connect]"] = "3. Pulse [conectar]"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenido incorporado - recargue la página para poder verlo]"; +$a->strings["Source of Item"] = "Origen del elemento"; +$a->strings["Name is required"] = "El nombre es obligatorio"; +$a->strings["Key and Secret are required"] = "Clave y Secreto son obligatorios"; +$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; +$a->strings["Password changed."] = "Contraseña cambiada."; +$a->strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; +$a->strings["Not valid email."] = "Correo electrónico no válido."; +$a->strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; +$a->strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; +$a->strings["Settings updated."] = "Ajustes actualizados."; +$a->strings["Add application"] = "Añadir aplicación"; +$a->strings["Name of application"] = "Nombre de la aplicación"; +$a->strings["Consumer Key"] = "Clave de consumidor"; +$a->strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; +$a->strings["Consumer Secret"] = "Clave secreta de consumidor"; +$a->strings["Redirect"] = "Redirigir"; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; +$a->strings["Icon url"] = "Dirección del icono"; +$a->strings["Optional"] = "Opcional"; +$a->strings["You can't edit this application."] = "No puede modificar esta aplicación."; +$a->strings["Connected Apps"] = "Aplicaciones conectadas"; +$a->strings["Client key starts with"] = "La clave de cliente empieza por"; +$a->strings["No name"] = "Sin nombre"; +$a->strings["Remove authorization"] = "Eliminar autorización"; +$a->strings["No feature settings configured"] = "No se ha establecido la configuración de características"; +$a->strings["Feature/Addon Settings"] = "Ajustes de la característica o el complemento"; +$a->strings["Account Settings"] = "Configuración de la cuenta"; +$a->strings["Enter New Password:"] = "Introduzca la nueva contraseña:"; +$a->strings["Confirm New Password:"] = "Confirme la nueva contraseña:"; +$a->strings["Leave password fields blank unless changing"] = "Dejar en blanco los campos de contraseña a menos que cambie"; +$a->strings["Email Address:"] = "Dirección de correo electrónico:"; +$a->strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; +$a->strings["Off"] = "Desactivado"; +$a->strings["On"] = "Activado"; +$a->strings["Additional Features"] = "Características adicionales"; +$a->strings["Connector Settings"] = "Configuración del conector"; +$a->strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; +$a->strings["%s - (Experimental)"] = "%s - (Experimental)"; +$a->strings["Display Settings"] = "Ajustes de visualización"; +$a->strings["Theme Settings"] = "Ajustes del tema"; +$a->strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; +$a->strings["Content Settings"] = "Ajustes del contenido"; +$a->strings["Display Theme:"] = "Tema gráfico del perfil:"; +$a->strings["Mobile Theme:"] = "Tema para el móvil:"; +$a->strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; +$a->strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; +$a->strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; +$a->strings["Maximum of 100 items"] = "Máximo de 100 elementos"; +$a->strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; +$a->strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; +$a->strings["System Page Layout Editor - (advanced)"] = "Editor de diseño de página del sistema - (avanzado)"; +$a->strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; +$a->strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; +$a->strings["Use blog/list mode on matrix page"] = "Mostrar la red en modo blog/lista"; +$a->strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; +$a->strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; +$a->strings["Matrix page max height of content (in pixels)"] = "Altura máxima del contenido de la página de su red (en píxeles)"; +$a->strings["Nobody except yourself"] = "Nadie excepto usted"; +$a->strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; +$a->strings["Approved connections"] = "Conexiones aprobadas"; +$a->strings["Any connections"] = "Cualquier conexión"; +$a->strings["Anybody on this website"] = "Cualquiera en este sitio web"; +$a->strings["Anybody in this network"] = "Cualquiera en esta red"; +$a->strings["Anybody authenticated"] = "Cualquiera que esté autenticado"; +$a->strings["Anybody on the internet"] = "Cualquiera en internet"; +$a->strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"; +$a->strings["Your channel address is"] = "Su dirección de canal es"; +$a->strings["Channel Settings"] = "Ajustes del canal"; +$a->strings["Basic Settings"] = "Configuración básica"; +$a->strings["Your Timezone:"] = "Su zona horaria:"; +$a->strings["Default Post Location:"] = "Ubicación de publicación predeterminada:"; +$a->strings["Geographical location to display on your posts"] = "Ubicación geográfica que debe mostrarse en sus publicaciones"; +$a->strings["Use Browser Location:"] = "Usar la localización del navegador:"; +$a->strings["Adult Content"] = "Contenido solo para adultos"; +$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; +$a->strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; +$a->strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; +$a->strings["Hide my online presence"] = "Ocultar mi presencia en línea"; +$a->strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; +$a->strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; +$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; +$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; +$a->strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; +$a->strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; +$a->strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; +$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; +$a->strings["Advanced Privacy Settings"] = "Configuración de privacidad avanzada"; +$a->strings["Expire other channel content after this many days"] = "Caducar contenido de otro canal después de este número de días"; +$a->strings["0 or blank prevents expiration"] = "0 o en claro evitan la caducidad"; +$a->strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; +$a->strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; +$a->strings["Default Post Permissions"] = "Permisos de publicación predeterminados"; +$a->strings["Channel permissions category:"] = "Categoría de permisos del canal:"; +$a->strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; +$a->strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; +$a->strings["Notification Settings"] = "Configuración de notificaciones"; +$a->strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; +$a->strings["accepting a friend request"] = "acepte una solicitud de amistad"; +$a->strings["joining a forum/community"] = "al unirse a un foro o comunidad"; +$a->strings["making an interesting profile change"] = "realice un cambio interesante en su perfil"; +$a->strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; +$a->strings["You receive a connection request"] = "Reciba una solicitud de conexión"; +$a->strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; +$a->strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (muro)"; +$a->strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; +$a->strings["You receive a private message"] = "Reciba un mensaje privado"; +$a->strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; +$a->strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; +$a->strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una entrada"; +$a->strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; +$a->strings["Unseen matrix activity"] = "Actividad no vista en la red"; +$a->strings["Unseen channel activity"] = "Actividad no vista en el canal"; +$a->strings["Unseen private messages"] = "Mensajes privados no leídos"; +$a->strings["Recommended"] = "Recomendado"; +$a->strings["Upcoming events"] = "Próximos eventos"; +$a->strings["Events today"] = "Eventos de hoy"; +$a->strings["Upcoming birthdays"] = "Próximos cumpleaños"; +$a->strings["Not available in all themes"] = "No disponible en todos los temas"; +$a->strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; +$a->strings["System info messages"] = "Mensajes de información del sistema"; +$a->strings["System critical alerts"] = "Alertas críticas del sistema"; +$a->strings["New connections"] = "Nuevas conexiones"; +$a->strings["System Registrations"] = "Registros del sistema"; +$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"; +$a->strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; +$a->strings["Must be greater than 0"] = "Debe ser mayor que 0"; +$a->strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; +$a->strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; +$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Activar modo experto (en Ajustes > Características Adicionales) para ajustar."; +$a->strings["Miscellaneous Settings"] = "Ajustes diversos"; +$a->strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas"; +$a->strings["Default file upload folder"] = "Carpeta por defecto de los archivos subidos"; +$a->strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; +$a->strings["Remove this channel."] = "Eliminar este canal."; +$a->strings["Xchan Lookup"] = "Búsqueda de canales"; +$a->strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; +$a->strings["Create a new channel"] = "Crear un nuevo canal"; +$a->strings["Current Channel"] = "Canal actual"; +$a->strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; +$a->strings["Default Channel"] = "Canal principal"; +$a->strings["Make Default"] = "Convertir en predeterminado"; +$a->strings["%d new messages"] = "%d mensajes nuevos"; +$a->strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; +$a->strings["Delegated Channels"] = "Canales delegados"; +$a->strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; +$a->strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; +$a->strings["Please login to continue."] = "Por favor inicia sesión para continuar."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; +$a->strings["Blocked"] = "Bloqueadas"; +$a->strings["Ignored"] = "Ignoradas"; +$a->strings["Hidden"] = "Ocultas"; +$a->strings["Archived"] = "Archivadas"; +$a->strings["Suggest new connections"] = "Sugerir nuevas conexiones"; +$a->strings["New Connections"] = "Nuevas conexiones"; +$a->strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; +$a->strings["All Connections"] = "Todas las conexiones"; +$a->strings["Show all connections"] = "Mostrar todas las conexiones"; +$a->strings["Unblocked"] = "Desbloqueadas"; +$a->strings["Only show unblocked connections"] = "Mostrar solo las conexiones desbloqueadas"; +$a->strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas"; +$a->strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas"; +$a->strings["Only show archived connections"] = "Mostrar solo las conexiones archivadas"; +$a->strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit connection"] = "Editar conexión"; +$a->strings["Search your connections"] = "Buscar sus conexiones"; +$a->strings["Finding: "] = "Búsqueda:"; +$a->strings["Delete layout?"] = "¿Borrar el formato?"; +$a->strings["Edit Layout"] = "Modificar el formato"; +$a->strings["Delete webpage?"] = "¿Eliminar la página web?"; +$a->strings["Page link title"] = "Título del enlace de la página"; +$a->strings["Edit Webpage"] = "Editar la página web"; +$a->strings["Collection created."] = "La colección ha sido creada."; +$a->strings["Could not create collection."] = "No se puede crear la colección."; +$a->strings["Collection updated."] = "La colección ha sido actualizada."; +$a->strings["Create a collection of channels."] = "Crear una colección de canales."; +$a->strings["Collection Name: "] = "Nombre de la colección:"; +$a->strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; +$a->strings["Collection removed."] = "La colección ha sido eliminada."; +$a->strings["Unable to remove collection."] = "No ha sido posible de eliminar la colección."; +$a->strings["Collection Editor"] = "Editor de colecciones"; +$a->strings["Members"] = "Miembros"; +$a->strings["All Connected Channels"] = "Todos los canales conectados"; +$a->strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; +$a->strings["Continue"] = "Continuar"; +$a->strings["Premium Channel Setup"] = "Configuración del canal premium"; +$a->strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; +$a->strings["Restricted or Premium Channel"] = "Canal premium o restringido"; +$a->strings["No connections."] = "Sin conexiones."; +$a->strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; +$a->strings["Location not found."] = "Localización no encontrada."; +$a->strings["Location lookup failed."] = "Ha fallado la búsqueda de la ubicación."; +$a->strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione otra ubicación para convertirla en primaria antes de retirar la ubicación principal."; +$a->strings["No locations found."] = "Ninguna localización encontrada."; +$a->strings["Manage Channel Locations"] = "Gestionar localizaciones del canal"; +$a->strings["Location (address)"] = "Localización (dirección)"; +$a->strings["Primary Location"] = "Localización primaria"; +$a->strings["Drop location"] = "Eliminar localización"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo."; +$a->strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; +$a->strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; +$a->strings["Could not create table."] = "No se puede crear la tabla."; +$a->strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; +$a->strings["System check"] = "Verificación del sistema"; +$a->strings["Check again"] = "Verificar de nuevo"; +$a->strings["Database connection"] = "Conexión a la base de datos"; +$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; +$a->strings["Database Server Name"] = "Nombre del servidor de base de datos"; +$a->strings["Default is localhost"] = "Por defecto es localhost"; +$a->strings["Database Port"] = "Puerto de la base de datos"; +$a->strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - use 0 como valor por defecto"; +$a->strings["Database Login Name"] = "Usuario de la base de datos"; +$a->strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; +$a->strings["Database Name"] = "Nombre de la base de datos"; +$a->strings["Database Type"] = "Tipo de base de datos"; +$a->strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; +$a->strings["Website URL"] = "Dirección del sitio web"; +$a->strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; +$a->strings["Please select a default timezone for your website"] = "Por favor, selecciones la zona horaria por defecto de su sitio web"; +$a->strings["Site settings"] = "Ajustes del sitio"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web."; +$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."] = "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá ejecutar sondeos en segundo plano mediante cron."; +$a->strings["PHP executable path"] = "Ruta del ejecutable PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; +$a->strings["Command line PHP"] = "PHP en línea de comandos"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la transmisión de mensajes."; +$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."] = "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez."; +$a->strings["You can adjust these settings in the servers php.ini."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; +$a->strings["PHP upload limits"] = "Límites PHP de subida"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generar claves de cifrado"; +$a->strings["libCurl PHP module"] = "módulo libCurl PHP"; +$a->strings["GD graphics PHP module"] = "módulo PHP GD graphics"; +$a->strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; +$a->strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; +$a->strings["mb_string PHP module"] = "módulo PHP mb_string"; +$a->strings["mcrypt PHP module"] = "módulo PHP mcrypt "; +$a->strings["xml PHP module"] = "módulo PHP xml"; +$a->strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; +$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"] = "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: el módulo PHP mcrypt es necesario, pero no está instalado."; +$a->strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; +$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."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; +$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."] = "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos."; +$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."] = "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP."; +$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."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalación de Hubzilla."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)."; +$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."] = "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene."; +$a->strings["%s is writable"] = "%s tiene permisos de escritura"; +$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 guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación."; +$a->strings["store is writable"] = "\"store\" tiene permisos de escritura"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; +$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!"] = "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo."; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor."; +$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."] = "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; +$a->strings["SSL certificate validation"] = "validación del certificado SSL"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; +$a->strings["Url rewrite is working"] = "La reescritura de las direcciones funciona correctamente"; +$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."] = "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor."; +$a->strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; +$a->strings["

What next

"] = "

Siguiente paso

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; +$a->strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; +$a->strings["NEW"] = "NUEVO"; +$a->strings["Remove all files"] = "Eliminar todos los ficheros"; +$a->strings["Remove this file"] = "Eliminar este fichero"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; $a->strings["Profile not found."] = "Perfil no encontrado."; $a->strings["Profile deleted."] = "Perfil eliminado."; $a->strings["Profile-"] = "Perfil-"; -$a->strings["New profile created."] = "Creado el nuevo perfil."; +$a->strings["New profile created."] = "El nuevo perfil ha sido creado."; $a->strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; $a->strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; $a->strings["Profile Name is required."] = "Se necesita el nombre del perfil."; @@ -1395,11 +2068,9 @@ $a->strings["Dislikes"] = "No me gusta"; $a->strings["Work/Employment"] = "Trabajo:"; $a->strings["Religion"] = "Religión"; $a->strings["Political Views"] = "Ideas políticas"; -$a->strings["Gender"] = "Género"; $a->strings["Sexual Preference"] = "Preferencia sexual"; $a->strings["Homepage"] = "Página personal"; $a->strings["Interests"] = "Intereses"; -$a->strings["Address"] = "Dirección"; $a->strings["Profile updated."] = "Perfil actualizado."; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "¿Ocultar su lista de contactos a los visitantes de este perfil?"; $a->strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; @@ -1445,666 +2116,19 @@ $a->strings["Age: "] = "Edad:"; $a->strings["Edit/Manage Profiles"] = "Modificar/gestionar perfiles"; $a->strings["Add profile things"] = "Añadir cosas al perfil"; $a->strings["Include desirable objects in your profile"] = "Añadir objetos interesantes en su perfil"; -$a->strings["No ratings"] = "Ninguna valoración"; -$a->strings["Ratings"] = "Valoraciones"; -$a->strings["Rating: "] = "Valoración:"; -$a->strings["Website: "] = "Sitio web:"; -$a->strings["Description: "] = "Descripción:"; -$a->strings["Source of Item"] = "Origen del elemento"; -$a->strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; -$a->strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; -$a->strings["Could not create table."] = "No se puede crear la tabla."; -$a->strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; -$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; -$a->strings["System check"] = "Verificación del sistema"; -$a->strings["Check again"] = "Verificar de nuevo"; -$a->strings["Database connection"] = "Conexión a la base de datos"; -$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; -$a->strings["Database Server Name"] = "Nombre del servidor de base de datos"; -$a->strings["Default is localhost"] = "Por defecto es localhost"; -$a->strings["Database Port"] = "Puerto de la base de datos"; -$a->strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - use 0 como valor por defecto"; -$a->strings["Database Login Name"] = "Nombre de acceso a la base de datos"; -$a->strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; -$a->strings["Database Name"] = "Nombre de la base de datos"; -$a->strings["Database Type"] = "Tipo de base de datos"; -$a->strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; -$a->strings["Website URL"] = "Dirección del sitio web"; -$a->strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; -$a->strings["Please select a default timezone for your website"] = "Por favor, selecciones la zona horaria por defecto de su sitio web"; -$a->strings["Site settings"] = "Ajustes del sitio"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web."; -$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."] = "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá ejecutar votaciones en segundo plano vía cron."; -$a->strings["PHP executable path"] = "ruta del ejecutable PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; -$a->strings["Command line PHP"] = "PHP en línea de comandos"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la entrega de mensajes."; -$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."] = "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez."; -$a->strings["You can adjust these settings in the servers php.ini."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; -$a->strings["PHP upload limits"] = "Límites PHP de subida"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generar claves de cifrado"; -$a->strings["libCurl PHP module"] = "módulo libCurl PHP"; -$a->strings["GD graphics PHP module"] = "módulo PHP GD graphics"; -$a->strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; -$a->strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; -$a->strings["mb_string PHP module"] = "módulo PHP mb_string"; -$a->strings["mcrypt PHP module"] = "módulo PHP mcrypt "; -$a->strings["xml PHP module"] = "módulo PHP xml"; -$a->strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; -$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"] = "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; -$a->strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; -$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero no ninguno de los dos está instalado."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: el módulo PHP mcrypt es necesario, pero no está instalado."; -$a->strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; -$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."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; -$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."] = "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos."; -$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."] = "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Red."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP."; -$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."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalación de Red."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)."; -$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."] = "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s -no al fichero de plantilla (.tpl) que contiene."; -$a->strings["%s is writable"] = "%s tiene permisos de escritura"; -$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 guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación."; -$a->strings["store is writable"] = "\"store\" tiene permisos de escritura"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; -$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!"] = "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo."; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor."; -$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."] = "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; -$a->strings["SSL certificate validation"] = "validación del certificado SSL"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; -$a->strings["Url rewrite is working"] = "La reescritura de la direcciones funciona correctamente"; -$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."] = "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor."; -$a->strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; -$a->strings["

What next

"] = "

Siguiente paso

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para las actualizaciones."; -$a->strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; -$a->strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado el %3\$s de %2\$s con %4\$s"; -$a->strings["Export Channel"] = "Exportar el canal"; -$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."] = "Exportar la base de datos de su canal a un pequeño fichero. Este podrá servir como una copia de seguridad de sus conexiones, permisos, perfil y datos básicos, que podrá importar a un nuevo canal, pero sin sus contenidos."; -$a->strings["Export Content"] = "Exportar contenidos"; -$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."] = "Exportar toda la información del canal y todo su contenido a un fichero JSON. Este contendrá todas sus conexiones, permisos, información del perfil y todo su contenido, Sin embargo, a menudo, no será una buena solución para importarlo en una nueva instancia, pues el fichero será MUY voluminoso. Por favor, tenga paciencia - pueden pasar muchos minutos antes de que comience la carga."; -$a->strings["No connections."] = "Sin conexiones."; -$a->strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; -$a->strings["invalid target signature"] = "La firma recibida no es válida"; -$a->strings["Theme settings updated."] = "Ajustes del tema actualizados."; -$a->strings["Site"] = "Sitio"; -$a->strings["Accounts"] = "Cuentas"; -$a->strings["Channels"] = "Canales"; -$a->strings["Plugins"] = "Extensiones"; -$a->strings["Themes"] = "Temas"; -$a->strings["Inspect queue"] = "Examinar la cola"; -$a->strings["Profile Config"] = "Ajustes del perfil"; -$a->strings["DB updates"] = "Actualizaciones de la base de datos"; -$a->strings["Logs"] = "Informes"; -$a->strings["Plugin Features"] = "Ajustes de la extensión"; -$a->strings["User registrations waiting for confirmation"] = "Registros de usuarios pendientes de confirmación"; -$a->strings["# Accounts"] = "# Cuentas"; -$a->strings["# blocked accounts"] = "# cuentas bloqueadas"; -$a->strings["# expired accounts"] = "# cuentas caducadas"; -$a->strings["# expiring accounts"] = "# cuentas que caducan"; -$a->strings["# Channels"] = "# Canales"; -$a->strings["# primary"] = "# primario"; -$a->strings["# clones"] = "# clones"; -$a->strings["Message queues"] = "Mensajes en cola"; -$a->strings["Administration"] = "Administración"; -$a->strings["Summary"] = "Sumario"; -$a->strings["Registered accounts"] = "Cuentas registradas"; -$a->strings["Pending registrations"] = "Registros pendientes"; -$a->strings["Registered channels"] = "Canales registrados"; -$a->strings["Active plugins"] = "Extensiones activas"; -$a->strings["Version"] = "Versión"; -$a->strings["Site settings updated."] = "Ajustes del sitio actualizados."; -$a->strings["mobile"] = "móvil"; -$a->strings["experimental"] = "experimental"; -$a->strings["unsupported"] = "no soportado"; -$a->strings["Yes - with approval"] = "Sí - con aprobación"; -$a->strings["My site is not a public server"] = "Mi sitio no es un servidor público"; -$a->strings["My site has paid access only"] = "Mi sitio es un servicio de pago"; -$a->strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; -$a->strings["Registration"] = "Registro"; -$a->strings["File upload"] = "Fichero subido"; -$a->strings["Policies"] = "Políticas"; -$a->strings["Site name"] = "Nombre del sitio"; -$a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["Administrator Information"] = "Información del Administrador"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; -$a->strings["System language"] = "Idioma del sistema"; -$a->strings["System theme"] = "Tema gráfico del sistema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar ajustes del tema"; -$a->strings["Mobile system theme"] = "Tema del sistema para móviles"; -$a->strings["Theme for mobile devices"] = "Tema para aparatos móviles"; -$a->strings["Enable Diaspora Protocol"] = "Activar el protocolo de la red social Diaspora"; -$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Comunicar con Diaspora y Friendica - experimental"; -$a->strings["Allow Feeds as Connections"] = "Permitir flujos RSS como conexiones"; -$a->strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)"; -$a->strings["Maximum image size"] = "Tamaño máximo de imagen"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites."; -$a->strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; -$a->strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; -$a->strings["Register text"] = "Texto del registro"; -$a->strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; -$a->strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; -$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."] = "ejemplo: 'public' para mostrar contenido público de los usuarios, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero."; -$a->strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; -$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; -$a->strings["Accounts abandoned after x days"] = "Cuentas abandonados después de x días"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; -$a->strings["Allowed friend domains"] = "Dominios amigos permitidos"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio."; -$a->strings["Allowed email domains"] = "Se aceptan dominios de correo electrónico"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. "; -$a->strings["Not allowed email domains"] = "No se permiten dominios de correo electrónico"; -$a->strings["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."] = "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado."; -$a->strings["Block public"] = "Bloquear página pública"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Activar para bloquear el acceso público a todas las páginas públicas personales en este sitio salvo que estén identificadas en el sistema."; -$a->strings["Verify Email Addresses"] = "Verificar direcciones de correo electrónico"; -$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)."; -$a->strings["Force publish"] = "Forzar la publicación"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; -$a->strings["Disable discovery tab"] = "Desactivar la pestaña \"Descubrir\""; -$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Quitar la pestaña para ver contenido público extraído de las fuentes elegidas por este sitio."; -$a->strings["login on Homepage"] = "acceso a la página personal"; -$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido."; -$a->strings["Proxy user"] = "Usuario del proxy"; -$a->strings["Proxy URL"] = "Dirección del proxy"; -$a->strings["Network timeout"] = "Tiempo de espera de la red"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)"; -$a->strings["Delivery interval"] = "Intervalo de entrega"; -$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."] = "Retrasar los procesos de entrega en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para hosts compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados."; -$a->strings["Poll interval"] = "Intervalo de sondeo"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar el sondeo en segundo plano en esta cantidad de segundo para reducir la carga del sistema. Si es 0, use el intervalo de entrega."; -$a->strings["Maximum Load Average"] = "Carga media máxima"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y sondeo se hayan retardado - por defecto, 50."; -$a->strings["Expiration period in days for imported (matrix/network) content"] = "Periodo de caducidad en días para el contenido importado (red)"; -$a->strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; -$a->strings["No server found"] = "Servidor no encontrado"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "por canal"; -$a->strings["on server"] = "en el servidor"; -$a->strings["Status"] = "Estado"; -$a->strings["Server"] = "Servidor"; -$a->strings["Update has been marked successful"] = "La actualización ha sido marcada como exitosa"; -$a->strings["Executing %s failed. Check system logs."] = "La ejecución de %s ha fallado. Mirar en los informes del sistema."; -$a->strings["Update %s was successfully applied."] = "La actualización de %s se ha realizado exitosamente."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito."; -$a->strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s."; -$a->strings["No failed updates."] = "No ha fallado ninguna actualización."; -$a->strings["Failed Updates"] = "Han fallado las actualizaciones"; -$a->strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; -$a->strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; -$a->strings["Queue Statistics"] = "Estadísticas de la cola"; -$a->strings["Total Entries"] = "Total de entradas"; -$a->strings["Priority"] = "Prioridad"; -$a->strings["Destination URL"] = "Dirección de destino"; -$a->strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea"; -$a->strings["Empty queue for this hub"] = "Vaciar la cola para este servidor"; -$a->strings["Last known contact"] = "Último contacto conocido"; -$a->strings["%s account blocked/unblocked"] = array( - 0 => "%s cuenta bloqueada/desbloqueada", - 1 => "%s cuenta bloqueada/desbloqueada", -); -$a->strings["%s account deleted"] = array( - 0 => "%s cuentas eliminadas", - 1 => "%s cuentas eliminadas", -); -$a->strings["Account not found"] = "Cuenta no encontrada"; -$a->strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada"; -$a->strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; -$a->strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; -$a->strings["Users"] = "Usuarios"; -$a->strings["select all"] = "seleccionar todo"; -$a->strings["User registrations waiting for confirm"] = "Registros de usuario en espera de aprobación"; -$a->strings["Request date"] = "Fecha de solicitud"; -$a->strings["No registrations."] = "Sin registros."; -$a->strings["Approve"] = "Aprobar"; -$a->strings["Deny"] = "Rechazar"; -$a->strings["Block"] = "Bloquear"; -$a->strings["Unblock"] = "Desbloquear"; -$a->strings["Register date"] = "Fecha de registro"; -$a->strings["Last login"] = "Último acceso"; -$a->strings["Expires"] = "Caduca"; -$a->strings["Service Class"] = "Clase de servicio"; -$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; -$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?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; -$a->strings["%s channel censored/uncensored"] = array( - 0 => "%s canales censurados/no censurados", - 1 => "%s canales censurados/no censurados", -); -$a->strings["%s channel code allowed/disallowed"] = array( - 0 => "%s código permitido/no permitido al canal", - 1 => "%s código permitido/no permitido al canal", -); -$a->strings["%s channel deleted"] = array( - 0 => "%s canales eliminados", - 1 => "%s canales eliminados", -); -$a->strings["Channel not found"] = "Canal no encontrado"; -$a->strings["Channel '%s' deleted"] = "Canal '%s' eliminado"; -$a->strings["Channel '%s' censored"] = "Canal '%s' censurado"; -$a->strings["Channel '%s' uncensored"] = "Canal '%s' no censurado"; -$a->strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'"; -$a->strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'"; -$a->strings["Censor"] = "Censurar"; -$a->strings["Uncensor"] = "No censurar"; -$a->strings["Allow Code"] = "Permitir código"; -$a->strings["Disallow Code"] = "No permitir código"; -$a->strings["UID"] = "UID"; -$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?"] = "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; -$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?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; -$a->strings["Plugin %s disabled."] = "Extensión %s desactivada."; -$a->strings["Plugin %s enabled."] = "Extensión %s activada."; -$a->strings["Disable"] = "Desactivar"; -$a->strings["Enable"] = "Activar"; -$a->strings["Toggle"] = "Cambiar"; -$a->strings["Author: "] = "Autor:"; -$a->strings["Maintainer: "] = "Mantenedor:"; -$a->strings["No themes found."] = "No se han encontrado temas."; -$a->strings["Screenshot"] = "Instantánea de pantalla"; -$a->strings["[Experimental]"] = "[Experimental]"; -$a->strings["[Unsupported]"] = "[No soportado]"; -$a->strings["Log settings updated."] = "Actualizado el informe de configuraciones."; -$a->strings["Clear"] = "Vaciar"; -$a->strings["Debugging"] = "Depuración"; -$a->strings["Log file"] = "Fichero de informe"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Debe tener permisos de escritura para el servidor web. Ruta relativa al directorio raíz de Red."; -$a->strings["Log level"] = "Nivel de depuración"; -$a->strings["New Profile Field"] = "Nuevo campo en el perfil"; -$a->strings["Field nickname"] = "Alias del campo"; -$a->strings["System name of field"] = "Nombre del campo en el sistema"; -$a->strings["Input type"] = "Tipo de entrada"; -$a->strings["Field Name"] = "Nombre del campo"; -$a->strings["Label on profile pages"] = "Etiqueta a mostrar en las páginas del perfil"; -$a->strings["Help text"] = "Texto de ayuda"; -$a->strings["Additional info (optional)"] = "Información adicional (opcional)"; -$a->strings["Field definition not found"] = "Definición del campo no encontrada"; -$a->strings["Edit Profile Field"] = "Modificar el campo del perfil"; -$a->strings["Unable to find your hub."] = "No se puede encontrar su servidor."; -$a->strings["Post successful."] = "Enviado con éxito."; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; -$a->strings["Passwords do not match."] = "Las contraseñas no coinciden."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; -$a->strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; -$a->strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; -$a->strings["Registration on this site/hub is by approval only."] = "El registro en este servidor/hub está sometido a aprobación previa."; -$a->strings["Register at another affiliated site/hub"] = "Inscribirse en un servidor/hub afiliado"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; -$a->strings["Terms of Service"] = "Términos del servicio"; -$a->strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Tengo más de 13 años de edad y acepto los %s de este sitio"; -$a->strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; -$a->strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; -$a->strings["Your email address"] = "Su dirección de correo electrónico"; -$a->strings["Choose a password"] = "Elija una contraseña"; -$a->strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; -$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; -$a->strings["Remove This Account"] = "Eliminar esta cuenta"; -$a->strings["WARNING: "] = "ATENCIÓN:"; -$a->strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red."; -$a->strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!"; -$a->strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:"; -$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; -$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; -$a->strings["Remove Account"] = "Eliminar cuenta"; -$a->strings["Help:"] = "Ayuda:"; -$a->strings["Not Found"] = "No encontrado"; -$a->strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenido incorporado - recargue la página para poder verlo]"; -$a->strings["Remote privacy information not available."] = "La información privada remota no está disponible."; -$a->strings["Visible to:"] = "Visible para:"; -$a->strings["Name is required"] = "El nombre es obligatorio"; -$a->strings["Key and Secret are required"] = "Clave y Secreto son obligatorios"; -$a->strings["Diaspora Policy Settings updated."] = "Configuración de directivas de Diaspora actualizada."; -$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; -$a->strings["Password changed."] = "Constraseña cambiada."; -$a->strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; -$a->strings["Not valid email."] = "Correo electrónico no válido."; -$a->strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; -$a->strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; -$a->strings["Settings updated."] = "Ajustes actualizados."; -$a->strings["Add application"] = "Añadir aplicación"; -$a->strings["Name of application"] = "Nombre de la aplicación"; -$a->strings["Consumer Key"] = "Clave de consumidor"; -$a->strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; -$a->strings["Consumer Secret"] = "Clave secreta de consumidor"; -$a->strings["Redirect"] = "Redirigir"; -$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; -$a->strings["Icon url"] = "dirección del icono"; -$a->strings["Optional"] = "Opcional"; -$a->strings["You can't edit this application."] = "No puede modificar esta aplicación."; -$a->strings["Connected Apps"] = "Aplicaciones conectadas"; -$a->strings["Client key starts with"] = "La clave de cliente empieza por"; -$a->strings["No name"] = "Sin nombre"; -$a->strings["Remove authorization"] = "Eliminar autorización"; -$a->strings["No feature settings configured"] = "No se ha establecido la configuración de características"; -$a->strings["Feature/Addon Settings"] = "Ajustes de la característica o el complemento"; -$a->strings["Settings for the built-in Diaspora emulator"] = "Configuración para el emulador de Diaspora incorporado"; -$a->strings["Allow any Diaspora member to comment on your public posts"] = "Permitir a cualquier miembro de Diaspora comentar en sus publicaciones públicas"; -$a->strings["Enable the Diaspora protocol for this channel"] = "Activar el protocolo de Diaspora para este canal"; -$a->strings["Diaspora Policy Settings"] = "Configuración de directivas de Diaspora"; -$a->strings["Prevent your hashtags from being redirected to other sites"] = "Impedir que sus \"hashtags\" sean redirigidos a otros sitios "; -$a->strings["Account Settings"] = "Configuración de la cuenta"; -$a->strings["Enter New Password:"] = "Introduzca la nueva contraseña:"; -$a->strings["Confirm New Password:"] = "Confirme la nueva contraseña:"; -$a->strings["Leave password fields blank unless changing"] = "Dejar en blanco los campos de contraseña a menos que cambie"; -$a->strings["Email Address:"] = "Dirección de correo electrónico:"; -$a->strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; -$a->strings["Off"] = "Desactivado"; -$a->strings["On"] = "Activado"; -$a->strings["Additional Features"] = "Características adicionales"; -$a->strings["Connector Settings"] = "Configuración del conector"; -$a->strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; -$a->strings["%s - (Experimental)"] = "%s - (Experimental)"; -$a->strings["Display Settings"] = "Ajustes de visualización"; -$a->strings["Theme Settings"] = "Ajustes del tema"; -$a->strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; -$a->strings["Content Settings"] = "Ajustes del contenido"; -$a->strings["Display Theme:"] = "Tema gráfico del perfil:"; -$a->strings["Mobile Theme:"] = "Tema para el móvil:"; -$a->strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; -$a->strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; -$a->strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; -$a->strings["Maximum of 100 items"] = "Máximo de 100 elementos"; -$a->strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; -$a->strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; -$a->strings["System Page Layout Editor - (advanced)"] = "Editor de diseño de página del sistema - (avanzado)"; -$a->strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; -$a->strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; -$a->strings["Use blog/list mode on matrix page"] = "Mostrar la red en modo blog/lista"; -$a->strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; -$a->strings["click to expand content exceeding this height"] = "Pulsa para expandir el contenido que excede esta altura"; -$a->strings["Matrix page max height of content (in pixels)"] = "Altura máxima del contenido de la página de la red (en píxeles)"; -$a->strings["Nobody except yourself"] = "Nadie excepto tú"; -$a->strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; -$a->strings["Approved connections"] = "Conexiones aprobadas"; -$a->strings["Any connections"] = "Cualquier conexión"; -$a->strings["Anybody on this website"] = "Cualquiera en este sitio web"; -$a->strings["Anybody in this network"] = "Cualquiera en esta red"; -$a->strings["Anybody authenticated"] = "Cualquiera que esté autenticado"; -$a->strings["Anybody on the internet"] = "Cualquiera en internet"; -$a->strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"; -$a->strings["Your channel address is"] = "Su dirección de canal es"; -$a->strings["Channel Settings"] = "Ajustes del canal"; -$a->strings["Basic Settings"] = "Configuración básica"; -$a->strings["Your Timezone:"] = "Su zona horaria:"; -$a->strings["Default Post Location:"] = "Ubicación de publicación predeterminada:"; -$a->strings["Geographical location to display on your posts"] = "Ubicación geográfica que debe mostrarse en sus publicaciones"; -$a->strings["Use Browser Location:"] = "Usar la localización del navegador:"; -$a->strings["Adult Content"] = "Contenido solo para adultos"; -$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; -$a->strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; -$a->strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; -$a->strings["Hide my online presence"] = "Ocultra mi presencia en línea"; -$a->strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; -$a->strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; -$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; -$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; -$a->strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; -$a->strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; -$a->strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; -$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; -$a->strings["Advanced Privacy Settings"] = "Configuración de privacidad avanzada"; -$a->strings["Expire other channel content after this many days"] = "Caducar contenido de otro canal después de este número de días"; -$a->strings["0 or blank prevents expiration"] = "0 o en claro evitan la caducidad"; -$a->strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; -$a->strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; -$a->strings["Default Post Permissions"] = "Permidos de publicación predeterminados"; -$a->strings["Channel permissions category:"] = "Categoría de permisos del canal:"; -$a->strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; -$a->strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; -$a->strings["Notification Settings"] = "Configuración de notificaciones"; -$a->strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; -$a->strings["accepting a friend request"] = "acepte una solicitud de amistad"; -$a->strings["joining a forum/community"] = "al unirse a un foro o comunidad"; -$a->strings["making an interesting profile change"] = "realice un cambio interesante en su perfil"; -$a->strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; -$a->strings["You receive a connection request"] = "Reciba una solicitud de conexión"; -$a->strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; -$a->strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (muro)"; -$a->strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; -$a->strings["You receive a private message"] = "Reciba un mensaje privado"; -$a->strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; -$a->strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; -$a->strings["You are poked/prodded/etc. in a post"] = "Recibir un toque o incitación en una publicación"; -$a->strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; -$a->strings["Unseen matrix activity"] = "Actividad no vista en la red"; -$a->strings["Unseen channel activity"] = "Actividad no vista en el canal"; -$a->strings["Unseen private messages"] = "Mensajes privados no leídos"; -$a->strings["Recommended"] = "Recomendado"; -$a->strings["Upcoming events"] = "Próximos eventos"; -$a->strings["Events today"] = "Eventos de hoy"; -$a->strings["Upcoming birthdays"] = "Próximos cumpleaños"; -$a->strings["Not available in all themes"] = "No disponible en todos los temas"; -$a->strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; -$a->strings["System info messages"] = "Mensajes de información del sistema"; -$a->strings["System critical alerts"] = "Alertas críticas del sistema"; -$a->strings["New connections"] = "Nuevas conexiones"; -$a->strings["System Registrations"] = "Registros del sistema"; -$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"; -$a->strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; -$a->strings["Must be greater than 0"] = "Debe ser mayor que 0"; -$a->strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; -$a->strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; -$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Activar modo experto (en Ajustes > Características Adicionales) para ajustar."; -$a->strings["Miscellaneous Settings"] = "Ajustes diversos"; -$a->strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; -$a->strings["Remove Channel"] = "Eliminar canal"; -$a->strings["Remove this channel."] = "Eliminar este canal."; -$a->strings["First Name"] = "Nombre"; -$a->strings["Last Name"] = "Apellido"; -$a->strings["Nickname"] = "Sobrenombre o Alias"; -$a->strings["Full Name"] = "Nombre completo"; -$a->strings["Profile Photo 16px"] = "Foto de perfil 16px"; -$a->strings["Profile Photo 32px"] = "Foto de perfil 32px"; -$a->strings["Profile Photo 48px"] = "Foto de perfil 48px"; -$a->strings["Profile Photo 64px"] = "Foto de perfil 64px"; -$a->strings["Profile Photo 80px"] = "Foto de perfil 80px"; -$a->strings["Profile Photo 128px"] = "Foto de perfil 128px"; -$a->strings["Timezone"] = "Zona horaria"; -$a->strings["Homepage URL"] = "Dirección de la página personal"; -$a->strings["Birth Year"] = "Año de nacimiento"; -$a->strings["Birth Month"] = "Mes de nacimiento"; -$a->strings["Birth Day"] = "Día de nacimiento"; -$a->strings["Birthdate"] = "Fecha de nacimiento"; -$a->strings["Conversation removed."] = "Conversación eliminada."; -$a->strings["No messages."] = "Sin mensajes."; -$a->strings["Delete conversation"] = "Eliminar conversación"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; -$a->strings["Total votes"] = "Total de votos"; -$a->strings["Average Rating"] = "Valoración media"; -$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; -$a->strings["Remove This Channel"] = "Eliminar este canal"; -$a->strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red."; -$a->strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; -$a->strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; -$a->strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; -$a->strings["Connection updated."] = "Conexión actualizada."; -$a->strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; -$a->strings["is now connected to"] = "ahora está conectado a"; -$a->strings["Could not access address book record."] = "No se pudo acceder a la entrada en su libreta de direcciones."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar actualmente el canal"; -$a->strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; -$a->strings["Connection has been removed."] = "La conexión ha sido eliminada."; -$a->strings["View %s's profile"] = "Ver el perfil de %s"; -$a->strings["Refresh Permissions"] = "Recargar los permisos"; -$a->strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; -$a->strings["Recent Activity"] = "Actividad reciente"; -$a->strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; -$a->strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; -$a->strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; -$a->strings["Unignore"] = "Dejar de ignorar"; -$a->strings["Ignore"] = "Ignorar"; -$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; -$a->strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; -$a->strings["Unarchive"] = "Desarchivar"; -$a->strings["Archive"] = "Archivar"; -$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; -$a->strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; -$a->strings["Unhide"] = "Mostrar"; -$a->strings["Hide"] = "Ocultar"; -$a->strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; -$a->strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; -$a->strings["Delete this connection"] = "Eliminar esta conexión"; -$a->strings["Approve this connection"] = "Aprobar esta conexión"; -$a->strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; -$a->strings["Set Affinity"] = "Ajustar Afinidad"; -$a->strings["Set Profile"] = "Ajustar Perfil"; -$a->strings["Set Affinity & Profile"] = "Ajustar Afinidad y Perfil"; -$a->strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; -$a->strings["This connection's address is"] = "La dirección de esta conexión es"; -$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; -$a->strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; -$a->strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; -$a->strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; -$a->strings["Custom Filter"] = "Filtro Personalizado"; -$a->strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; -$a->strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "Palabras, una por línea o #etiquetas o /patrones/, dejar en blanco para importar todas las entradas"; -$a->strings["Do not import posts with this text"] = "No importar entradas que contienen este texto"; -$a->strings["This information is public!"] = "¡Esta información es pública!"; -$a->strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; -$a->strings["Connection Request"] = "Solicitud de conexión"; -$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) desearía conectar con usted. por favor, apruebe esta conexión para permitir la comunicación."; -$a->strings["Approve Later"] = "Aprobar más tarde"; -$a->strings["inherited"] = "heredado"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; -$a->strings["Their Settings"] = "Sus ajustes"; -$a->strings["My Settings"] = "Mis ajustes"; -$a->strings["Individual Permissions"] = "Permisos individuales"; -$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."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; -$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."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún impacto hasta que cambie los ajustes heredados."; -$a->strings["Last update:"] = "Última actualización:"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. por favor, compruebe que la ID está correctamente escrita."; -$a->strings["The error message was:"] = "El mensaje de error fue:"; -$a->strings["Authentication failed."] = "Falló la autenticación."; -$a->strings["Remote Authentication"] = "Acceso desde su servidor"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; -$a->strings["Authenticate"] = "Acceder"; -$a->strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; -$a->strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; -$a->strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; -$a->strings["Message deleted."] = "Mensaje eliminado."; -$a->strings["Message recalled."] = "Mensaje recuperado."; -$a->strings["Send Private Message"] = "Enviar un mensaje privado"; -$a->strings["To:"] = "Para:"; -$a->strings["Subject:"] = "Asunto:"; -$a->strings["Send"] = "Enviar"; -$a->strings["Message not found."] = "No se encuentra el mensaje."; -$a->strings["Delete message"] = "Mensaje eliminado"; -$a->strings["Recall message"] = "Recuperar el mensaje"; -$a->strings["Message has been recalled."] = "El mensaje ha sido recuperado."; -$a->strings["Private Conversation"] = "Conversación privada"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página de perfil del remitente."; -$a->strings["Send Reply"] = "Responder"; -$a->strings["Invalid request identifier."] = "Petición inválida del identificador."; -$a->strings["Discard"] = "Descartar"; -$a->strings["Please login."] = "Por favor, inicie sesión."; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo."; -$a->strings["Add a Channel"] = "Añadir un canal"; -$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."] = "Un canal está formado por su propia colección de páginas web relacionadas. Se puede utilizar para almacenar los perfiles sociales de la red, blogs, grupos de conversación y foros, páginas de famosos y mucho más. Puede crear tantos canales como su proveedor de servicio permita."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Ejemplos: \"Juan García\", \"Isabel y sus caballos\", \"Fútbol\", \"Grupo de parapente\" "; -$a->strings["Choose a short nickname"] = "Elija un alias corto"; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Su alias podrá usarse para crear una dirección de canal fácilmente memorizable (como una dirección de correo electrónico) que puede ser compartido con otros."; -$a->strings["Or import an existing channel from another location"] = "O importar un canal existente de otro lugar"; -$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"] = "Elija el tipo de canal (como red social o foro de discusión) y la privacidad que requiera, así podremos seleccionar el mejor conjunto de permisos para usted"; -$a->strings["Channel Type"] = "Tipo de canal"; -$a->strings["Read more about roles"] = "Leer más sobre los roles"; -$a->strings["App installed."] = "Aplicación instalada."; -$a->strings["Malformed app."] = "Aplicación con errores"; -$a->strings["Embed code"] = "código incorporado"; -$a->strings["Edit App"] = "Modificar la aplicación"; -$a->strings["Create App"] = "Crear una aplicación"; -$a->strings["Name of app"] = "Nombre de la aplicación"; -$a->strings["Location (URL) of app"] = "Ubicación (URL) de la aplicación"; -$a->strings["Photo icon URL"] = "Dirección del icono que se va a utilizar para esta foto"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -$a->strings["Version ID"] = "Versión"; -$a->strings["Price of app"] = "Precio de la aplicación"; -$a->strings["Location (URL) to purchase app"] = "Ubicación (URL) donde adquirir la aplicación"; -$a->strings["sent you a private message"] = "enviarle un mensaje privado"; -$a->strings["added your channel"] = "añadió este canal a sus conexiones"; -$a->strings["posted an event"] = "publicó un evento"; -$a->strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; -$a->strings["Layout Description"] = "Descripción del formato"; -$a->strings["Download PDL file"] = "Descargar el fichero PDL"; -$a->strings["Welcome to %s"] = "Bienvenido a %s"; -$a->strings["Lorem Ipsum"] = "Lorem Ipsum"; -$a->strings["Bookmark added"] = "Marcador añadido"; -$a->strings["My Bookmarks"] = "Mis Marcadores"; -$a->strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; -$a->strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; -$a->strings["Configuration Editor"] = "Editor de configuración"; -$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."] = "Atención: El cambio de algunos ajustes puede volver inoperante su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; -$a->strings["Poll"] = "Sondear"; -$a->strings["View Results"] = "Mostrar resultados"; -$a->strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; -$a->strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; -$a->strings["NEW"] = "NUEVO"; -$a->strings["Remove all files"] = "Borrar todos los ficheros"; -$a->strings["Remove this file"] = "Borrar este fichero"; -$a->strings["Schema Default"] = "Esquema predeterminado"; -$a->strings["Sans-Serif"] = "Sans-Serif"; -$a->strings["Monospace"] = "Monospace"; +$a->strings["Invalid profile identifier."] = "Identificador del perfil no válido"; +$a->strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +$a->strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; +$a->strings["Visible To"] = "Visible para"; +$a->strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; +$a->strings["Save Bookmark"] = "Guardar marcador"; +$a->strings["URL of bookmark"] = "Dirección del marcador"; +$a->strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; +$a->strings["Import completed"] = "Importación completada"; +$a->strings["Import Items"] = "Importar elementos"; +$a->strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; +$a->strings["Focus (Hubzilla default)"] = "Focus (predefinido)"; $a->strings["Theme settings"] = "Ajustes del tema"; -$a->strings["Set scheme"] = "Ajustar esquema"; -$a->strings["Set font-size for posts and comments"] = "Ajustar el tamaño del tipo de letra para entradas y comentarios"; -$a->strings["Set font face"] = "Ajustar el tipo de letra"; -$a->strings["Set iconset"] = "Ajustar el conjunto de iconos"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ajustar el sombreado grande, por defecto 15px 15px 15px"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ajustar el sombreado pequeño, por defecto 5px 5px 5px"; -$a->strings["Set shadow color, default #000"] = "Ajustar el color del sombreado, predeterminado a #000"; -$a->strings["Set radius size, default 5px"] = "Ajusta el tamaño del radio, predeterminado a 5px"; -$a->strings["Set line-height for posts and comments"] = "Ajustar la altura de linea para entradas y comentarios"; -$a->strings["Set background image"] = "Ajustar la imagen de fondo"; -$a->strings["Set background attachment"] = "Ajustar el fondo adjuntado"; -$a->strings["Set background color"] = "Ajustar el color de fondo"; -$a->strings["Set section background image"] = "Ajustar la imagen de la sección del fondo"; -$a->strings["Set section background color"] = "Ajustar el color de la sección del fondo"; -$a->strings["Set color of items - use hex"] = "Ajustar el color de los elementos - utilizar código hexadecimal"; -$a->strings["Set color of links - use hex"] = "Ajusta el color de los enlaces - utilizar código hexadecimal"; -$a->strings["Set max-width for items. Default 400px"] = "Ajustar la anchura máxima para los elementos. Predeterminado a 400px"; -$a->strings["Set min-width for items. Default 240px"] = "Ajustar la anchura mínima para los elementos. Predeterminado a 240px"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Ajustar el ancho de la envoltura del contenido genérico. Predeterminado 48%"; -$a->strings["Set color of fonts - use hex"] = "Ajustar el color del tipo de letra - utiliza código hexadecimal"; -$a->strings["Set background-size element"] = "Ajustar el tamaño de fondo del elemento"; -$a->strings["Item opacity"] = "Opacidad del elemento"; -$a->strings["Display post previews only"] = "Mostrar solo las previsualizaciones de las entradas"; -$a->strings["Display side bar on channel page"] = "Muestra la barra lateral en la página del canal"; -$a->strings["Colour of the navigation bar"] = "Color de la barra de navegación"; -$a->strings["Item float"] = "Elemento flotante"; -$a->strings["Left offset of the section element"] = "Desplazamiento izquierdo del elemento de la sección"; -$a->strings["Right offset of the section element"] = "Desplazamiento derecho del elemento de la sección"; -$a->strings["Section width"] = "Ancho de la sección"; -$a->strings["Left offset of the aside"] = "Desplazamiento izquierdo del lateral"; -$a->strings["Right offset of the aside element"] = "Desplazamiento derecho del elemento lateral"; -$a->strings["Light (Red Matrix default)"] = "Ligero (predeterminado de RedMatrix)"; $a->strings["Select scheme"] = "Elegir un esquema"; $a->strings["Narrow navbar"] = "Estrechar la barra de navegación"; $a->strings["Navigation bar background color"] = "Color de fondo de la barra de navegación"; @@ -2127,23 +2151,24 @@ $a->strings["Set the basic color for item icons"] = "Ajustar el color básico pa $a->strings["Set the hover color for item icons"] = "Ajustar el color flotante para los iconos de los elementos"; $a->strings["Set font-size for the entire application"] = "Ajustar el tamaño de letra para toda la aplicación"; $a->strings["Example: 14px"] = "Ejemplo: 14px"; +$a->strings["Set font-size for posts and comments"] = "Ajustar el tamaño del tipo de letra para entradas y comentarios"; $a->strings["Set font-color for posts and comments"] = "Establecer el color de la letra para publicaciones y comentarios"; $a->strings["Set radius of corners"] = "Establecer el radio de curvatura de las esquinas"; $a->strings["Set shadow depth of photos"] = "Ajustar la profundidad de sombras de las fotos"; $a->strings["Set maximum width of content region in pixel"] = "Ajustar la anchura máxima de la región de contenido, en pixels"; $a->strings["Leave empty for default width"] = "Dejar en blanco para la anchura predeterminada"; -$a->strings["Center page content"] = "Contenido del centro de la página"; +$a->strings["Left align page content"] = "Alinear a la izquierda el contenido de la página"; $a->strings["Set minimum opacity of nav bar - to hide it"] = "Ajustar la opacidad mínima de la barra de navegación - para ocultarla"; $a->strings["Set size of conversation author photo"] = "Ajustar el tamaño de la foto del autor de la conversación"; $a->strings["Set size of followup author photos"] = "Ajustar el tamaño de foto de los seguidores del autor"; $a->strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores."; -$a->strings["Update Error at %s"] = "Error de Actualización en %s"; -$a->strings["Create an account to access services and applications within the Red Matrix"] = "Crear una cuenta para acceder a los servicios y aplicaciones dentro de la red"; +$a->strings["Update Error at %s"] = "Error de actualización en %s"; +$a->strings["Create an account to access services and applications within the Hubzilla"] = "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla"; $a->strings["Password"] = "Contraseña"; $a->strings["Remember me"] = "Recordarme"; $a->strings["Forgot your password?"] = "¿Olvidó su contraseña?"; $a->strings["toggle mobile"] = "cambiar a modo móvil"; -$a->strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, corríjalo."; -$a->strings["[red] Website SSL error for %s"] = "[red] Error SSL del sitio web en %s"; -$a->strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no se están funcionando."; -$a->strings["[red] Cron tasks not running on %s"] = "[red] Las tareas de Cron no están funcionando en %s"; +$a->strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, solucione el problema."; +$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Error SSL del sitio web en %s"; +$a->strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no están funcionando."; +$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Las tareas de Cron no están funcionando en %s"; diff --git a/view/es/messages.po b/view/es/messages.po index cc6d56196..6fe80de48 100644 --- a/view/es/messages.po +++ b/view/es/messages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-18 00:04-0700\n" -"PO-Revision-Date: 2015-09-22 14:10+0000\n" +"POT-Creation-Date: 2015-10-02 00:04-0700\n" +"PO-Revision-Date: 2015-10-04 08:23+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (http://www.transifex.com/Friendica/red-matrix/language/es/)\n" "MIME-Version: 1.0\n" @@ -1091,7 +1091,7 @@ msgstr "Gracias," #: ../../include/network.php:1590 ../../include/enotify.php:63 #, php-format msgid "%s Administrator" -msgstr "%s Administrador" +msgstr "Administrador de %s" #: ../../include/network.php:1646 msgid "No Subject" @@ -3008,51 +3008,51 @@ msgstr[1] "Se abstienen" msgid "Permission denied" msgstr "Permiso denegado" -#: ../../include/items.php:1038 ../../include/items.php:1084 +#: ../../include/items.php:1101 ../../include/items.php:1147 msgid "(Unknown)" msgstr "(Desconocido)" -#: ../../include/items.php:1310 +#: ../../include/items.php:1373 msgid "Visible to anybody on the internet." msgstr "Visible para cualquiera en internet." -#: ../../include/items.php:1312 +#: ../../include/items.php:1375 msgid "Visible to you only." msgstr "Visible sólo para usted." -#: ../../include/items.php:1314 +#: ../../include/items.php:1377 msgid "Visible to anybody in this network." msgstr "Visible para cualquiera en esta red." -#: ../../include/items.php:1316 +#: ../../include/items.php:1379 msgid "Visible to anybody authenticated." msgstr "Visible para cualquiera que haya sido autenticado." -#: ../../include/items.php:1318 +#: ../../include/items.php:1381 #, php-format msgid "Visible to anybody on %s." msgstr "Visible para cualquiera en %s." -#: ../../include/items.php:1320 +#: ../../include/items.php:1383 msgid "Visible to all connections." msgstr "Visible para todas las conexiones." -#: ../../include/items.php:1322 +#: ../../include/items.php:1385 msgid "Visible to approved connections." msgstr "Visible para las conexiones permitidas." -#: ../../include/items.php:1324 +#: ../../include/items.php:1387 msgid "Visible to specific connections." msgstr "Visible para conexiones específicas." -#: ../../include/items.php:4223 ../../mod/thing.php:74 +#: ../../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 "Elemento no encontrado." -#: ../../include/items.php:4296 ../../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 @@ -3095,38 +3095,38 @@ msgstr "Elemento no encontrado." msgid "Permission denied." msgstr "Acceso denegado." -#: ../../include/items.php:4700 ../../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 "Colección no encontrada." -#: ../../include/items.php:4716 +#: ../../include/items.php:4779 msgid "Collection is empty." msgstr "La colección está vacía." -#: ../../include/items.php:4723 +#: ../../include/items.php:4786 #, php-format msgid "Collection: %s" msgstr "Colección: %s" -#: ../../include/items.php:4733 ../../mod/connedit.php:674 +#: ../../include/items.php:4796 ../../mod/connedit.php:674 #, php-format msgid "Connection: %s" msgstr "Conexión: %s" -#: ../../include/items.php:4735 +#: ../../include/items.php:4798 msgid "Connection not found." msgstr "Conexión no encontrada" -#: ../../include/zot.php:677 +#: ../../include/zot.php:684 msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:693 +#: ../../include/zot.php:700 msgid "Unable to verify channel signature" msgstr "No ha sido posible de verificar la signatura del canal" -#: ../../include/zot.php:2161 +#: ../../include/zot.php:2208 #, php-format msgid "Unable to verify site signature for %s" msgstr "No ha sido posible de verificar la signatura del sitio para %s" @@ -6524,7 +6524,7 @@ msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para las actua msgid "OpenID protocol error. No ID returned." msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." -#: ../../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 "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." @@ -8564,7 +8564,7 @@ msgstr "Descartar" msgid "Please login." msgstr "Por favor, inicie sesión." -#: ../../mod/post.php:235 +#: ../../mod/post.php:236 msgid "" "Remote authentication blocked. You are logged into this site locally. Please" " logout and retry." diff --git a/view/es/register_open_eml.tpl b/view/es/register_open_eml.tpl index 74e5ba466..f6d68677e 100644 --- a/view/es/register_open_eml.tpl +++ b/view/es/register_open_eml.tpl @@ -2,16 +2,16 @@ Una cuenta ha sido creada en {{$sitename}} con esta dirección de correo electrónico. Los detalles del inicio de sesión son los siguientes: -Localización del Sitio: {{$siteurl}} -Nombre de usuario: {{$email}} +Localización del sitio:⇥{{$siteurl}} +Nombre de usuario:⇥{{$email}} Contraseña: (la contraseña que proporcionó durante el proceso de registro) -Si esta cuenta se creó sin su consentimiento y no es deseada, puedes +Si esta cuenta se creó sin su consentimiento, y no es deseada, puede visitar el sitio y cambiar la contraseña. Esto le permitirá eliminar la -cuenta de los enlaces en la página de Ajustes, le -pedimos disculpas por cualquier inconveniente que hayamos podido causar. +cuenta en la página de Ajustes del perfil, le +pedimos disculpas por cualquier inconveniente que hayamos podido causarle. -gracias y bienvenido a {{$sitename}}. +Gracias y bienvenido a {{$sitename}}. Atentamente, Administrador de {{$sitename}} diff --git a/view/es/register_verify_eml.tpl b/view/es/register_verify_eml.tpl index 4eabaacc7..dc913be97 100644 --- a/view/es/register_verify_eml.tpl +++ b/view/es/register_verify_eml.tpl @@ -5,8 +5,8 @@ su aprobación. Los detalles del inicio de sesión son los siguientes: -Localización del Sitio: {{$siteurl}} -Nombre de usuario: {{$email}} +Localización del sitio:⇥{{$siteurl}} +Nombre de usuario:⇥{{$email}} Dirección IP: {{$details}} Para aprobar la petición siga el enlace: @@ -15,7 +15,7 @@ Para aprobar la petición siga el enlace: {{$siteurl}}/regmod/allow/{{$hash}} -Para denegar la petición y eliminar la cuenta , siga: +Para rechazar la petición y eliminar la cuenta , siga: {{$siteurl}}/regmod/deny/{{$hash}} diff --git a/view/es/register_verify_member.tpl b/view/es/register_verify_member.tpl index 202c4111c..f78a0353a 100644 --- a/view/es/register_verify_member.tpl +++ b/view/es/register_verify_member.tpl @@ -3,10 +3,10 @@ Gracias por registrarse en {{$sitename}}. Los detalles del inicio de sesión son los siguientes: -Localización del Sitio: {{$siteurl}} -Nombre de usuario: {{$email}} +Localización del sitio:⇥{{$siteurl}} +Nombre de usuario:⇥{{$email}} -inicie la sesión con la contraseña que elegió durante el registro. +Inicie la sesión con la contraseña que eligió durante el registro. Necesitamos verificar su correo electrónico para poder darle pleno acceso. @@ -15,7 +15,7 @@ Si registró esta cuenta, por favor, siga el enlace: {{$siteurl}}/regver/allow/{{$hash}} -Para denegar la petición y eliminar la cuenta , siga: +Para rechazar la petición y eliminar la cuenta , siga: {{$siteurl}}/regver/deny/{{$hash}} diff --git a/view/es/strings.php b/view/es/strings.php index f1821ad49..fb7b1fca3 100644 --- a/view/es/strings.php +++ b/view/es/strings.php @@ -245,7 +245,7 @@ $a->strings["view full size"] = "Ver en el tamaño original"; $a->strings["\$Projectname Notification"] = "Notificación de \$Projectname"; $a->strings["\$projectname"] = "\$projectname"; $a->strings["Thank You,"] = "Gracias,"; -$a->strings["%s Administrator"] = "%s Administrador"; +$a->strings["%s Administrator"] = "Administrador de %s"; $a->strings["No Subject"] = "Sin asunto"; $a->strings["General Features"] = "Características generales"; $a->strings["Content Expiration"] = "Caducidad del contenido"; diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index e077dc88d..0af27c61b 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -88,6 +88,14 @@ function basic_replace(item) { return '$1'+item.name+' '; } +function trim_replace(item) { + if(typeof item.replace !== 'undefined') + return '$1'+item.replace; + + return '$1'+item.name; +} + + function submit_form(e) { $(e).parents('form').submit(); } @@ -156,6 +164,32 @@ function submit_form(e) { this.attr('autocomplete','off'); var a = this.textcomplete([contacts], {className:'acpopup', zIndex:1020}); + if(autosubmit) + a.on('textComplete:select', function(e,value,strategy) { submit_form(this); }); + + if(typeof onselect !== 'undefined') + a.on('textComplete:select', function(e, value, strategy) { onselect(value); }); + }; +})( jQuery ); + + +(function( $ ) { + $.fn.name_autocomplete = function(backend_url, typ, autosubmit, onselect) { + if(typeof typ === 'undefined') typ = ''; + if(typeof autosubmit === 'undefined') autosubmit = false; + + // Autocomplete contacts + names = { + match: /(^)([^\n]+)$/, + index: 2, + search: function(term, callback) { contact_search(term, callback, backend_url, typ,[], spinelement=false); }, + replace: trim_replace, + template: contact_format, + }; + + this.attr('autocomplete','off'); + var a = this.textcomplete([names], {className:'acpopup', zIndex:1020}); + if(autosubmit) a.on('textComplete:select', function(e,value,strategy) { submit_form(this); }); diff --git a/view/js/main.js b/view/js/main.js index d3c7175d0..acdc2e5f5 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -112,12 +112,12 @@ function insertbbcomment(comment, BBcode, id) { return true; } -function inserteditortag(BBcode) { +function inserteditortag(BBcode, id) { // allow themes to override this if(typeof(insertEditorFormatting) != 'undefined') return(insertEditorFormatting(BBcode)); - textarea = document.getElementById('profile-jot-text'); + textarea = document.getElementById(id); if (document.selection) { textarea.focus(); selected = document.selection.createRange(); @@ -616,11 +616,12 @@ function updateConvItems(mode,data) { function collapseHeight() { $(".wall-item-content, .directory-collapse").each(function() { - var orgHeight = $(this).height(); + var orgHeight = $(this).outerHeight(true); if(orgHeight > divmore_height + 10) { if(! $(this).hasClass('divmore')) { $(this).readmore({ speed: 0, + heightMargin: 50, collapsedHeight: divmore_height, moreLink: '' + aStr.divgrowmore + '', lessLink: '' + aStr.divgrowless + '', @@ -745,12 +746,12 @@ function justifyPhotos() { margins: 3, border: 0, sizeRangeSuffixes: { - 'lt100': '-2', - 'lt240': '-2', - 'lt320': '-2', - 'lt500': '', - 'lt640': '-1', - 'lt1024': '-0' + 'lt100': '-3', + 'lt240': '-3', + 'lt320': '-3', + 'lt500': '-2', + 'lt640': '-2', + 'lt1024': '-1' } }).on('jg.complete', function(e){ justifiedGalleryActive = false; }); } diff --git a/view/js/mod_mail.js b/view/js/mod_mail.js index 704d0a460..36b22138f 100644 --- a/view/js/mod_mail.js +++ b/view/js/mod_mail.js @@ -1,5 +1,5 @@ $(document).ready(function() { - $("#recip").contact_autocomplete(baseurl + '/acl', '', false, function(data) { + $("#recip").name_autocomplete(baseurl + '/acl', '', false, function(data) { $("#recip-complete").val(data.xid); }); }); diff --git a/view/js/mod_poke.js b/view/js/mod_poke.js index 58e50588f..221cbbb31 100644 --- a/view/js/mod_poke.js +++ b/view/js/mod_poke.js @@ -1,5 +1,5 @@ $(document).ready(function() { - $("#poke-recip").contact_autocomplete(baseurl + '/acl', 'a', false, function(data) { + $("#poke-recip").name_autocomplete(baseurl + '/acl', 'a', false, function(data) { $("#poke-recip-complete").val(data.id); }); }); 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,1711 +3,145 @@ # 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/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "kommenterte på %s sitt innlegg" - -#: ../../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/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standard personverngruppe for nye kontakter" - -#: ../../include/group.php:254 ../../mod/admin.php:821 -msgid "All Channels" -msgstr "Alle kanaler" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "endre" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Samlinger" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Endre samling" - -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Lag en ny samling" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanaler som ikke er i noen samling" - -#: ../../include/group.php:303 ../../include/widgets.php:275 -msgid "add" -msgstr "legg til" - -#: ../../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/bbcode.php:150 ../../include/bbcode.php:744 -msgid "Encrypted content" -msgstr "Kryptert innhold" - -#: ../../include/bbcode.php:168 -msgid "Install design element: " -msgstr "Installer designelement:" - -#: ../../include/bbcode.php:174 -msgid "QR code" -msgstr "QR-kode" - -#: ../../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/bbcode.php:225 -msgid "post" -msgstr "innlegg" - -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" -msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" - -#: ../../include/bbcode.php:662 -msgid "$1 spoiler" -msgstr "$1 avsløring" - -#: ../../include/bbcode.php:682 -msgid "$1 wrote:" -msgstr "$1 skrev:" - -#: ../../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/identity.php:66 -msgid "Empty name" -msgstr "Mangler navn" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Navnet er for langt" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Ingen kontoidentifikator" - -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Kallenavn er påkrevd." - -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reservert kallenavn. Vennligst velg et annet." - -#: ../../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/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Klarer ikke å hente den lagede identiteten" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standardprofil" - -#: ../../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/identity.php:643 -msgid "Requested channel is not available." -msgstr "Forespurt kanal er ikke tilgjengelig." - -#: ../../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/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/identity.php:856 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Endre profilbilde" - -#: ../../include/identity.php:863 -msgid "Profiles" -msgstr "Profiler" - -#: ../../include/identity.php:863 -msgid "Manage/edit profiles" -msgstr "Håndtere/endre profiler" - -#: ../../include/identity.php:864 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Lag ny profil" - -#: ../../include/identity.php:867 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Endre profil" - -#: ../../include/identity.php:880 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profilbilde" - -#: ../../include/identity.php:883 -msgid "visible to everybody" -msgstr "synlig for alle" - -#: ../../include/identity.php:884 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Endre synlighet" - -#: ../../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/identity.php:900 ../../include/identity.php:1142 -msgid "Gender:" -msgstr "Kjønn:" - -#: ../../include/identity.php:901 ../../include/identity.php:1186 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:902 ../../include/identity.php:1197 -msgid "Homepage:" -msgstr "Hjemmeside:" - -#: ../../include/identity.php:903 -msgid "Online Now" -msgstr "Online nå" - -#: ../../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/identity.php:987 ../../include/identity.php:1067 -msgid "F d" -msgstr "F d" - -#: ../../include/identity.php:1032 ../../include/identity.php:1107 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[idag]" - -#: ../../include/identity.php:1044 -msgid "Birthday Reminders" -msgstr "Fødselsdagspåminnnelser" - -#: ../../include/identity.php:1045 -msgid "Birthdays this week:" -msgstr "Fødselsdager denne uken:" - -#: ../../include/identity.php:1100 -msgid "[No description]" -msgstr "[Ingen beskrivelse]" - -#: ../../include/identity.php:1118 -msgid "Event Reminders" -msgstr "Hendelsespåminnelser" - -#: ../../include/identity.php:1119 -msgid "Events this week:" -msgstr "Hendelser denne uken:" - -#: ../../include/identity.php:1132 ../../include/identity.php:1249 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/identity.php:1140 ../../mod/settings.php:1045 -msgid "Full Name:" -msgstr "Fullt navn:" - -#: ../../include/identity.php:1147 -msgid "Like this channel" -msgstr "Lik denne kanalen" - -#: ../../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/identity.php:1171 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/identity.php:1172 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:1179 -msgid "Birthday:" -msgstr "Fødselsdag:" - -#: ../../include/identity.php:1183 -msgid "Age:" -msgstr "Alder:" - -#: ../../include/identity.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "for %1$d %2$s" - -#: ../../include/identity.php:1195 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Seksuell preferanse:" - -#: ../../include/identity.php:1199 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Hjemby:" - -#: ../../include/identity.php:1201 -msgid "Tags:" -msgstr "Merkelapper:" - -#: ../../include/identity.php:1203 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Politiske synspunkter:" - -#: ../../include/identity.php:1205 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/identity.php:1207 -msgid "About:" -msgstr "Om:" - -#: ../../include/identity.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobbyer/interesser:" - -#: ../../include/identity.php:1211 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Liker:" - -#: ../../include/identity.php:1213 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Misliker:" - -#: ../../include/identity.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformasjon og sosiale nettverk:" - -#: ../../include/identity.php:1217 -msgid "My other channels:" -msgstr "Mine andre kanaler:" - -#: ../../include/identity.php:1219 -msgid "Musical interests:" -msgstr "Musikkinteresse:" - -#: ../../include/identity.php:1221 -msgid "Books, literature:" -msgstr "Bøker, litteratur:" - -#: ../../include/identity.php:1223 -msgid "Television:" -msgstr "TV:" - -#: ../../include/identity.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underholdning:" - -#: ../../include/identity.php:1227 -msgid "Love/Romance:" -msgstr "Kjærlighet/romantikk:" - -#: ../../include/identity.php:1229 -msgid "Work/employment:" -msgstr "Arbeid/sysselsetting:" - -#: ../../include/identity.php:1231 -msgid "School/education:" -msgstr "Skole/utdannelse:" - -#: ../../include/identity.php:1251 -msgid "Like this thing" -msgstr "Lik denne tingen" - -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Ny side" - -#: ../../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/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Vis" - -#: ../../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/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Handlinger" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Sidelenke" - -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Tittel" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Laget" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Endret" - -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorier" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apper" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1498 -msgid "Personal" -msgstr "Personlig" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Lag personlig app" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Endre personlig app" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorer/Skjul" - -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Forslag" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Se mer..." - -#: ../../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/widgets.php:172 -msgid "Add New Connection" -msgstr "Legg til ny forbindelse" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Skriv kanal-adressen" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Eksempel: ola.nordmann@eksempel.no, http://eksempel.no/karinordmann" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Merknader" - -#: ../../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/widgets.php:266 -msgid "Remove term" -msgstr "Fjern begrep" - -#: ../../include/widgets.php:274 ../../include/features.php:73 -msgid "Saved Searches" -msgstr "Lagrede søk" - -#: ../../include/widgets.php:304 ../../include/features.php:85 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Lagrede mapper" - -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Alt" - -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Arkiv" - -#: ../../include/widgets.php:427 -msgid "Refresh" -msgstr "Forny" - -#: ../../include/widgets.php:428 ../../mod/connedit.php:563 -msgid "Me" -msgstr "Meg" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:566 -msgid "Best Friends" -msgstr "Bestevenner" - -#: ../../include/widgets.php:431 -msgid "Co-workers" -msgstr "Medarbeidere" - -#: ../../include/widgets.php:432 ../../mod/connedit.php:568 -msgid "Former Friends" -msgstr "Tidligere venner" - -#: ../../include/widgets.php:433 ../../mod/connedit.php:569 -msgid "Acquaintances" -msgstr "Bekjente" - -#: ../../include/widgets.php:434 -msgid "Everybody" -msgstr "Alle" - -#: ../../include/widgets.php:468 -msgid "Account settings" -msgstr "Kontoinnstillinger" - -#: ../../include/widgets.php:474 -msgid "Channel settings" -msgstr "Kanalinnstillinger" - -#: ../../include/widgets.php:480 -msgid "Additional features" -msgstr "Tilleggsfunksjoner" - -#: ../../include/widgets.php:486 -msgid "Feature/Addon settings" -msgstr "Funksjons-/Tilleggsinnstillinger" - -#: ../../include/widgets.php:492 -msgid "Display settings" -msgstr "Visningsinnstillinger" - -#: ../../include/widgets.php:498 -msgid "Connected apps" -msgstr "Tilkoblede app-er" - -#: ../../include/widgets.php:504 -msgid "Export channel" -msgstr "Eksporter kanal" - -#: ../../include/widgets.php:513 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "Forbindelsens standard tillatelser" - -#: ../../include/widgets.php:521 -msgid "Premium Channel Settings" -msgstr "Premiumkanal-innstillinger" - -#: ../../include/widgets.php:529 ../../include/features.php:62 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanalkilder" - -#: ../../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/widgets.php:550 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Meldinger" - -#: ../../include/widgets.php:553 -msgid "Check Mail" -msgstr "Sjekk meldinger" - -#: ../../include/widgets.php:558 ../../include/nav.php:199 -msgid "New Message" -msgstr "Ny melding" - -#: ../../include/widgets.php:633 -msgid "Chat Rooms" -msgstr "Chatrom" - -#: ../../include/widgets.php:653 -msgid "Bookmarked Chatrooms" -msgstr "Bokmerkede chatrom" - -#: ../../include/widgets.php:673 -msgid "Suggested Chatrooms" -msgstr "Foreslåtte chatrom" - -#: ../../include/widgets.php:800 ../../include/widgets.php:858 -msgid "photo/image" -msgstr "foto/bilde" - -#: ../../include/widgets.php:953 ../../include/widgets.php:955 -msgid "Rate Me" -msgstr "Vurder meg" - -#: ../../include/widgets.php:959 -msgid "View Ratings" -msgstr "Vis vurderinger" - -#: ../../include/widgets.php:970 -msgid "Public Hubs" -msgstr "Offentlige huber" - -#: ../../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/conversation.php:123 ../../include/text.php:1750 -#: ../../mod/like.php:337 ../../mod/tagger.php:47 -msgid "event" -msgstr "hendelse" - -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "kanal" - -#: ../../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/conversation.php:150 ../../include/text.php:1755 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "kommentar" - -#: ../../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/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/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:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s prikket %2$s" - -#: ../../include/conversation.php:243 ../../include/text.php:911 -msgid "poked" -msgstr "prikket" - -#: ../../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/conversation.php:556 ../../mod/photos.php:984 -msgctxt "title" -msgid "Likes" -msgstr "Liker" - -#: ../../include/conversation.php:556 ../../mod/photos.php:984 -msgctxt "title" -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../include/conversation.php:557 ../../mod/photos.php:985 -msgctxt "title" -msgid "Agree" -msgstr "Enig" - -#: ../../include/conversation.php:557 ../../mod/photos.php:985 -msgctxt "title" -msgid "Disagree" -msgstr "Uenig" - -#: ../../include/conversation.php:557 ../../mod/photos.php:985 -msgctxt "title" -msgid "Abstain" -msgstr "Avstår" - -#: ../../include/conversation.php:558 ../../mod/photos.php:986 -msgctxt "title" -msgid "Attending" -msgstr "Deltar" - -#: ../../include/conversation.php:558 ../../mod/photos.php:986 -msgctxt "title" -msgid "Not attending" -msgstr "Deltar ikke" - -#: ../../include/conversation.php:558 ../../mod/photos.php:986 -msgctxt "title" -msgid "Might attend" -msgstr "Deltar kanskje" - -#: ../../include/conversation.php:644 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "Velg" - -#: ../../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/conversation.php:652 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "Privat melding" - -#: ../../include/conversation.php:659 ../../include/ItemObject.php:227 -msgid "Message signature validated" -msgstr "Innleggets signatur er bekreftet" - -#: ../../include/conversation.php:660 ../../include/ItemObject.php:228 -msgid "Message signature incorrect" -msgstr "Innleggets signatur er feil" - -#: ../../include/conversation.php:680 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vis %s sin profile @ %s" - -#: ../../include/conversation.php:695 -msgid "Categories:" -msgstr "Kategorier:" - -#: ../../include/conversation.php:696 -msgid "Filed under:" -msgstr "Sortert under:" - -#: ../../include/conversation.php:704 ../../include/ItemObject.php:312 -#, php-format -msgid " from %s" -msgstr "fra %s" - -#: ../../include/conversation.php:707 ../../include/ItemObject.php:315 -#, php-format -msgid "last edited: %s" -msgstr "sist endret: %s" - -#: ../../include/conversation.php:708 ../../include/ItemObject.php:316 -#, php-format -msgid "Expires: %s" -msgstr "Utløper: %s" - -#: ../../include/conversation.php:723 -msgid "View in context" -msgstr "Vis i sammenheng" - -#: ../../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/conversation.php:838 -msgid "remove" -msgstr "fjern" - -#: ../../include/conversation.php:842 ../../include/nav.php:247 -msgid "Loading..." -msgstr "Laster..." - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Slett valgte elementer" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Vis kilde" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Følg tråd" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Vis status" - -#: ../../include/conversation.php:937 ../../include/nav.php:91 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "Vis profil" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Vis bilder" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Matrix-aktivitet" - -#: ../../include/conversation.php:941 -msgid "Edit Contact" -msgstr "Endre kontakt" - -#: ../../include/conversation.php:942 -msgid "Send PM" -msgstr "Send privat melding" - -#: ../../include/conversation.php:943 ../../include/apps.php:145 -msgid "Poke" -msgstr "Prikk" - -#: ../../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/conversation.php:1061 -#, php-format -msgid "%s likes this." -msgstr "%s liker dette." - -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s doesn't like this." -msgstr "%s liker ikke dette." - -#: ../../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/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/conversation.php:1073 -msgid "and" -msgstr "og" - -#: ../../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/conversation.php:1077 -#, php-format -msgid "%s like this." -msgstr "%s liker dette." - -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s don't like this." -msgstr "%s liker ikke dette." - -#: ../../include/conversation.php:1136 -msgid "Visible to everybody" -msgstr "Synlig for alle" - -#: ../../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/conversation.php:1138 -msgid "Please enter a video link/URL:" -msgstr "Vennligst skriv en videolenke/URL:" - -#: ../../include/conversation.php:1139 -msgid "Please enter an audio link/URL:" -msgstr "Vennligst skriv en lydlenke/URL:" - -#: ../../include/conversation.php:1140 -msgid "Tag term:" -msgstr "Merkelapp:" - -#: ../../include/conversation.php:1141 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Lagre til mappe:" - -#: ../../include/conversation.php:1142 -msgid "Where are you right now?" -msgstr "Hvor er du akkurat nå?" - -#: ../../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/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/conversation.php:1171 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Sidens lenketittel" - -#: ../../include/conversation.php:1174 -msgid "Post as" -msgstr "Lag innlegg som" - -#: ../../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/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/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/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/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/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/conversation.php:1182 -msgid "upload photo" -msgstr "last opp bilde" - -#: ../../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/conversation.php:1184 -msgid "attach file" -msgstr "legg ved fil" - -#: ../../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/conversation.php:1186 -msgid "web link" -msgstr "web-lenke" - -#: ../../include/conversation.php:1187 -msgid "Insert video link" -msgstr "Sett inn videolenke" - -#: ../../include/conversation.php:1188 -msgid "video link" -msgstr "videolenke" - -#: ../../include/conversation.php:1189 -msgid "Insert audio link" -msgstr "Sett inn lenke til lyd" - -#: ../../include/conversation.php:1190 -msgid "audio link" -msgstr "lenke til lyd" - -#: ../../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/conversation.php:1192 -msgid "set location" -msgstr "angi plassering" - -#: ../../include/conversation.php:1193 ../../mod/editpost.php:127 -msgid "Toggle voting" -msgstr "Skru av eller på stemming" - -#: ../../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/conversation.php:1197 -msgid "clear location" -msgstr "fjern plassering" - -#: ../../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/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/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/conversation.php:1205 -msgid "permissions" -msgstr "tillatelser" - -#: ../../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/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/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/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/conversation.php:1231 ../../mod/events.php:635 -#: ../../mod/editpost.php:159 -msgid "OK" -msgstr "OK" - -#: ../../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/conversation.php:1475 -msgid "Discover" -msgstr "Oppdage" - -#: ../../include/conversation.php:1478 -msgid "Imported public streams" -msgstr "Importerte offentlige strømmer" - -#: ../../include/conversation.php:1483 -msgid "Commented Order" -msgstr "Kommentert" - -#: ../../include/conversation.php:1486 -msgid "Sort by Comment Date" -msgstr "Sorter etter kommentert dato" - -#: ../../include/conversation.php:1490 -msgid "Posted Order" -msgstr "Lagt inn" - -#: ../../include/conversation.php:1493 -msgid "Sort by Post Date" -msgstr "Sorter etter innleggsdato" - -#: ../../include/conversation.php:1501 -msgid "Posts that mention or involve you" -msgstr "Innlegg som nevner eller involverer deg" - -#: ../../include/conversation.php:1507 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "Nye" - -#: ../../include/conversation.php:1510 -msgid "Activity Stream - by date" -msgstr "Aktivitetsstrøm - etter dato" - -#: ../../include/conversation.php:1516 -msgid "Starred" -msgstr "Stjerne" - -#: ../../include/conversation.php:1519 -msgid "Favourite Posts" -msgstr "Favorittinnlegg" - -#: ../../include/conversation.php:1526 -msgid "Spam" -msgstr "Søppel" - -#: ../../include/conversation.php:1529 -msgid "Posts flagged as SPAM" -msgstr "Innlegg merket som SØPPEL" - -#: ../../include/conversation.php:1568 ../../mod/admin.php:949 -msgid "Channel" -msgstr "Kanal" - -#: ../../include/conversation.php:1571 -msgid "Status Messages and Posts" -msgstr "Statusmeldinger og -innlegg" - -#: ../../include/conversation.php:1580 -msgid "About" -msgstr "Om" - -#: ../../include/conversation.php:1583 -msgid "Profile Details" -msgstr "Profildetaljer" - -#: ../../include/conversation.php:1589 ../../include/nav.php:97 -#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Bilder" - -#: ../../include/conversation.php:1592 ../../include/photos.php:356 -msgid "Photo Albums" -msgstr "Fotoalbum" - -#: ../../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:1601 -msgid "Files and Storage" -msgstr "Filer og lagring" - -#: ../../include/conversation.php:1611 ../../include/conversation.php:1614 -msgid "Chatrooms" -msgstr "Chatrom" - -#: ../../include/conversation.php:1624 ../../include/nav.php:109 -#: ../../include/apps.php:129 -msgid "Bookmarks" -msgstr "Bokmerker" - -#: ../../include/conversation.php:1627 -msgid "Saved Bookmarks" -msgstr "Lagrede bokmerker" - -#: ../../include/conversation.php:1635 ../../include/nav.php:113 -#: ../../include/apps.php:136 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Websider" - -#: ../../include/conversation.php:1638 -msgid "Manage Webpages" -msgstr "Håndtere websider" - -#: ../../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: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:1698 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Deltar" -msgstr[1] "Deltar" - -#: ../../include/conversation.php:1701 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Deltar ikke" -msgstr[1] "Deltar ikke" - -#: ../../include/conversation.php:1704 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Ikke bestemt" -msgstr[1] "Ikke bestemt" - -#: ../../include/conversation.php:1707 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Enig" -msgstr[1] "Enige" - -#: ../../include/conversation.php:1710 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Uenig" -msgstr[1] "Uenige" - -#: ../../include/conversation.php:1713 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Avstår" -msgstr[1] "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/attach.php:242 ../../include/attach.php:296 -msgid "Item was not found." -msgstr "Elementet ble ikke funnet." - -#: ../../include/attach.php:352 -msgid "No source file." -msgstr "Ingen kildefil." - -#: ../../include/attach.php:369 -msgid "Cannot locate file to replace" -msgstr "Kan ikke finne filen som skal byttes ut" - -#: ../../include/attach.php:387 -msgid "Cannot locate file to revise/update" -msgstr "Finner ikke filen som skal revideres/oppdateres" - -#: ../../include/attach.php:398 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Filens størrelse overgår grensen på %d" - -#: ../../include/attach.php:410 -#, 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/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/attach.php:505 -msgid "Stored file could not be verified. Upload failed." -msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." - -#: ../../include/attach.php:547 ../../include/attach.php:564 -msgid "Path not available." -msgstr "Stien er ikke tilgjengelig." - -#: ../../include/attach.php:611 -msgid "Empty pathname" -msgstr "Tomt sti-navn" - -#: ../../include/attach.php:627 -msgid "duplicate filename or path" -msgstr "duplikat av filnavn eller sti" - -#: ../../include/attach.php:651 -msgid "Path not found." -msgstr "Stien ble ikke funnet." - -#: ../../include/attach.php:702 -msgid "mkdir failed." -msgstr "mkdir mislyktes." - -#: ../../include/attach.php:706 -msgid "database storage failed." -msgstr "databaselagring mislyktes." - -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Ikke en gyldig e-postadresse" - -#: ../../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/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Din e-postadresse er allerede registrert på dette nettstedet." - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "En invitasjon er påkrevd." - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Invitasjon kunne ikke bekreftes." - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Vennligst skriv inn nødvendig informasjon." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Mislyktes med å lagre kontoinformasjon." - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registreringsbekreftelse for %s" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registreringsforespørsel hos %s" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "ditt registreringspassord" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registreringsdetaljer for %s" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Konto godkjent." - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrering trukket tilbake for %s" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Konto bekreftet. Vennligst logg inn." - -#: ../../include/account.php:706 ../../include/account.php:708 -msgid "Click here to upgrade." -msgstr "Klikk her for å oppgradere." - -#: ../../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/account.php:719 -msgid "This action is not available under your subscription plan." -msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Slett dette elementet?" - -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:968 ../../mod/photos.php:1086 -msgid "Comment" -msgstr "Kommentar" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" -msgstr "[+] Vis alle" - -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Vis mindre" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] Utvid" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] Lukk" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Passordet er for kort" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Passordene er ikke like" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "alle" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Hemmelig passordsetning" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hint om passordsetning" - -#: ../../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/js_strings.php:17 -msgid "close all" -msgstr "Lukk alle" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Ikke noe nytt her" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Vurder denne kanalen (dette er offentlig)" - -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -msgid "Rating" -msgstr "Vurdering" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Beskriv (valgfritt)" - -#: ../../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/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Vennligst skriv inn en lenke URL:" - -#: ../../include/js_strings.php:25 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:26 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:27 -msgid "ago" -msgstr "siden" - -#: ../../include/js_strings.php:28 -msgid "from now" -msgstr "fra nå" - -#: ../../include/js_strings.php:29 -msgid "less than a minute" -msgstr "mindre enn ett minutt" - -#: ../../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/js_strings.php:32 -msgid "about an hour" -msgstr "omtrent en time" - -#: ../../include/js_strings.php:33 -#, php-format -msgid "about %d hours" -msgstr "omtrent %d timer" - -#: ../../include/js_strings.php:34 -msgid "a day" -msgstr "en dag" - -#: ../../include/js_strings.php:35 -#, php-format -msgid "%d days" -msgstr "%d dager" - -#: ../../include/js_strings.php:36 -msgid "about a month" -msgstr "omtrent en måned" - -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d months" -msgstr "%d måneder" - -#: ../../include/js_strings.php:38 -msgid "about a year" -msgstr "omtrent et år" - -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d years" -msgstr "%d år" - -#: ../../include/js_strings.php:40 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:41 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:266 +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:265 msgid "parent" msgstr "opp et nivå" -#: ../../include/RedDAV/RedBrowser.php:130 ../../include/text.php:2395 +#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2497 msgid "Collection" msgstr "Samling" -#: ../../include/RedDAV/RedBrowser.php:133 +#: ../../include/RedDAV/RedBrowser.php:134 msgid "Principal" msgstr "Viktigste" -#: ../../include/RedDAV/RedBrowser.php:136 +#: ../../include/RedDAV/RedBrowser.php:137 msgid "Addressbook" msgstr "Adressebok" -#: ../../include/RedDAV/RedBrowser.php:139 +#: ../../include/RedDAV/RedBrowser.php:140 msgid "Calendar" msgstr "Kalender" -#: ../../include/RedDAV/RedBrowser.php:142 +#: ../../include/RedDAV/RedBrowser.php:143 msgid "Schedule Inbox" msgstr "Tidsplan innboks" -#: ../../include/RedDAV/RedBrowser.php:145 +#: ../../include/RedDAV/RedBrowser.php:146 msgid "Schedule Outbox" msgstr "Tidsplan utboks" -#: ../../include/RedDAV/RedBrowser.php:225 +#: ../../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/RedDAV/RedBrowser.php:227 #, php-format msgid "%1$s used" msgstr "%1$s brukt" -#: ../../include/RedDAV/RedBrowser.php:230 +#: ../../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/RedDAV/RedBrowser.php:251 +#: ../../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/RedDAV/RedBrowser.php:253 msgid "Total" msgstr "Totalt" -#: ../../include/RedDAV/RedBrowser.php:253 +#: ../../include/RedDAV/RedBrowser.php:255 msgid "Shared" msgstr "Delt" -#: ../../include/RedDAV/RedBrowser.php:254 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:100 -#: ../../mod/mitem.php:169 ../../mod/new_channel.php:121 +#: ../../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/RedDAV/RedBrowser.php:255 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1236 +#: ../../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/RedDAV/RedBrowser.php:262 ../../mod/settings.php:584 -#: ../../mod/settings.php:610 ../../mod/admin.php:950 -#: ../../mod/sharedwithme.php:100 +#: ../../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/RedDAV/RedBrowser.php:263 +#: ../../include/RedDAV/RedBrowser.php:262 msgid "Type" msgstr "Type" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 msgid "Size" msgstr "Størrelse" -#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 msgid "Last Modified" msgstr "Sist endret" +#: ../../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/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/RedDAV/RedBrowser.php:302 msgid "Create new folder" msgstr "Lag ny mappe" @@ -1716,15 +150,292 @@ msgstr "Lag ny mappe" msgid "Upload file" msgstr "Last opp fil" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s sine bokmerker" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan se min normale strøm og innlegg" -#: ../../include/comanche.php:34 ../../mod/admin.php:381 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan se min standard kanalprofil" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan se mine forbindelser" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan se mine filer og bilder" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan se mine websider" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan sende meg deres kanalstrøm og innlegg" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan lage innlegg på min kanalside (\"vegg\")" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan kommentere på eller like mine innlegg" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan sende meg private meldinger" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan like/ikke like forskjellige greier" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profiler og andre ting enn innlegg/kommentarer" + +#: ../../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/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avansert - nyttig for å lage forumkanaler for grupper" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan skrive til mitt lager for filer og bilder" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan endre mine websider" + +#: ../../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/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Litt avansert - svært nyttig i åpne fellesskap" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan administrere mine kanalressurser" + +#: ../../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/permissions.php:867 +msgid "Social Networking" +msgstr "Sosialt nettverk" + +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" +msgstr "Ganske offentlig" + +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" +msgstr "Begrenset" + +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" +msgstr "Privat" + +#: ../../include/permissions.php:868 +msgid "Community Forum" +msgstr "Forum for fellesskap" + +#: ../../include/permissions.php:869 +msgid "Feed Republish" +msgstr "Republisering av strømmet innhold" + +#: ../../include/permissions.php:870 +msgid "Special Purpose" +msgstr "Spesiell bruk" + +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" +msgstr "Kjendis/Talerstol" + +#: ../../include/permissions.php:870 +msgid "Group Repository" +msgstr "Gruppelager" + +#: ../../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/permissions.php:871 +msgid "Custom/Expert Mode" +msgstr "Tilpasset/Ekspertmodus" + +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Mangler romnavn" + +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Duplikat romnavn" + +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Ugyldig rom-spesifisering" + +#: ../../include/chat.php:122 +msgid "Room not found." +msgstr "Rommet ble ikke funnet." + +#: ../../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/chat.php:143 +msgid "Room is full" +msgstr "Rommet er fullt" + +#: ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Forskjellig" + +#: ../../include/datetime.php:132 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD eller MM-DD" + +#: ../../include/datetime.php:235 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 ../../mod/events.php:689 +msgid "Required" +msgstr "Påkrevd" + +#: ../../include/datetime.php:262 ../../boot.php:2306 +msgid "never" +msgstr "aldri" + +#: ../../include/datetime.php:268 +msgid "less than a second ago" +msgstr "for mindre enn ett sekund siden" + +#: ../../include/datetime.php:271 +msgid "year" +msgstr "år" + +#: ../../include/datetime.php:271 +msgid "years" +msgstr "år" + +#: ../../include/datetime.php:272 +msgid "month" +msgstr "måned" + +#: ../../include/datetime.php:272 +msgid "months" +msgstr "måneder" + +#: ../../include/datetime.php:273 +msgid "week" +msgstr "uke" + +#: ../../include/datetime.php:273 +msgid "weeks" +msgstr "uker" + +#: ../../include/datetime.php:274 +msgid "day" +msgstr "dag" + +#: ../../include/datetime.php:274 +msgid "days" +msgstr "dager" + +#: ../../include/datetime.php:275 +msgid "hour" +msgstr "time" + +#: ../../include/datetime.php:275 +msgid "hours" +msgstr "timer" + +#: ../../include/datetime.php:276 +msgid "minute" +msgstr "minutt" + +#: ../../include/datetime.php:276 +msgid "minutes" +msgstr "minutter" + +#: ../../include/datetime.php:277 +msgid "second" +msgstr "sekund" + +#: ../../include/datetime.php:277 +msgid "seconds" +msgstr "sekunder" + +#: ../../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/datetime.php:519 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$s sin fødselsdag" + +#: ../../include/datetime.php:520 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gratulerer med dagen, %1$s !" #: ../../include/features.php:38 msgid "General Features" @@ -1794,261 +505,547 @@ msgstr "Bildeplassering" 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/features.php:51 -msgid "Extended Identity Sharing" -msgstr "Utvidet identitetsdeling" - -#: ../../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/features.php:52 +#: ../../include/features.php:49 msgid "Expert Mode" msgstr "Ekspertmodus" -#: ../../include/features.php:52 +#: ../../include/features.php:49 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" -#: ../../include/features.php:53 +#: ../../include/features.php:50 msgid "Premium Channel" msgstr "Premiumkanal" -#: ../../include/features.php:53 +#: ../../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/features.php:58 +#: ../../include/features.php:55 msgid "Post Composition Features" msgstr "Funksjoner for å lage innlegg" -#: ../../include/features.php:60 +#: ../../include/features.php:57 msgid "Use Markdown" msgstr "Bruk Markdown" -#: ../../include/features.php:60 +#: ../../include/features.php:57 msgid "Allow use of \"Markdown\" to format posts" msgstr "Tillat bruk av \"Markdown\" til formatering av innlegg" -#: ../../include/features.php:61 +#: ../../include/features.php:58 msgid "Large Photos" msgstr "Store bilder" -#: ../../include/features.php:61 +#: ../../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/features.php:62 +#: ../../include/features.php:59 ../../include/widgets.php:545 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanalkilder" + +#: ../../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/features.php:63 +#: ../../include/features.php:60 msgid "Even More Encryption" msgstr "Enda mer kryptering" -#: ../../include/features.php:63 +#: ../../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/features.php:64 +#: ../../include/features.php:61 msgid "Enable voting tools" msgstr "Skru på verktøy for å stemme" -#: ../../include/features.php:64 +#: ../../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/features.php:65 -msgid "Flag Adult Photos" -msgstr "Flagge bilder for voksne" - -#: ../../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/features.php:70 +#: ../../include/features.php:67 msgid "Network and Stream Filtering" msgstr "Nettverk- og strømfiltrering" -#: ../../include/features.php:71 +#: ../../include/features.php:68 msgid "Search by Date" msgstr "Søk etter dato" -#: ../../include/features.php:71 +#: ../../include/features.php:68 msgid "Ability to select posts by date ranges" msgstr "Mulighet for å velge innlegg etter datoområde" -#: ../../include/features.php:72 +#: ../../include/features.php:69 msgid "Collections Filter" msgstr "Filter for samlinger" -#: ../../include/features.php:72 +#: ../../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/features.php:73 +#: ../../include/features.php:70 ../../include/widgets.php:273 +msgid "Saved Searches" +msgstr "Lagrede søk" + +#: ../../include/features.php:70 msgid "Save search terms for re-use" msgstr "Lagre søkeuttrykk for senere bruk" -#: ../../include/features.php:74 +#: ../../include/features.php:71 msgid "Network Personal Tab" msgstr "Nettverk personlig fane" -#: ../../include/features.php:74 +#: ../../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/features.php:75 +#: ../../include/features.php:72 msgid "Network New Tab" msgstr "Nettverk Ny fane" -#: ../../include/features.php:75 +#: ../../include/features.php:72 msgid "Enable tab to display all new Network activity" msgstr "Skru på fane for å vise all ny nettverksaktivitet" -#: ../../include/features.php:76 +#: ../../include/features.php:73 msgid "Affinity Tool" msgstr "Nærhetsverktøy" -#: ../../include/features.php:76 +#: ../../include/features.php:73 msgid "Filter stream activity by depth of relationships" msgstr "Filtrer strømaktiviteten etter releasjonsdybde" -#: ../../include/features.php:77 +#: ../../include/features.php:74 +msgid "Connection Filtering" +msgstr "Filtrer forbindelser" + +#: ../../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/features.php:75 msgid "Suggest Channels" msgstr "Foreslå kanaler" -#: ../../include/features.php:77 +#: ../../include/features.php:75 msgid "Show channel suggestions" msgstr "Vis kanalforslag" -#: ../../include/features.php:82 +#: ../../include/features.php:80 msgid "Post/Comment Tools" msgstr "Innlegg-/Kommentar-verktøy" -#: ../../include/features.php:83 +#: ../../include/features.php:81 msgid "Tagging" msgstr "Merking" -#: ../../include/features.php:83 +#: ../../include/features.php:81 msgid "Ability to tag existing posts" msgstr "Mulighet til å merke eksisterende meldinger" -#: ../../include/features.php:84 +#: ../../include/features.php:82 msgid "Post Categories" msgstr "Innleggskategorier" -#: ../../include/features.php:84 +#: ../../include/features.php:82 msgid "Add categories to your posts" msgstr "Legg kategorier til dine innlegg" -#: ../../include/features.php:85 +#: ../../include/features.php:83 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "Lagrede mapper" + +#: ../../include/features.php:83 msgid "Ability to file posts under folders" msgstr "Mulighet til å sortere innlegg i mapper" -#: ../../include/features.php:86 +#: ../../include/features.php:84 msgid "Dislike Posts" msgstr "Mislik innlegg" -#: ../../include/features.php:86 +#: ../../include/features.php:84 msgid "Ability to dislike posts/comments" msgstr "Mulighet til å mislike innlegg/kommentarer" -#: ../../include/features.php:87 +#: ../../include/features.php:85 msgid "Star Posts" msgstr "Stjerneinnlegg" -#: ../../include/features.php:87 +#: ../../include/features.php:85 msgid "Ability to mark special posts with a star indicator" msgstr "Mulighet til å merke spesielle innlegg med en stjerne" -#: ../../include/features.php:88 +#: ../../include/features.php:86 msgid "Tag Cloud" msgstr "Merkelappsky" -#: ../../include/features.php:88 +#: ../../include/features.php:86 msgid "Provide a personal tag cloud on your channel page" msgstr "Tilby en personlig merkelappsky på din kanalside" -#: ../../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/comanche.php:34 ../../mod/admin.php:348 +msgid "Default" +msgstr "Standard" -#: ../../include/items.php:979 ../../include/items.php:1024 -msgid "(Unknown)" -msgstr "(Ukjent)" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Slett dette elementet?" -#: ../../include/items.php:1181 -msgid "Visible to anybody on the internet." -msgstr "Synlig for enhver på Internett." +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:673 +#: ../../mod/photos.php:1008 ../../mod/photos.php:1126 +msgid "Comment" +msgstr "Kommentar" -#: ../../include/items.php:1183 -msgid "Visible to you only." -msgstr "Synlig bare for deg." +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:390 +msgid "[+] show all" +msgstr "[+] Vis alle" -#: ../../include/items.php:1185 -msgid "Visible to anybody in this network." -msgstr "Synlig for enhver i dette nettverket." +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] Vis mindre" -#: ../../include/items.php:1187 -msgid "Visible to anybody authenticated." -msgstr "Synlig for enhver som er autentisert." +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] Utvid" -#: ../../include/items.php:1189 +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] Lukk" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Passordet er for kort" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Passordene er ikke like" + +#: ../../include/js_strings.php:13 ../../mod/photos.php:41 +msgid "everybody" +msgstr "alle" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Hemmelig passordsetning" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Hint om passordsetning" + +#: ../../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/js_strings.php:17 +msgid "close all" +msgstr "Lukk alle" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Ikke noe nytt her" + +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Vurder denne kanalen (dette er offentlig)" + +#: ../../include/js_strings.php:20 ../../mod/connedit.php:667 +#: ../../mod/rate.php:156 +msgid "Rating" +msgstr "Vurdering" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Beskriv (valgfritt)" + +#: ../../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/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Vennligst skriv inn en lenke URL:" + +#: ../../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/js_strings.php:26 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" + +#: ../../include/js_strings.php:27 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" + +#: ../../include/js_strings.php:28 +msgid "ago" +msgstr "siden" + +#: ../../include/js_strings.php:29 +msgid "from now" +msgstr "fra nå" + +#: ../../include/js_strings.php:30 +msgid "less than a minute" +msgstr "mindre enn ett minutt" + +#: ../../include/js_strings.php:31 +msgid "about a minute" +msgstr "omtrent et minutt" + +#: ../../include/js_strings.php:32 #, php-format -msgid "Visible to anybody on %s." -msgstr "Synlig for alle på %s." +msgid "%d minutes" +msgstr "%d minutter" -#: ../../include/items.php:1191 -msgid "Visible to all connections." -msgstr "Synlig for alle forbindelser." +#: ../../include/js_strings.php:33 +msgid "about an hour" +msgstr "omtrent en time" -#: ../../include/items.php:1193 -msgid "Visible to approved connections." -msgstr "Synlig for godkjente forbindelser." - -#: ../../include/items.php:1195 -msgid "Visible to specific connections." -msgstr "Synlig for spesifikke forbindelser." - -#: ../../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/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/items.php:4491 -msgid "Collection is empty." -msgstr "Samlingen er tom." - -#: ../../include/items.php:4498 +#: ../../include/js_strings.php:34 #, php-format -msgid "Collection: %s" -msgstr "Samling: %s" +msgid "about %d hours" +msgstr "omtrent %d timer" -#: ../../include/items.php:4509 +#: ../../include/js_strings.php:35 +msgid "a day" +msgstr "en dag" + +#: ../../include/js_strings.php:36 #, php-format -msgid "Connection: %s" -msgstr "Forbindelse: %s" +msgid "%d days" +msgstr "%d dager" -#: ../../include/items.php:4512 -msgid "Connection not found." -msgstr "Forbindelsen ble ikke funnet." +#: ../../include/js_strings.php:37 +msgid "about a month" +msgstr "omtrent en måned" + +#: ../../include/js_strings.php:38 +#, php-format +msgid "%d months" +msgstr "%d måneder" + +#: ../../include/js_strings.php:39 +msgid "about a year" +msgstr "omtrent et år" + +#: ../../include/js_strings.php:40 +#, php-format +msgid "%d years" +msgstr "%d år" + +#: ../../include/js_strings.php:41 +msgid " " +msgstr " " + +#: ../../include/js_strings.php:42 +msgid "timeago.numbers" +msgstr "timeago.numbers" + +#: ../../include/js_strings.php:44 ../../include/text.php:1144 +msgid "January" +msgstr "januar" + +#: ../../include/js_strings.php:45 ../../include/text.php:1144 +msgid "February" +msgstr "februar" + +#: ../../include/js_strings.php:46 ../../include/text.php:1144 +msgid "March" +msgstr "mars" + +#: ../../include/js_strings.php:47 ../../include/text.php:1144 +msgid "April" +msgstr "april" + +#: ../../include/js_strings.php:48 +msgctxt "long" +msgid "May" +msgstr "mai" + +#: ../../include/js_strings.php:49 ../../include/text.php:1144 +msgid "June" +msgstr "juni" + +#: ../../include/js_strings.php:50 ../../include/text.php:1144 +msgid "July" +msgstr "juli" + +#: ../../include/js_strings.php:51 ../../include/text.php:1144 +msgid "August" +msgstr "august" + +#: ../../include/js_strings.php:52 ../../include/text.php:1144 +msgid "September" +msgstr "september" + +#: ../../include/js_strings.php:53 ../../include/text.php:1144 +msgid "October" +msgstr "oktober" + +#: ../../include/js_strings.php:54 ../../include/text.php:1144 +msgid "November" +msgstr "november" + +#: ../../include/js_strings.php:55 ../../include/text.php:1144 +msgid "December" +msgstr "desember" + +#: ../../include/js_strings.php:56 +msgid "Jan" +msgstr "Jan" + +#: ../../include/js_strings.php:57 +msgid "Feb" +msgstr "Feb" + +#: ../../include/js_strings.php:58 +msgid "Mar" +msgstr "Mar" + +#: ../../include/js_strings.php:59 +msgid "Apr" +msgstr "Apr" + +#: ../../include/js_strings.php:60 +msgctxt "short" +msgid "May" +msgstr "mai" + +#: ../../include/js_strings.php:61 +msgid "Jun" +msgstr "Jun" + +#: ../../include/js_strings.php:62 +msgid "Jul" +msgstr "Jul" + +#: ../../include/js_strings.php:63 +msgid "Aug" +msgstr "Aug" + +#: ../../include/js_strings.php:64 +msgid "Sep" +msgstr "Sep" + +#: ../../include/js_strings.php:65 +msgid "Oct" +msgstr "Okt" + +#: ../../include/js_strings.php:66 +msgid "Nov" +msgstr "Nov" + +#: ../../include/js_strings.php:67 +msgid "Dec" +msgstr "Des" + +#: ../../include/js_strings.php:68 ../../include/text.php:1140 +msgid "Sunday" +msgstr "søndag" + +#: ../../include/js_strings.php:69 ../../include/text.php:1140 +msgid "Monday" +msgstr "mandag" + +#: ../../include/js_strings.php:70 ../../include/text.php:1140 +msgid "Tuesday" +msgstr "tirsdag" + +#: ../../include/js_strings.php:71 ../../include/text.php:1140 +msgid "Wednesday" +msgstr "onsdag" + +#: ../../include/js_strings.php:72 ../../include/text.php:1140 +msgid "Thursday" +msgstr "torsdag" + +#: ../../include/js_strings.php:73 ../../include/text.php:1140 +msgid "Friday" +msgstr "fredag" + +#: ../../include/js_strings.php:74 ../../include/text.php:1140 +msgid "Saturday" +msgstr "lørdag" + +#: ../../include/js_strings.php:75 +msgid "Sun" +msgstr "Søn" + +#: ../../include/js_strings.php:76 +msgid "Mon" +msgstr "Man" + +#: ../../include/js_strings.php:77 +msgid "Tue" +msgstr "Tirs" + +#: ../../include/js_strings.php:78 +msgid "Wed" +msgstr "Ons" + +#: ../../include/js_strings.php:79 +msgid "Thu" +msgstr "Tors" + +#: ../../include/js_strings.php:80 +msgid "Fri" +msgstr "Fre" + +#: ../../include/js_strings.php:81 +msgid "Sat" +msgstr "Lør" + +#: ../../include/js_strings.php:82 +msgctxt "calendar" +msgid "today" +msgstr "idag" + +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "month" +msgstr "måned" + +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "week" +msgstr "uke" + +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "day" +msgstr "dag" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "All day" +msgstr "Hele dagen" #: ../../include/contact_selectors.php:56 msgid "Frequently" @@ -2086,9 +1083,9 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:79 ../../mod/id.php:12 -#: ../../mod/id.php:13 ../../mod/admin.php:812 ../../mod/admin.php:821 -#: ../../boot.php:1554 +#: ../../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" @@ -2116,996 +1113,1328 @@ msgstr "XMPP/IM" msgid "MySpace" msgstr "MySpace" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Ingen mottaker angitt." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[ikke noe emne]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kan ikke avgjøre avsender." - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Lagret innlegg kunne ikke bekreftes." - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanalen er blokkert på dette nettstedet." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Kanalplassering mangler." - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Svaret fra den andre kanalen var ikke komplett." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen er slettet og finnes ikke lenger." - -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protokollen er avskrudd." - -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "Kanaloppdagelse mislyktes." - -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "lokal konto ble ikke funnet." - -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Kan ikke lage forbindelse med deg selv." - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Lagre i mappe" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Jeg vil delta" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Jeg deltar ikke" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Jeg vil kanskje delta" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Jeg er enig" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Jeg er uenig" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Jeg avstår" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Legg til stjerne" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Fjern stjerne" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Skru av og på stjernestatus" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "stjernemerket" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Legg til merkelapp" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:947 -msgid "I like this (toggle)" -msgstr "Jeg liker dette (skru av og på)" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:305 -msgid "like" -msgstr "liker" - -#: ../../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/ItemObject.php:255 ../../include/taxonomy.php:306 -msgid "dislike" -msgstr "misliker" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Del dette" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "del" - -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d kommentar" -msgstr[1] "%d kommentarer" - -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Vis %s sin profil - %s" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "til" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "vegg-til-vegg" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "via vegg-til-vegg:" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Lagre bokmerker" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Legg til i kalender" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Merk alle som sett" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1133 -msgctxt "noun" -msgid "Likes" -msgstr "Liker" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1134 -msgctxt "noun" -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1139 -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/ItemObject.php:674 -msgid "Image" -msgstr "Bilde" - -#: ../../include/ItemObject.php:675 -msgid "Insert Link" -msgstr "Sett inn lenke" - -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Video" - -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Forskjellig" - -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD eller MM-DD" - -#: ../../include/datetime.php:212 ../../mod/events.php:633 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Påkrevd" - -#: ../../include/datetime.php:231 ../../boot.php:2356 -msgid "never" -msgstr "aldri" - -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "for mindre enn ett sekund siden" - -#: ../../include/datetime.php:240 -msgid "year" -msgstr "år" - -#: ../../include/datetime.php:240 -msgid "years" -msgstr "år" - -#: ../../include/datetime.php:241 -msgid "month" -msgstr "måned" - -#: ../../include/datetime.php:241 -msgid "months" -msgstr "måneder" - -#: ../../include/datetime.php:242 -msgid "week" -msgstr "uke" - -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "uker" - -#: ../../include/datetime.php:243 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:243 -msgid "days" -msgstr "dager" - -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "time" - -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "timer" - -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "minutt" - -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "minutter" - -#: ../../include/datetime.php:246 -msgid "second" -msgstr "sekund" - -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "sekunder" - -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s siden" - -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$s sin fødselsdag" - -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gratulerer med dagen, %1$s !" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nytt vindu" - -#: ../../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/Contact.php:215 ../../mod/admin.php:726 -#, php-format -msgid "User '%s' deleted" -msgstr "Brukeren '%s' er slettet" - -#: ../../include/bb2diaspora.php:349 -msgid "Attachments:" -msgstr "Vedlegg:" - -#: ../../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/bb2diaspora.php:430 -msgid "Hubzilla event notification:" -msgstr "Hubzilla hendelsesvarsling:" - -#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 -msgid "Starts:" -msgstr "Starter:" - -#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Slutter:" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 -msgid "Logout" -msgstr "Logg ut" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Avslutt denne økten" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Hjem" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Dine innlegg og samtaler" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Din profilside" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Endre profiler" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Håndter/endre profiler" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Endre din profil" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Dine bilder" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Dine filer" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Dine chatterom" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Dine bokmerker" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Dine websider" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 -msgid "Login" -msgstr "Logg inn" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Logg på" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klikk for å logge ut" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Fjernautentisering" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Klikk for å godkjennes mot din hjemme-hub" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Hjemmeside" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 -msgid "Register" -msgstr "Registrer" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Lag en konto" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 -msgid "Help" -msgstr "Hjelp" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Hjelp og dokumentasjon" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Programmer, verktøy, lenker, spill" - -#: ../../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/nav.php:165 -msgid "Search site content" -msgstr "Søk stedets innhold" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:353 -msgid "Directory" -msgstr "Katalog" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanalkatalog" - -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "Din matrix" - -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Merk alle matrix-varsler som sett" - -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Kanalhjem" - -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Kanalhjem" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Merk alle kanalvarsler som sett" - -#: ../../include/nav.php:187 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Forbindelser" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Varsel" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Varsler" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Se alle varsler" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Merk alle systemvarsler som sett" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Melding" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Privat post" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Se alle private meldinger" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Merk alle private meldinger som sett" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "Innboks" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Utboks" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:472 -msgid "Events" -msgstr "Hendelser" - -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Kalender" - -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Se alle hendelser" - -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Merk alle hendelser som sett" - -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:164 -msgid "Channel Manager" -msgstr "Kanalstyring" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Håndter dine kanaler" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Konto-/kanal-innstillinger" - -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Administrator" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Nettstedsoppsett og -konfigurasjon" - -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@navn, @merkelapp, innhold" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Vennligst vent..." - -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Merkelapper" - -#: ../../include/taxonomy.php:282 -msgid "Keywords" -msgstr "Nøkkelord" - -#: ../../include/taxonomy.php:303 -msgid "have" -msgstr "har" - -#: ../../include/taxonomy.php:303 -msgid "has" -msgstr "har" - -#: ../../include/taxonomy.php:304 -msgid "want" -msgstr "ønsker" - -#: ../../include/taxonomy.php:304 -msgid "wants" -msgstr "ønsker" - -#: ../../include/taxonomy.php:305 -msgid "likes" -msgstr "liker" - -#: ../../include/taxonomy.php:306 -msgid "dislikes" -msgstr "misliker" - -#: ../../include/activities.php:39 +#: ../../include/activities.php:42 msgid " and " msgstr "og" -#: ../../include/activities.php:47 +#: ../../include/activities.php:50 msgid "public profile" msgstr "offentlig profil" -#: ../../include/activities.php:56 +#: ../../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/activities.php:57 +#: ../../include/activities.php:60 #, php-format msgid "Visit %1$s's %2$s" msgstr "Besøk %1$s sitt %2$s" -#: ../../include/activities.php:60 +#: ../../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/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Denne hendelsen er lagt til i din kalender." +#: ../../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/api.php:1081 +#: ../../include/Contact.php:118 +msgid "New window" +msgstr "Nytt vindu" + +#: ../../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/Contact.php:237 +#, php-format +msgid "User '%s' deleted" +msgstr "Brukeren '%s' er slettet" + +#: ../../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: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: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: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 liker %2$s sin %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 liker ikke %2$s sin %3$s" + +#: ../../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:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s prikket %2$s" + +#: ../../include/conversation.php:243 ../../include/text.php:933 +msgid "poked" +msgstr "prikket" + +#: ../../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:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Likes" +msgstr "Liker" + +#: ../../include/conversation.php:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Agree" +msgstr "Enig" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Disagree" +msgstr "Uenig" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Abstain" +msgstr "Avstår" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Attending" +msgstr "Deltar" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Not attending" +msgstr "Deltar ikke" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Might attend" +msgstr "Deltar kanskje" + +#: ../../include/conversation.php:661 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Velg" + +#: ../../include/conversation.php:669 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Privat melding" + +#: ../../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 "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/conversation.php:718 ../../include/ItemObject.php:314 +#, php-format +msgid "from %s" +msgstr "fra %s" + +#: ../../include/conversation.php:721 ../../include/ItemObject.php:317 +#, php-format +msgid "last edited: %s" +msgstr "sist endret: %s" + +#: ../../include/conversation.php:722 ../../include/ItemObject.php:318 +#, php-format +msgid "Expires: %s" +msgstr "Utløper: %s" + +#: ../../include/conversation.php:737 +msgid "View in context" +msgstr "Vis i sammenheng" + +#: ../../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/conversation.php:848 +msgid "remove" +msgstr "fjern" + +#: ../../include/conversation.php:852 ../../include/nav.php:241 +msgid "Loading..." +msgstr "Laster..." + +#: ../../include/conversation.php:853 +msgid "Delete Selected Items" +msgstr "Slett valgte elementer" + +#: ../../include/conversation.php:941 +msgid "View Source" +msgstr "Vis kilde" + +#: ../../include/conversation.php:942 +msgid "Follow Thread" +msgstr "Følg tråd" + +#: ../../include/conversation.php:943 +msgid "View Status" +msgstr "Vis status" + +#: ../../include/conversation.php:944 ../../include/nav.php:86 +#: ../../mod/connedit.php:494 +msgid "View Profile" +msgstr "Vis profil" + +#: ../../include/conversation.php:945 +msgid "View Photos" +msgstr "Vis bilder" + +#: ../../include/conversation.php:946 +msgid "Activity/Posts" +msgstr "Aktivitet/Innlegg" + +#: ../../include/conversation.php:948 +msgid "Edit Connection" +msgstr "Endre forbindelse" + +#: ../../include/conversation.php:949 +msgid "Send PM" +msgstr "Send privat melding" + +#: ../../include/conversation.php:950 ../../include/apps.php:145 +msgid "Poke" +msgstr "Prikk" + +#: ../../include/conversation.php:1064 +#, php-format +msgid "%s likes this." +msgstr "%s liker dette." + +#: ../../include/conversation.php:1064 +#, php-format +msgid "%s doesn't like this." +msgstr "%s liker ikke dette." + +#: ../../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/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 liker ikke dette." +msgstr[1] "%2$d personer liker ikke dette." + +#: ../../include/conversation.php:1076 +msgid "and" +msgstr "og" + +#: ../../include/conversation.php:1079 +#, 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/conversation.php:1080 +#, php-format +msgid "%s like this." +msgstr "%s liker dette." + +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s don't like this." +msgstr "%s liker ikke dette." + +#: ../../include/conversation.php:1143 +msgid "Visible to everybody" +msgstr "Synlig for alle" + +#: ../../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/conversation.php:1145 +msgid "Please enter a video link/URL:" +msgstr "Vennligst skriv en videolenke/URL:" + +#: ../../include/conversation.php:1146 +msgid "Please enter an audio link/URL:" +msgstr "Vennligst skriv en lydlenke/URL:" + +#: ../../include/conversation.php:1147 +msgid "Tag term:" +msgstr "Merkelapp:" + +#: ../../include/conversation.php:1148 ../../mod/filer.php:48 +msgid "Save to Folder:" +msgstr "Lagre til mappe:" + +#: ../../include/conversation.php:1149 +msgid "Where are you right now?" +msgstr "Hvor er du akkurat nå?" + +#: ../../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/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/conversation.php:1177 ../../mod/layouts.php:184 +#: ../../mod/photos.php:989 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 +msgid "Share" +msgstr "Del" + +#: ../../include/conversation.php:1179 +msgid "Page link name" +msgstr "Sidens lenkenavn" + +#: ../../include/conversation.php:1182 +msgid "Post as" +msgstr "Lag innlegg som" + +#: ../../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/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 "Understreket" + +#: ../../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/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/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/conversation.php:1190 +msgid "upload photo" +msgstr "last opp bilde" + +#: ../../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/conversation.php:1192 +msgid "attach file" +msgstr "legg ved fil" + +#: ../../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/conversation.php:1194 +msgid "web link" +msgstr "web-lenke" + +#: ../../include/conversation.php:1195 +msgid "Insert video link" +msgstr "Sett inn videolenke" + +#: ../../include/conversation.php:1196 +msgid "video link" +msgstr "videolenke" + +#: ../../include/conversation.php:1197 +msgid "Insert audio link" +msgstr "Sett inn lenke til lyd" + +#: ../../include/conversation.php:1198 +msgid "audio link" +msgstr "lenke til lyd" + +#: ../../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/conversation.php:1200 +msgid "set location" +msgstr "angi plassering" + +#: ../../include/conversation.php:1201 ../../mod/editpost.php:127 +msgid "Toggle voting" +msgstr "Skru av eller på stemming" + +#: ../../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/conversation.php:1205 +msgid "clear location" +msgstr "fjern plassering" + +#: ../../include/conversation.php:1207 ../../mod/editpost.php:142 +#: ../../mod/editblock.php:162 ../../mod/editwebpage.php:205 +msgid "Title (optional)" +msgstr "Tittel (valgfri)" + +#: ../../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/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/conversation.php:1214 +msgid "permissions" +msgstr "tillatelser" + +#: ../../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/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/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/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/conversation.php:1241 ../../mod/editpost.php:160 +#: ../../mod/events.php:691 +msgid "OK" +msgstr "OK" + +#: ../../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/conversation.php:1485 +msgid "Discover" +msgstr "Oppdage" + +#: ../../include/conversation.php:1488 +msgid "Imported public streams" +msgstr "Importerte offentlige strømmer" + +#: ../../include/conversation.php:1493 +msgid "Commented Order" +msgstr "Kommentert" + +#: ../../include/conversation.php:1496 +msgid "Sort by Comment Date" +msgstr "Sorter etter kommentert dato" + +#: ../../include/conversation.php:1500 +msgid "Posted Order" +msgstr "Lagt inn" + +#: ../../include/conversation.php:1503 +msgid "Sort by Post Date" +msgstr "Sorter etter innleggsdato" + +#: ../../include/conversation.php:1508 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Personlig" + +#: ../../include/conversation.php:1511 +msgid "Posts that mention or involve you" +msgstr "Innlegg som nevner eller involverer deg" + +#: ../../include/conversation.php:1517 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" +msgstr "Nye" + +#: ../../include/conversation.php:1520 +msgid "Activity Stream - by date" +msgstr "Aktivitetsstrøm - etter dato" + +#: ../../include/conversation.php:1526 +msgid "Starred" +msgstr "Stjerne" + +#: ../../include/conversation.php:1529 +msgid "Favourite Posts" +msgstr "Favorittinnlegg" + +#: ../../include/conversation.php:1536 +msgid "Spam" +msgstr "Søppel" + +#: ../../include/conversation.php:1539 +msgid "Posts flagged as SPAM" +msgstr "Innlegg merket som SØPPEL" + +#: ../../include/conversation.php:1583 ../../mod/admin.php:947 +msgid "Channel" +msgstr "Kanal" + +#: ../../include/conversation.php:1586 +msgid "Status Messages and Posts" +msgstr "Statusmeldinger og -innlegg" + +#: ../../include/conversation.php:1595 +msgid "About" +msgstr "Om" + +#: ../../include/conversation.php:1598 +msgid "Profile Details" +msgstr "Profildetaljer" + +#: ../../include/conversation.php:1604 ../../include/apps.php:139 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Bilder" + +#: ../../include/conversation.php:1607 ../../include/photos.php:422 +msgid "Photo Albums" +msgstr "Fotoalbum" + +#: ../../include/conversation.php:1614 +msgid "Files and Storage" +msgstr "Filer og lagring" + +#: ../../include/conversation.php:1624 ../../include/conversation.php:1627 +msgid "Chatrooms" +msgstr "Chatrom" + +#: ../../include/conversation.php:1637 ../../include/apps.php:129 +#: ../../include/nav.php:103 +msgid "Bookmarks" +msgstr "Bokmerker" + +#: ../../include/conversation.php:1640 +msgid "Saved Bookmarks" +msgstr "Lagrede bokmerker" + +#: ../../include/conversation.php:1647 ../../include/apps.php:136 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Websider" + +#: ../../include/conversation.php:1650 +msgid "Manage Webpages" +msgstr "Håndtere websider" + +#: ../../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/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/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/conversation.php:1709 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Deltar" +msgstr[1] "Deltar" + +#: ../../include/conversation.php:1712 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Deltar ikke" +msgstr[1] "Deltar ikke" + +#: ../../include/conversation.php:1715 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Ikke bestemt" +msgstr[1] "Ikke bestemt" + +#: ../../include/conversation.php:1718 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Enig" +msgstr[1] "Enige" + +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Uenig" +msgstr[1] "Uenige" + +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Avstår" +msgstr[1] "Avstår" + +#: ../../include/api.php:1290 msgid "Public Timeline" msgstr "Offentlig tidslinje" -#: ../../include/network.php:620 -msgid "view full size" -msgstr "vis full størrelse" - -#: ../../include/dir_fns.php:134 -msgid "Directory Options" -msgstr "Kataloginnstillinger" - -#: ../../include/dir_fns.php:135 -msgid "Alphabetic" -msgstr "Alfabetisk" - -#: ../../include/dir_fns.php:136 -msgid "Reverse Alphabetic" -msgstr "Omvendt alfabetisk" - -#: ../../include/dir_fns.php:137 -msgid "Newest to Oldest" -msgstr "Nyest til eldst" - -#: ../../include/dir_fns.php:138 -msgid "Oldest to Newest" -msgstr "Eldst til nyest" - -#: ../../include/dir_fns.php:139 -msgid "Sort" -msgstr "Sorter" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Trygt modus" - -#: ../../include/dir_fns.php:145 -msgid "Public Forums Only" -msgstr "Bare offentlige forum" - -#: ../../include/dir_fns.php:146 -msgid "This Website Only" -msgstr "Kun dette nettstedet" - -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Innebygget innhold" - -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Innbygging avskrudd" - -#: ../../include/zot.php:679 -msgid "Invalid data packet" -msgstr "Ugyldig datapakke" - -#: ../../include/zot.php:695 -msgid "Unable to verify channel signature" -msgstr "Ikke i stand til å sjekke kanalsignaturen" - -#: ../../include/zot.php:2079 +#: ../../include/photos.php:109 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Ikke i stand til å bekrefte signaturen til %s" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "Logget ut." +#: ../../include/photos.php:116 +msgid "Image file is empty." +msgstr "Bildefilen er tom." -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Mislykket autentisering" +#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 +msgid "Unable to process image" +msgstr "Kan ikke behandle bildet" -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Innlogging mislyktes." +#: ../../include/photos.php:219 +msgid "Photo storage failed." +msgstr "Bildelagring mislyktes." -#: ../../include/enotify.php:41 -msgid "Hubzilla Notification" -msgstr "Hubzilla-varsling" +#: ../../include/photos.php:426 +msgid "Upload New Photos" +msgstr "Last opp nye bilder" -#: ../../include/enotify.php:42 -msgid "hubzilla" -msgstr "hubzilla" +#: ../../include/enotify.php:57 ../../include/network.php:1613 +msgid "$Projectname Notification" +msgstr "$Projectname varsling" -#: ../../include/enotify.php:44 +#: ../../include/enotify.php:58 ../../include/network.php:1614 +msgid "$projectname" +msgstr "$projectname" + +#: ../../include/enotify.php:60 ../../include/network.php:1616 msgid "Thank You," msgstr "Tusen takk," -#: ../../include/enotify.php:46 +#: ../../include/enotify.php:62 ../../include/network.php:1618 #, php-format msgid "%s Administrator" msgstr "%s administrator" -#: ../../include/enotify.php:81 +#: ../../include/enotify.php:96 #, php-format msgid "%s " msgstr "%s " -#: ../../include/enotify.php:85 +#: ../../include/enotify.php:100 #, php-format msgid "[Red:Notify] New mail received at %s" msgstr "[Red:Notify] Ny melding mottatt hos %s" -#: ../../include/enotify.php:87 +#: ../../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/enotify.php:88 +#: ../../include/enotify.php:103 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sendte deg %2$s." -#: ../../include/enotify.php:88 +#: ../../include/enotify.php:103 msgid "a private message" msgstr "en privat melding" -#: ../../include/enotify.php:89 +#: ../../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/enotify.php:144 +#: ../../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/enotify.php:152 +#: ../../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/enotify.php:161 +#: ../../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/enotify.php:172 +#: ../../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/enotify.php:173 +#: ../../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/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 +#: ../../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/enotify.php:182 +#: ../../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/enotify.php:184 +#: ../../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/enotify.php:186 +#: ../../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/enotify.php:210 +#: ../../include/enotify.php:224 #, php-format msgid "[Red:Notify] %s tagged you" msgstr "[Red:Notify] %s merket deg" -#: ../../include/enotify.php:211 +#: ../../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/enotify.php:212 +#: ../../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/enotify.php:225 +#: ../../include/enotify.php:238 #, php-format msgid "[Red:Notify] %1$s poked you" msgstr "[Red:Notify] %1$s prikket deg" -#: ../../include/enotify.php:226 +#: ../../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/enotify.php:227 +#: ../../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/enotify.php:243 +#: ../../include/enotify.php:256 #, php-format msgid "[Red:Notify] %s tagged your post" msgstr "[Red:Notify] %s merket ditt innlegg" -#: ../../include/enotify.php:244 +#: ../../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/enotify.php:245 +#: ../../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/enotify.php:257 +#: ../../include/enotify.php:270 msgid "[Red:Notify] Introduction received" msgstr "[Red:Notify] Introduksjon mottatt" -#: ../../include/enotify.php:258 +#: ../../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/enotify.php:259 +#: ../../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/enotify.php:263 ../../include/enotify.php:282 +#: ../../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/enotify.php:265 +#: ../../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/enotify.php:272 +#: ../../include/enotify.php:285 msgid "[Red:Notify] Friend suggestion received" msgstr "[Red:Notify] Venneforslag mottatt" -#: ../../include/enotify.php:273 +#: ../../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/enotify.php:274 +#: ../../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/enotify.php:280 +#: ../../include/enotify.php:293 msgid "Name:" msgstr "Navn:" -#: ../../include/enotify.php:281 +#: ../../include/enotify.php:294 msgid "Photo:" msgstr "Bilde:" -#: ../../include/enotify.php:284 +#: ../../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/enotify.php:499 +#: ../../include/enotify.php:508 msgid "[Red:Notify]" msgstr "[Red:Notify]" -#: ../../include/contact_widgets.php:14 +#: ../../include/network.php:635 +msgid "view full size" +msgstr "vis full størrelse" + +#: ../../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/bookmarks.php:35 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitasjon tilgjengelig" -msgstr[1] "%d invitasjoner tilgjengelig" +msgid "%1$s's bookmarks" +msgstr "%1$s sine bokmerker" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 -msgid "Advanced" -msgstr "Avansert" +#: ../../include/text.php:391 +msgid "prev" +msgstr "forrige" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Finn kanaler" +#: ../../include/text.php:393 +msgid "first" +msgstr "første" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Skriv navn eller interesse" +#: ../../include/text.php:422 +msgid "last" +msgstr "siste" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Forbindelse/Følg" +#: ../../include/text.php:425 +msgid "next" +msgstr "neste" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Eksempler: Ola Nordmann, fisking" +#: ../../include/text.php:435 +msgid "older" +msgstr "eldre" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:349 ../../mod/directory.php:354 -msgid "Find" -msgstr "Finn" +#: ../../include/text.php:437 +msgid "newer" +msgstr "nyere" -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:353 -#: ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "Kanalforslag" +#: ../../include/text.php:775 +msgid "No connections" +msgstr "Ingen forbindelser" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Tilfeldig profil" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Inviter venner" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Avansert eksempel: navn=fred og land=island" - -#: ../../include/contact_widgets.php:125 +#: ../../include/text.php:787 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d forbindelse felles" -msgstr[1] "%d forbindelser felles" +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d forbindelse" +msgstr[1] "%d forbindelser" -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "vis mer" +#: ../../include/text.php:800 ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "Vis forbindelser" -#: ../../include/acl_selectors.php:240 +#: ../../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/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/text.php:933 +msgid "poke" +msgstr "prikk" + +#: ../../include/text.php:934 +msgid "ping" +msgstr "varsle" + +#: ../../include/text.php:934 +msgid "pinged" +msgstr "varslet" + +#: ../../include/text.php:935 +msgid "prod" +msgstr "oppildne" + +#: ../../include/text.php:935 +msgid "prodded" +msgstr "oppildnet" + +#: ../../include/text.php:936 +msgid "slap" +msgstr "daske" + +#: ../../include/text.php:936 +msgid "slapped" +msgstr "dasket" + +#: ../../include/text.php:937 +msgid "finger" +msgstr "fingre" + +#: ../../include/text.php:937 +msgid "fingered" +msgstr "fingret" + +#: ../../include/text.php:938 +msgid "rebuff" +msgstr "tilbakevise" + +#: ../../include/text.php:938 +msgid "rebuffed" +msgstr "tilbakeviste" + +#: ../../include/text.php:948 +msgid "happy" +msgstr "glad" + +#: ../../include/text.php:949 +msgid "sad" +msgstr "trist" + +#: ../../include/text.php:950 +msgid "mellow" +msgstr "dempet" + +#: ../../include/text.php:951 +msgid "tired" +msgstr "trøtt" + +#: ../../include/text.php:952 +msgid "perky" +msgstr "oppkvikket" + +#: ../../include/text.php:953 +msgid "angry" +msgstr "sint" + +#: ../../include/text.php:954 +msgid "stupified" +msgstr "sløvet" + +#: ../../include/text.php:955 +msgid "puzzled" +msgstr "forundret" + +#: ../../include/text.php:956 +msgid "interested" +msgstr "interessert" + +#: ../../include/text.php:957 +msgid "bitter" +msgstr "bitter" + +#: ../../include/text.php:958 +msgid "cheerful" +msgstr "munter" + +#: ../../include/text.php:959 +msgid "alive" +msgstr "levende" + +#: ../../include/text.php:960 +msgid "annoyed" +msgstr "irritert" + +#: ../../include/text.php:961 +msgid "anxious" +msgstr "nervøs" + +#: ../../include/text.php:962 +msgid "cranky" +msgstr "gretten" + +#: ../../include/text.php:963 +msgid "disturbed" +msgstr "foruroliget" + +#: ../../include/text.php:964 +msgid "frustrated" +msgstr "frustrert" + +#: ../../include/text.php:965 +msgid "depressed" +msgstr "lei seg" + +#: ../../include/text.php:966 +msgid "motivated" +msgstr "motivert" + +#: ../../include/text.php:967 +msgid "relaxed" +msgstr "avslappet" + +#: ../../include/text.php:968 +msgid "surprised" +msgstr "overrasket" + +#: ../../include/text.php:1144 +msgid "May" +msgstr "mai" + +#: ../../include/text.php:1247 +msgid "unknown.???" +msgstr "ukjent.???" + +#: ../../include/text.php:1248 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1284 +msgid "remove category" +msgstr "fjern kategori" + +#: ../../include/text.php:1359 +msgid "remove from file" +msgstr "fjern fra fil" + +#: ../../include/text.php:1443 ../../include/text.php:1454 +msgid "Click to open/close" +msgstr "Klikk for å åpne/lukke" + +#: ../../include/text.php:1609 ../../mod/events.php:497 +msgid "Link to Source" +msgstr "Lenke til kilde" + +#: ../../include/text.php:1630 ../../include/text.php:1701 +msgid "default" +msgstr "standard" + +#: ../../include/text.php:1638 +msgid "Page layout" +msgstr "Sidens layout" + +#: ../../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/text.php:1679 +msgid "Page content type" +msgstr "Sidens innholdstype" + +#: ../../include/text.php:1713 +msgid "Select an alternate language" +msgstr "Velg et annet språk" + +#: ../../include/text.php:1845 +msgid "activity" +msgstr "aktivitet" + +#: ../../include/text.php:2140 +msgid "Design Tools" +msgstr "Designverktøy" + +#: ../../include/text.php:2143 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Byggeklosser" + +#: ../../include/text.php:2144 ../../mod/menu.php:103 +msgid "Menus" +msgstr "Menyer" + +#: ../../include/text.php:2145 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Layout" + +#: ../../include/text.php:2146 +msgid "Pages" +msgstr "Sider" + +#: ../../include/acl_selectors.php:239 msgid "Visible to your default audience" msgstr "Synlig for ditt standard publikum" -#: ../../include/acl_selectors.php:241 +#: ../../include/acl_selectors.php:240 msgid "Show" msgstr "Vis" -#: ../../include/acl_selectors.php:242 +#: ../../include/acl_selectors.php:241 msgid "Don't show" msgstr "Ikke vis" -#: ../../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 +#: ../../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/photos.php:86 +#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:361 +#: ../../mod/photos.php:1179 +msgid "Close" +msgstr "Lukk" + +#: ../../include/attach.php:243 ../../include/attach.php:329 +msgid "Item was not found." +msgstr "Elementet ble ikke funnet." + +#: ../../include/attach.php:471 +msgid "No source file." +msgstr "Ingen kildefil." + +#: ../../include/attach.php:489 +msgid "Cannot locate file to replace" +msgstr "Kan ikke finne filen som skal byttes ut" + +#: ../../include/attach.php:507 +msgid "Cannot locate file to revise/update" +msgstr "Finner ikke filen som skal revideres/oppdateres" + +#: ../../include/attach.php:632 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" +msgid "File exceeds size limit of %d" +msgstr "Filens størrelse overgår grensen på %d" -#: ../../include/photos.php:93 -msgid "Image file is empty." -msgstr "Bildefilen er tom." +#: ../../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/photos.php:121 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Kan ikke behandle bildet" +#: ../../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/photos.php:194 -msgid "Photo storage failed." -msgstr "Bildelagring mislyktes." +#: ../../include/attach.php:806 +msgid "Stored file could not be verified. Upload failed." +msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." -#: ../../include/photos.php:360 -msgid "Upload New Photos" -msgstr "Last opp nye bilder" +#: ../../include/attach.php:854 ../../include/attach.php:870 +msgid "Path not available." +msgstr "Stien er ikke tilgjengelig." + +#: ../../include/attach.php:916 ../../include/attach.php:1069 +msgid "Empty pathname" +msgstr "Tomt sti-navn" + +#: ../../include/attach.php:942 +msgid "duplicate filename or path" +msgstr "duplikat av filnavn eller sti" + +#: ../../include/attach.php:965 +msgid "Path not found." +msgstr "Stien ble ikke funnet." + +#: ../../include/attach.php:1023 +msgid "mkdir failed." +msgstr "mkdir mislyktes." + +#: ../../include/attach.php:1027 +msgid "database storage failed." +msgstr "databaselagring mislyktes." + +#: ../../include/attach.php:1075 +msgid "Empty path" +msgstr "Tom sti" + +#: ../../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/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "Kanalkloning mislyktes. Import mislyktes." + +#: ../../include/import.php:80 ../../mod/import.php:138 +msgid "Cloned channel not found. Import failed." +msgstr "Klonet kanal ble ikke funnet. Import mislyktes." + +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "laget et nytt innlegg" + +#: ../../include/notify.php:21 +#, php-format +msgid "commented on %s's post" +msgstr "kommenterte på %s sitt innlegg" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Ny side" + +#: ../../include/page_widgets.php:39 ../../mod/layouts.php:188 +#: ../../mod/webpages.php:187 ../../mod/blocks.php:159 +msgid "View" +msgstr "Vis" + +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Handlinger" + +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Sidelenke" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Tittel" + +#: ../../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/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/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/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:93 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 msgid "Male" msgstr "Mannlig" #: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:95 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 msgid "Female" msgstr "Kvinnelig" @@ -3149,13 +2478,6 @@ msgstr "Intetkjønn" msgid "Non-specific" msgstr "Ubestemt" -#: ../../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/profile_selectors.php:6 msgid "Undecided" msgstr "Ubestemt" @@ -3252,6 +2574,15 @@ msgstr "Utro" msgid "Sex Addict" msgstr "Sexavhengig" +#: ../../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/profile_selectors.php:80 msgid "Friends/Benefits" msgstr "Venner med frynsegoder" @@ -3342,6 +2673,56 @@ msgstr "Bryr meg ikke" msgid "Ask me" msgstr "Spør meg" +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Innebygget innhold" + +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Innbygging avskrudd" + +#: ../../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/event.php:30 ../../include/bb2diaspora.php:465 +msgid "Starts:" +msgstr "Starter:" + +#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 +msgid "Finishes:" +msgstr "Slutter:" + +#: ../../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/event.php:766 +msgid "This event has been added to your calendar." +msgstr "Denne hendelsen er lagt til i din kalender." + +#: ../../include/event.php:953 +msgid "Not specified" +msgstr "Ikke spesifisert" + +#: ../../include/event.php:954 +msgid "Needs Action" +msgstr "Trenger handling" + +#: ../../include/event.php:955 +msgid "Completed" +msgstr "Ferdig" + +#: ../../include/event.php:956 +msgid "In Process" +msgstr "Igang" + +#: ../../include/event.php:957 +msgid "Cancelled" +msgstr "Avbrutt" + #: ../../include/apps.php:128 msgid "Site Admin" msgstr "Nettstedsadministrator" @@ -3350,10 +2731,59 @@ msgstr "Nettstedsadministrator" msgid "Address Book" msgstr "Adressebok" -#: ../../include/apps.php:144 ../../mod/mood.php:130 +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1497 +msgid "Login" +msgstr "Logg inn" + +#: ../../include/apps.php:132 ../../include/nav.php:200 +#: ../../mod/manage.php:160 +msgid "Channel Manager" +msgstr "Kanalstyring" + +#: ../../include/apps.php:133 +msgid "Matrix" +msgstr "Matrix" + +#: ../../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/apps.php:137 ../../include/nav.php:177 +msgid "Channel Home" +msgstr "Kanalhjem" + +#: ../../include/apps.php:138 ../../include/identity.php:1226 +#: ../../include/identity.php:1343 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" + +#: ../../include/apps.php:140 ../../include/nav.php:196 +#: ../../mod/events.php:526 +msgid "Events" +msgstr "Hendelser" + +#: ../../include/apps.php:141 ../../include/nav.php:162 +msgid "Directory" +msgstr "Katalog" + +#: ../../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/apps.php:143 ../../include/nav.php:188 +msgid "Mail" +msgstr "Melding" + +#: ../../include/apps.php:144 ../../mod/mood.php:131 msgid "Mood" msgstr "Stemning" +#: ../../include/apps.php:146 ../../include/nav.php:97 +msgid "Chat" +msgstr "Chat" + #: ../../include/apps.php:148 msgid "Probe" msgstr "Undersøk" @@ -3374,7 +2804,7 @@ msgstr "Inviter" msgid "Features" msgstr "Funksjoner" -#: ../../include/apps.php:153 ../../mod/id.php:25 +#: ../../include/apps.php:153 ../../mod/id.php:28 msgid "Language" msgstr "Språk" @@ -3382,13 +2812,13 @@ msgstr "Språk" msgid "Post" msgstr "Innlegg" -#: ../../include/apps.php:155 ../../mod/id.php:14 ../../mod/id.php:15 -#: ../../mod/id.php:16 +#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 +#: ../../mod/id.php:19 msgid "Profile Photo" msgstr "Profilbilde" #: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:608 +#: ../../mod/settings.php:609 msgid "Update" msgstr "Oppdater" @@ -3400,507 +2830,4584 @@ msgstr "Installer" msgid "Purchase" msgstr "Kjøp" -#: ../../include/text.php:318 -msgid "prev" -msgstr "forrige" +#: ../../include/auth.php:131 +msgid "Logged out." +msgstr "Logget ut." -#: ../../include/text.php:320 -msgid "first" -msgstr "første" +#: ../../include/auth.php:272 +msgid "Failed authentication" +msgstr "Mislykket autentisering" -#: ../../include/text.php:349 -msgid "last" -msgstr "siste" +#: ../../include/auth.php:286 ../../mod/openid.php:189 +msgid "Login failed." +msgstr "Innlogging mislyktes." -#: ../../include/text.php:352 -msgid "next" -msgstr "neste" +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" +msgstr "Vedlegg:" -#: ../../include/text.php:362 -msgid "older" -msgstr "eldre" +#: ../../include/bb2diaspora.php:461 +msgid "$Projectname event notification:" +msgstr "$Projectname hendelsesvarsling:" -#: ../../include/text.php:364 -msgid "newer" -msgstr "nyere" +#: ../../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/text.php:748 -msgid "No connections" -msgstr "Ingen forbindelser" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:843 +msgid "Encrypted content" +msgstr "Kryptert innhold" -#: ../../include/text.php:762 +#: ../../include/bbcode.php:179 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d forbindelse" -msgstr[1] "%d forbindelser" +msgid "Install %s element: " +msgstr "Installer %s element:" -#: ../../include/text.php:775 ../../mod/viewconnections.php:86 -msgid "View Connections" -msgstr "Vis forbindelser" - -#: ../../include/text.php:911 -msgid "poke" -msgstr "prikk" - -#: ../../include/text.php:912 -msgid "ping" -msgstr "varsle" - -#: ../../include/text.php:912 -msgid "pinged" -msgstr "varslet" - -#: ../../include/text.php:913 -msgid "prod" -msgstr "oppildne" - -#: ../../include/text.php:913 -msgid "prodded" -msgstr "oppildnet" - -#: ../../include/text.php:914 -msgid "slap" -msgstr "daske" - -#: ../../include/text.php:914 -msgid "slapped" -msgstr "dasket" - -#: ../../include/text.php:915 -msgid "finger" -msgstr "fingre" - -#: ../../include/text.php:915 -msgid "fingered" -msgstr "fingret" - -#: ../../include/text.php:916 -msgid "rebuff" -msgstr "tilbakevise" - -#: ../../include/text.php:916 -msgid "rebuffed" -msgstr "tilbakeviste" - -#: ../../include/text.php:926 -msgid "happy" -msgstr "glad" - -#: ../../include/text.php:927 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:928 -msgid "mellow" -msgstr "dempet" - -#: ../../include/text.php:929 -msgid "tired" -msgstr "trøtt" - -#: ../../include/text.php:930 -msgid "perky" -msgstr "oppkvikket" - -#: ../../include/text.php:931 -msgid "angry" -msgstr "sint" - -#: ../../include/text.php:932 -msgid "stupified" -msgstr "sløvet" - -#: ../../include/text.php:933 -msgid "puzzled" -msgstr "forundret" - -#: ../../include/text.php:934 -msgid "interested" -msgstr "interessert" - -#: ../../include/text.php:935 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:936 -msgid "cheerful" -msgstr "munter" - -#: ../../include/text.php:937 -msgid "alive" -msgstr "levende" - -#: ../../include/text.php:938 -msgid "annoyed" -msgstr "irritert" - -#: ../../include/text.php:939 -msgid "anxious" -msgstr "nervøs" - -#: ../../include/text.php:940 -msgid "cranky" -msgstr "gretten" - -#: ../../include/text.php:941 -msgid "disturbed" -msgstr "foruroliget" - -#: ../../include/text.php:942 -msgid "frustrated" -msgstr "frustrert" - -#: ../../include/text.php:943 -msgid "depressed" -msgstr "lei seg" - -#: ../../include/text.php:944 -msgid "motivated" -msgstr "motivert" - -#: ../../include/text.php:945 -msgid "relaxed" -msgstr "avslappet" - -#: ../../include/text.php:946 -msgid "surprised" -msgstr "overrasket" - -#: ../../include/text.php:1111 -msgid "Monday" -msgstr "mandag" - -#: ../../include/text.php:1111 -msgid "Tuesday" -msgstr "tirsdag" - -#: ../../include/text.php:1111 -msgid "Wednesday" -msgstr "onsdag" - -#: ../../include/text.php:1111 -msgid "Thursday" -msgstr "torsdag" - -#: ../../include/text.php:1111 -msgid "Friday" -msgstr "fredag" - -#: ../../include/text.php:1111 -msgid "Saturday" -msgstr "lørdag" - -#: ../../include/text.php:1111 -msgid "Sunday" -msgstr "søndag" - -#: ../../include/text.php:1115 -msgid "January" -msgstr "januar" - -#: ../../include/text.php:1115 -msgid "February" -msgstr "februar" - -#: ../../include/text.php:1115 -msgid "March" -msgstr "mars" - -#: ../../include/text.php:1115 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1115 -msgid "May" -msgstr "mai" - -#: ../../include/text.php:1115 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1115 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1115 -msgid "August" -msgstr "august" - -#: ../../include/text.php:1115 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1115 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1115 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1115 -msgid "December" -msgstr "desember" - -#: ../../include/text.php:1193 -msgid "unknown.???" -msgstr "ukjent.???" - -#: ../../include/text.php:1194 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1230 -msgid "remove category" -msgstr "fjern kategori" - -#: ../../include/text.php:1299 -msgid "remove from file" -msgstr "fjern fra fil" - -#: ../../include/text.php:1375 ../../include/text.php:1386 -#: ../../mod/connedit.php:635 -msgid "Click to open/close" -msgstr "Klikk for å åpne/lukke" - -#: ../../include/text.php:1534 ../../mod/events.php:444 -msgid "Link to Source" -msgstr "Lenke til kilde" - -#: ../../include/text.php:1553 -msgid "Select a page layout: " -msgstr "Velg en side-layout:" - -#: ../../include/text.php:1556 ../../include/text.php:1616 -msgid "default" -msgstr "standard" - -#: ../../include/text.php:1589 -msgid "Page content type: " -msgstr "Sidens innholdstype:" - -#: ../../include/text.php:1628 -msgid "Select an alternate language" -msgstr "Velg et annet språk" - -#: ../../include/text.php:1760 -msgid "activity" -msgstr "aktivitet" - -#: ../../include/text.php:2047 -msgid "Design" -msgstr "Formgivning" - -#: ../../include/text.php:2050 -msgid "Blocks" -msgstr "Byggeklosser" - -#: ../../include/text.php:2051 -msgid "Menus" -msgstr "Menyer" - -#: ../../include/text.php:2052 -msgid "Layouts" -msgstr "Layout" - -#: ../../include/text.php:2053 -msgid "Pages" -msgstr "Sider" - -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Mangler romnavn" - -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Duplikat romnavn" - -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Ugyldig rom-spesifisering" - -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Rommet ble ikke funnet." - -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "Rommet er fullt" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan se min normale strøm og innlegg" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan se min standard kanalprofil" - -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kan se mine fotoalbum" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kan se mine forbindelser" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kan se mitt fillager" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kan se mine websider" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Kan sende meg deres kanalstrøm og innlegg" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan lage innlegg på min kanalside (\"vegg\")" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Kan kommentere på eller like mine innlegg" - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kan sende meg private meldinger" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kan legge inn bilder i mine fotoalbum" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kan like/ikke like forskjellige greier" - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profiler og andre ting enn innlegg/kommentarer" - -#: ../../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/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avansert - nyttig for å lage forumkanaler for grupper" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kan skrive til mitt fillager" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kan endre mine websider" - -#: ../../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/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Litt avansert - svært nyttig i åpne fellesskap" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kan administrere mine kanalressurser" - -#: ../../include/permissions.php:48 +#: ../../include/bbcode.php:183 +#, php-format 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" +"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/permissions.php:810 -msgid "Social Networking" -msgstr "Sosialt nettverk" +#: ../../include/bbcode.php:193 ../../mod/impel.php:37 +msgid "webpage" +msgstr "nettside" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Ganske offentlig" +#: ../../include/bbcode.php:196 ../../mod/impel.php:47 +msgid "layout" +msgstr "layout" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Begrenset" +#: ../../include/bbcode.php:199 ../../mod/impel.php:42 +msgid "block" +msgstr "byggekloss" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Privat" +#: ../../include/bbcode.php:202 ../../mod/impel.php:54 +msgid "menu" +msgstr "meny" -#: ../../include/permissions.php:811 -msgid "Community Forum" -msgstr "Forum for fellesskap" +#: ../../include/bbcode.php:257 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s skrev følgende %2$s %3$s" -#: ../../include/permissions.php:812 -msgid "Feed Republish" -msgstr "Republisering av strømmet innhold" +#: ../../include/bbcode.php:259 ../../mod/tagger.php:51 +msgid "post" +msgstr "innlegg" -#: ../../include/permissions.php:813 -msgid "Special Purpose" -msgstr "Spesiell bruk" +#: ../../include/bbcode.php:547 +msgid "Different viewers will see this text differently" +msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" -#: ../../include/permissions.php:813 -msgid "Celebrity/Soapbox" -msgstr "Kjendis/Talerstol" +#: ../../include/bbcode.php:754 +msgid "$1 spoiler" +msgstr "$1 avsløring" -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Gruppelager" +#: ../../include/bbcode.php:781 +msgid "$1 wrote:" +msgstr "$1 skrev:" -#: ../../include/permissions.php:814 -msgid "Custom/Expert Mode" -msgstr "Tilpasset/Ekspertmodus" +#: ../../include/account.php:27 +msgid "Not a valid email address" +msgstr "Ikke en gyldig e-postadresse" + +#: ../../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/account.php:35 +msgid "Your email address is already registered at this site." +msgstr "Din e-postadresse er allerede registrert på dette nettstedet." + +#: ../../include/account.php:67 +msgid "An invitation is required." +msgstr "En invitasjon er påkrevd." + +#: ../../include/account.php:71 +msgid "Invitation could not be verified." +msgstr "Invitasjon kunne ikke bekreftes." + +#: ../../include/account.php:121 +msgid "Please enter the required information." +msgstr "Vennligst skriv inn nødvendig informasjon." + +#: ../../include/account.php:188 +msgid "Failed to store account information." +msgstr "Mislyktes med å lagre kontoinformasjon." + +#: ../../include/account.php:246 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registreringsbekreftelse for %s" + +#: ../../include/account.php:312 +#, php-format +msgid "Registration request at %s" +msgstr "Registreringsforespørsel hos %s" + +#: ../../include/account.php:336 +msgid "your registration password" +msgstr "ditt registreringspassord" + +#: ../../include/account.php:339 ../../include/account.php:399 +#, php-format +msgid "Registration details for %s" +msgstr "Registreringsdetaljer for %s" + +#: ../../include/account.php:408 +msgid "Account approved." +msgstr "Konto godkjent." + +#: ../../include/account.php:447 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrering trukket tilbake for %s" + +#: ../../include/account.php:492 +msgid "Account verified. Please login." +msgstr "Konto bekreftet. Vennligst logg inn." + +#: ../../include/account.php:705 ../../include/account.php:707 +msgid "Click here to upgrade." +msgstr "Klikk her for å oppgradere." + +#: ../../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/account.php:718 +msgid "This action is not available under your subscription plan." +msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." + +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanalen er blokkert på dette nettstedet." + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Kanalplassering mangler." + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Svaret fra den andre kanalen var ikke komplett." + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanalen er slettet og finnes ikke lenger." + +#: ../../include/follow.php:154 +msgid "Protocol disabled." +msgstr "Protokollen er avskrudd." + +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "Kanaloppdagelse mislyktes." + +#: ../../include/follow.php:186 +msgid "local account not found." +msgstr "lokal konto ble ikke funnet." + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Kan ikke lage forbindelse med deg selv." + +#: ../../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 +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitasjon tilgjengelig" +msgstr[1] "%d invitasjoner tilgjengelig" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:415 +msgid "Advanced" +msgstr "Avansert" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Finn kanaler" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Skriv navn eller interesse" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Forbindelse/Følg" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Eksempler: Ola Nordmann, fisking" + +#: ../../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:383 +#: ../../mod/suggest.php:60 +msgid "Channel Suggestions" +msgstr "Kanalforslag" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Tilfeldig profil" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Inviter venner" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Avansert eksempel: navn=fred og land=island" + +#: ../../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:133 +msgid "show more" +msgstr "vis mer" + +#: ../../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/group.php:232 +msgid "Add new connections to this collection (privacy group)" +msgstr "Legg nye forbindelser til denne samlingen (personverngruppe)" + +#: ../../include/group.php:251 ../../mod/admin.php:788 +msgid "All Channels" +msgstr "Alle kanaler" + +#: ../../include/group.php:273 +msgid "edit" +msgstr "endre" + +#: ../../include/group.php:295 +msgid "Collections" +msgstr "Samlinger" + +#: ../../include/group.php:296 +msgid "Edit collection" +msgstr "Endre samling" + +#: ../../include/group.php:297 +msgid "Add new collection" +msgstr "Legg til ny samling" + +#: ../../include/group.php:298 +msgid "Channels not in any collection" +msgstr "Kanaler som ikke er i noen samling" + +#: ../../include/group.php:300 ../../include/widgets.php:274 +msgid "add" +msgstr "legg til" + +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" +msgstr "Merkelapper" + +#: ../../include/taxonomy.php:294 +msgid "Keywords" +msgstr "Nøkkelord" + +#: ../../include/taxonomy.php:315 +msgid "have" +msgstr "har" + +#: ../../include/taxonomy.php:315 +msgid "has" +msgstr "har" + +#: ../../include/taxonomy.php:316 +msgid "want" +msgstr "ønsker" + +#: ../../include/taxonomy.php:316 +msgid "wants" +msgstr "ønsker" + +#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 +msgid "like" +msgstr "liker" + +#: ../../include/taxonomy.php:317 +msgid "likes" +msgstr "liker" + +#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "misliker" + +#: ../../include/taxonomy.php:318 +msgid "dislikes" +msgstr "misliker" + +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Kataloginnstillinger" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Trygt modus" + +#: ../../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/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/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Bare offentlige forum" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Kun dette nettstedet" + +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Mangler navn" + +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Navnet er for langt" + +#: ../../include/identity.php:181 +msgid "No account identifier" +msgstr "Ingen kontoidentifikator" + +#: ../../include/identity.php:193 +msgid "Nickname is required." +msgstr "Kallenavn er påkrevd." + +#: ../../include/identity.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Reservert kallenavn. Vennligst velg et annet." + +#: ../../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/identity.php:288 +msgid "Unable to retrieve created identity" +msgstr "Klarer ikke å hente den lagede identiteten" + +#: ../../include/identity.php:346 +msgid "Default Profile" +msgstr "Standardprofil" + +#: ../../include/identity.php:745 +msgid "Requested channel is not available." +msgstr "Forespurt kanal er ikke tilgjengelig." + +#: ../../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/identity.php:954 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Endre profilbilde" + +#: ../../include/identity.php:960 +msgid "Profiles" +msgstr "Profiler" + +#: ../../include/identity.php:960 +msgid "Manage/edit profiles" +msgstr "Håndtere/endre profiler" + +#: ../../include/identity.php:961 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Lag ny profil" + +#: ../../include/identity.php:964 ../../include/nav.php:90 +msgid "Edit Profile" +msgstr "Endre profil" + +#: ../../include/identity.php:976 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Profilbilde" + +#: ../../include/identity.php:979 +msgid "visible to everybody" +msgstr "synlig for alle" + +#: ../../include/identity.php:980 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Endre synlighet" + +#: ../../include/identity.php:996 ../../include/identity.php:1236 +msgid "Gender:" +msgstr "Kjønn:" + +#: ../../include/identity.php:997 ../../include/identity.php:1280 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:998 ../../include/identity.php:1291 +msgid "Homepage:" +msgstr "Hjemmeside:" + +#: ../../include/identity.php:999 +msgid "Online Now" +msgstr "Online nå" + +#: ../../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/identity.php:1084 ../../include/identity.php:1162 +msgid "F d" +msgstr "F d" + +#: ../../include/identity.php:1129 ../../include/identity.php:1201 +#: ../../mod/ping.php:341 +msgid "[today]" +msgstr "[idag]" + +#: ../../include/identity.php:1140 +msgid "Birthday Reminders" +msgstr "Fødselsdagspåminnnelser" + +#: ../../include/identity.php:1141 +msgid "Birthdays this week:" +msgstr "Fødselsdager denne uken:" + +#: ../../include/identity.php:1194 +msgid "[No description]" +msgstr "[Ingen beskrivelse]" + +#: ../../include/identity.php:1212 +msgid "Event Reminders" +msgstr "Hendelsespåminnelser" + +#: ../../include/identity.php:1213 +msgid "Events this week:" +msgstr "Hendelser denne uken:" + +#: ../../include/identity.php:1234 ../../mod/settings.php:1026 +msgid "Full Name:" +msgstr "Fullt navn:" + +#: ../../include/identity.php:1241 +msgid "Like this channel" +msgstr "Lik denne kanalen" + +#: ../../include/identity.php:1265 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/identity.php:1266 +msgid "j F" +msgstr "j F" + +#: ../../include/identity.php:1273 +msgid "Birthday:" +msgstr "Fødselsdag:" + +#: ../../include/identity.php:1277 ../../mod/directory.php:297 +msgid "Age:" +msgstr "Alder:" + +#: ../../include/identity.php:1286 +#, php-format +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" + +#: ../../include/identity.php:1289 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Seksuell preferanse:" + +#: ../../include/identity.php:1293 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Hjemby:" + +#: ../../include/identity.php:1295 +msgid "Tags:" +msgstr "Merkelapper:" + +#: ../../include/identity.php:1297 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Politiske synspunkter:" + +#: ../../include/identity.php:1299 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/identity.php:1301 ../../mod/directory.php:315 +msgid "About:" +msgstr "Om:" + +#: ../../include/identity.php:1303 +msgid "Hobbies/Interests:" +msgstr "Hobbyer/interesser:" + +#: ../../include/identity.php:1305 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Liker:" + +#: ../../include/identity.php:1307 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Misliker:" + +#: ../../include/identity.php:1309 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformasjon og sosiale nettverk:" + +#: ../../include/identity.php:1311 +msgid "My other channels:" +msgstr "Mine andre kanaler:" + +#: ../../include/identity.php:1313 +msgid "Musical interests:" +msgstr "Musikkinteresse:" + +#: ../../include/identity.php:1315 +msgid "Books, literature:" +msgstr "Bøker, litteratur:" + +#: ../../include/identity.php:1317 +msgid "Television:" +msgstr "TV:" + +#: ../../include/identity.php:1319 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/kultur/underholdning:" + +#: ../../include/identity.php:1321 +msgid "Love/Romance:" +msgstr "Kjærlighet/romantikk:" + +#: ../../include/identity.php:1323 +msgid "Work/employment:" +msgstr "Arbeid/sysselsetting:" + +#: ../../include/identity.php:1325 +msgid "School/education:" +msgstr "Skole/utdannelse:" + +#: ../../include/identity.php:1345 +msgid "Like this thing" +msgstr "Lik denne tingen" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Ingen mottaker angitt." + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[ikke noe emne]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kan ikke avgjøre avsender." + +#: ../../include/message.php:203 +msgid "Stored post could not be verified." +msgstr "Lagret innlegg kunne ikke bekreftes." + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "Lagre i mappe" + +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Jeg vil delta" + +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "Jeg deltar ikke" + +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Jeg vil kanskje delta" + +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Jeg er enig" + +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "Jeg er uenig" + +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Jeg avstår" + +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Legg til stjerne" + +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Fjern stjerne" + +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Skru av og på stjernestatus" + +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "stjernemerket" + +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Legg til merkelapp" + +#: ../../include/ItemObject.php:254 ../../mod/photos.php:987 +msgid "I like this (toggle)" +msgstr "Jeg liker dette (skru av og på)" + +#: ../../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/ItemObject.php:259 +msgid "Share This" +msgstr "Del dette" + +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "del" + +#: ../../include/ItemObject.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d kommentar" +msgstr[1] "%d kommentarer" + +#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 +#, php-format +msgid "View %s's profile - %s" +msgstr "Vis %s sin profil - %s" + +#: ../../include/ItemObject.php:299 +msgid "to" +msgstr "til" + +#: ../../include/ItemObject.php:300 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:301 +msgid "Wall-to-Wall" +msgstr "vegg-til-vegg" + +#: ../../include/ItemObject.php:302 +msgid "via Wall-To-Wall:" +msgstr "via vegg-til-vegg:" + +#: ../../include/ItemObject.php:305 +msgid "Delivery Report" +msgstr "Leveringsrapport" + +#: ../../include/ItemObject.php:339 +msgid "Save Bookmarks" +msgstr "Lagre bokmerker" + +#: ../../include/ItemObject.php:340 +msgid "Add to Calendar" +msgstr "Legg til i kalender" + +#: ../../include/ItemObject.php:349 +msgid "Mark all seen" +msgstr "Merk alle som sett" + +#: ../../include/ItemObject.php:355 ../../mod/photos.php:1173 +msgctxt "noun" +msgid "Likes" +msgstr "Liker" + +#: ../../include/ItemObject.php:356 ../../mod/photos.php:1174 +msgctxt "noun" +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../include/ItemObject.php:671 ../../mod/photos.php:1006 +#: ../../mod/photos.php:1124 +msgid "This is you" +msgstr "Dette er deg" + +#: ../../include/ItemObject.php:680 +msgid "Image" +msgstr "Bilde" + +#: ../../include/ItemObject.php:681 +msgid "Insert Link" +msgstr "Sett inn lenke" + +#: ../../include/ItemObject.php:682 +msgid "Video" +msgstr "Video" + +#: ../../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/items.php:1128 ../../include/items.php:1174 +msgid "(Unknown)" +msgstr "(Ukjent)" + +#: ../../include/items.php:1371 +msgid "Visible to anybody on the internet." +msgstr "Synlig for enhver på Internett." + +#: ../../include/items.php:1373 +msgid "Visible to you only." +msgstr "Synlig bare for deg." + +#: ../../include/items.php:1375 +msgid "Visible to anybody in this network." +msgstr "Synlig for enhver i dette nettverket." + +#: ../../include/items.php:1377 +msgid "Visible to anybody authenticated." +msgstr "Synlig for enhver som er autentisert." + +#: ../../include/items.php:1379 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Synlig for alle på %s." + +#: ../../include/items.php:1381 +msgid "Visible to all connections." +msgstr "Synlig for alle forbindelser." + +#: ../../include/items.php:1383 +msgid "Visible to approved connections." +msgstr "Synlig for godkjente forbindelser." + +#: ../../include/items.php:1385 +msgid "Visible to specific connections." +msgstr "Synlig for spesifikke forbindelser." + +#: ../../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/items.php:4772 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Samlingen ble ikke funnet." + +#: ../../include/items.php:4788 +msgid "Collection is empty." +msgstr "Samlingen er tom." + +#: ../../include/items.php:4795 +#, php-format +msgid "Collection: %s" +msgstr "Samling: %s" + +#: ../../include/items.php:4805 ../../mod/connedit.php:658 +#, php-format +msgid "Connection: %s" +msgstr "Forbindelse: %s" + +#: ../../include/items.php:4807 +msgid "Connection not found." +msgstr "Forbindelsen ble ikke funnet." + +#: ../../include/widgets.php:91 ../../include/nav.php:157 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Apper" + +#: ../../include/widgets.php:92 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Lag personlig app" + +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Endre personlig app" + +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "Ignorer/Skjul" + +#: ../../include/widgets.php:143 ../../mod/connections.php:125 +msgid "Suggestions" +msgstr "Forslag" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Se mer..." + +#: ../../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/widgets.php:171 +msgid "Add New Connection" +msgstr "Legg til ny forbindelse" + +#: ../../include/widgets.php:172 +msgid "Enter the channel address" +msgstr "Skriv kanal-adressen" + +#: ../../include/widgets.php:173 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Eksempel: ola.nordmann@eksempel.no, http://eksempel.no/karinordmann" + +#: ../../include/widgets.php:189 +msgid "Notes" +msgstr "Merknader" + +#: ../../include/widgets.php:265 +msgid "Remove term" +msgstr "Fjern begrep" + +#: ../../include/widgets.php:348 +msgid "Archives" +msgstr "Arkiv" + +#: ../../include/widgets.php:427 ../../mod/connedit.php:567 +msgid "Me" +msgstr "Meg" + +#: ../../include/widgets.php:428 ../../mod/connedit.php:568 +msgid "Family" +msgstr "Familie" + +#: ../../include/widgets.php:430 ../../mod/connedit.php:570 +msgid "Acquaintances" +msgstr "Bekjente" + +#: ../../include/widgets.php:431 ../../mod/connedit.php:571 +#: ../../mod/connections.php:88 ../../mod/connections.php:103 +msgid "All" +msgstr "Alle" + +#: ../../include/widgets.php:450 +msgid "Refresh" +msgstr "Forny" + +#: ../../include/widgets.php:484 +msgid "Account settings" +msgstr "Kontoinnstillinger" + +#: ../../include/widgets.php:490 +msgid "Channel settings" +msgstr "Kanalinnstillinger" + +#: ../../include/widgets.php:496 +msgid "Additional features" +msgstr "Tilleggsfunksjoner" + +#: ../../include/widgets.php:502 +msgid "Feature/Addon settings" +msgstr "Funksjons-/Tilleggsinnstillinger" + +#: ../../include/widgets.php:508 +msgid "Display settings" +msgstr "Visningsinnstillinger" + +#: ../../include/widgets.php:514 +msgid "Connected apps" +msgstr "Tilkoblede app-er" + +#: ../../include/widgets.php:520 +msgid "Export channel" +msgstr "Eksporter kanal" + +#: ../../include/widgets.php:529 ../../mod/connedit.php:658 +msgid "Connection Default Permissions" +msgstr "Forbindelsens standard tillatelser" + +#: ../../include/widgets.php:537 +msgid "Premium Channel Settings" +msgstr "Premiumkanal-innstillinger" + +#: ../../include/widgets.php:567 +msgid "Private Mail Menu" +msgstr "Meny for privat post" + +#: ../../include/widgets.php:569 +msgid "Check Mail" +msgstr "Sjekk meldinger" + +#: ../../include/widgets.php:575 +msgid "Combined View" +msgstr "Kombinert visning" + +#: ../../include/widgets.php:580 ../../include/nav.php:191 +msgid "Inbox" +msgstr "Innboks" + +#: ../../include/widgets.php:585 ../../include/nav.php:192 +msgid "Outbox" +msgstr "Utboks" + +#: ../../include/widgets.php:590 ../../include/nav.php:193 +msgid "New Message" +msgstr "Ny melding" + +#: ../../include/widgets.php:609 ../../include/widgets.php:621 +msgid "Conversations" +msgstr "Samtaler" + +#: ../../include/widgets.php:613 +msgid "Received Messages" +msgstr "Mottatte meldinger" + +#: ../../include/widgets.php:617 +msgid "Sent Messages" +msgstr "Sendte meldinger" + +#: ../../include/widgets.php:631 +msgid "No messages." +msgstr "Ingen meldinger." + +#: ../../include/widgets.php:648 +msgid "Delete conversation" +msgstr "Slett samtale" + +#: ../../include/widgets.php:650 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../include/widgets.php:738 +msgid "Chat Rooms" +msgstr "Chatrom" + +#: ../../include/widgets.php:758 +msgid "Bookmarked Chatrooms" +msgstr "Bokmerkede chatrom" + +#: ../../include/widgets.php:778 +msgid "Suggested Chatrooms" +msgstr "Foreslåtte chatrom" + +#: ../../include/widgets.php:905 ../../include/widgets.php:963 +msgid "photo/image" +msgstr "foto/bilde" + +#: ../../include/widgets.php:1058 ../../include/widgets.php:1060 +msgid "Rate Me" +msgstr "Vurder meg" + +#: ../../include/widgets.php:1064 +msgid "View Ratings" +msgstr "Vis vurderinger" + +#: ../../include/widgets.php:1075 +msgid "Public Hubs" +msgstr "Offentlige huber" + +#: ../../include/widgets.php:1123 +msgid "Forums" +msgstr "Forum" + +#: ../../include/widgets.php:1150 +msgid "Tasks" +msgstr "Oppgaver" + +#: ../../include/widgets.php:1159 +msgid "Documentation" +msgstr "Dokumentasjon" + +#: ../../include/widgets.php:1161 +msgid "Project/Site Information" +msgstr "Prosjekt-/Nettstedsinformasjon" + +#: ../../include/widgets.php:1162 +msgid "For Members" +msgstr "For medlemmer" + +#: ../../include/widgets.php:1163 +msgid "For Administrators" +msgstr "For administratorer" + +#: ../../include/widgets.php:1164 +msgid "For Developers" +msgstr "For utviklere" + +#: ../../include/widgets.php:1189 ../../mod/admin.php:410 +msgid "Site" +msgstr "Nettsted" + +#: ../../include/widgets.php:1190 +msgid "Accounts" +msgstr "Kontoer" + +#: ../../include/widgets.php:1191 ../../mod/admin.php:939 +msgid "Channels" +msgstr "Kanaler" + +#: ../../include/widgets.php:1192 ../../mod/admin.php:1031 +#: ../../mod/admin.php:1071 +msgid "Plugins" +msgstr "Tilleggsfunksjoner" + +#: ../../include/widgets.php:1193 ../../mod/admin.php:1231 +#: ../../mod/admin.php:1265 +msgid "Themes" +msgstr "Temaer" + +#: ../../include/widgets.php:1194 +msgid "Inspect queue" +msgstr "Inspiser kø" + +#: ../../include/widgets.php:1195 +msgid "Profile Config" +msgstr "Profilinnstillinger" + +#: ../../include/widgets.php:1196 +msgid "DB updates" +msgstr "Databaseoppdateringer" + +#: ../../include/widgets.php:1214 ../../include/widgets.php:1220 +#: ../../mod/admin.php:1350 +msgid "Logs" +msgstr "Logger" + +#: ../../include/widgets.php:1218 ../../include/nav.php:210 +msgid "Admin" +msgstr "Administrator" + +#: ../../include/widgets.php:1219 +msgid "Plugin Features" +msgstr "Tilleggsfunksjoner" + +#: ../../include/widgets.php:1221 +msgid "User registrations waiting for confirmation" +msgstr "Brukerregistreringer som venter på bekreftelse" + +#: ../../include/zot.php:677 +msgid "Invalid data packet" +msgstr "Ugyldig datapakke" + +#: ../../include/zot.php:693 +msgid "Unable to verify channel signature" +msgstr "Ikke i stand til å sjekke kanalsignaturen" + +#: ../../include/zot.php:2213 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Ikke i stand til å bekrefte signaturen til %s" + +#: ../../include/zot.php:3511 +msgid "invalid target signature" +msgstr "Målets signatur er ugyldig" + +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1496 +msgid "Logout" +msgstr "Logg ut" + +#: ../../include/nav.php:82 ../../include/nav.php:114 +msgid "End this session" +msgstr "Avslutt denne økten" + +#: ../../include/nav.php:85 ../../include/nav.php:145 +msgid "Home" +msgstr "Hjem" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Dine innlegg og samtaler" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Din profilside" + +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Endre profiler" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Håndter/endre profiler" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Endre din profil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Dine bilder" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Dine filer" + +#: ../../include/nav.php:97 +msgid "Your chatrooms" +msgstr "Dine chatterom" + +#: ../../include/nav.php:103 +msgid "Your bookmarks" +msgstr "Dine bokmerker" + +#: ../../include/nav.php:107 +msgid "Your webpages" +msgstr "Dine websider" + +#: ../../include/nav.php:111 +msgid "Sign in" +msgstr "Logg på" + +#: ../../include/nav.php:128 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klikk for å logge ut" + +#: ../../include/nav.php:131 +msgid "Remote authentication" +msgstr "Fjernautentisering" + +#: ../../include/nav.php:131 +msgid "Click to authenticate to your home hub" +msgstr "Klikk for å godkjennes mot din hjemme-hub" + +#: ../../include/nav.php:145 +msgid "Home Page" +msgstr "Hjemmeside" + +#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1473 +msgid "Register" +msgstr "Registrer" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Lag en konto" + +#: ../../include/nav.php:154 +msgid "Help and documentation" +msgstr "Hjelp og dokumentasjon" + +#: ../../include/nav.php:157 +msgid "Applications, utilities, links, games" +msgstr "Programmer, verktøy, lenker, spill" + +#: ../../include/nav.php:159 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" + +#: ../../include/nav.php:162 +msgid "Channel Directory" +msgstr "Kanalkatalog" + +#: ../../include/nav.php:174 +msgid "Grid" +msgstr "Nett" + +#: ../../include/nav.php:174 +msgid "Your grid" +msgstr "Ditt nett" + +#: ../../include/nav.php:175 +msgid "Mark all grid notifications seen" +msgstr "Marker alle nettvarsler som sett" + +#: ../../include/nav.php:177 +msgid "Channel home" +msgstr "Kanalhjem" + +#: ../../include/nav.php:178 +msgid "Mark all channel notifications seen" +msgstr "Merk alle kanalvarsler som sett" + +#: ../../include/nav.php:181 ../../mod/connections.php:260 +msgid "Connections" +msgstr "Forbindelser" + +#: ../../include/nav.php:184 +msgid "Notices" +msgstr "Varsel" + +#: ../../include/nav.php:184 +msgid "Notifications" +msgstr "Varsler" + +#: ../../include/nav.php:185 +msgid "See all notifications" +msgstr "Se alle varsler" + +#: ../../include/nav.php:186 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Merk alle systemvarsler som sett" + +#: ../../include/nav.php:188 +msgid "Private mail" +msgstr "Privat post" + +#: ../../include/nav.php:189 +msgid "See all private messages" +msgstr "Se alle private meldinger" + +#: ../../include/nav.php:190 +msgid "Mark all private messages seen" +msgstr "Merk alle private meldinger som sett" + +#: ../../include/nav.php:196 +msgid "Event Calendar" +msgstr "Kalender" + +#: ../../include/nav.php:197 +msgid "See all events" +msgstr "Se alle hendelser" + +#: ../../include/nav.php:198 +msgid "Mark all events seen" +msgstr "Merk alle hendelser som sett" + +#: ../../include/nav.php:200 +msgid "Manage Your Channels" +msgstr "Håndter dine kanaler" + +#: ../../include/nav.php:202 +msgid "Account/Channel Settings" +msgstr "Konto-/kanal-innstillinger" + +#: ../../include/nav.php:210 +msgid "Site Setup and Configuration" +msgstr "Nettstedsoppsett og -konfigurasjon" + +#: ../../include/nav.php:246 +msgid "@name, #tag, ?doc, content" +msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" + +#: ../../include/nav.php:247 +msgid "Please wait..." +msgstr "Vennligst vent..." #: ../../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/manage.php:136 +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakten ble ikke funnet." + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Venneforespørsel sendt." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Foreslå venner" + +#: ../../mod/fsuggest.php:99 #, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." +msgid "Suggest a friend for %s" +msgstr "Foreslå en venn for %s" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Lag en ny kanal" +#: ../../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/manage.php:165 -msgid "Current Channel" -msgstr "Gjeldende kanal" - -#: ../../mod/manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Bytt til en av dine kanaler ved å velge den." - -#: ../../mod/manage.php:168 -msgid "Default Channel" -msgstr "Standardkanal" - -#: ../../mod/manage.php:169 -msgid "Make Default" -msgstr "Gjør til standard" - -#: ../../mod/manage.php:172 +#: ../../mod/directory.php:234 #, php-format -msgid "%d new messages" -msgstr "%d nye meldinger" +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d vurdering" +msgstr[1] "%d vurderinger" -#: ../../mod/manage.php:173 +#: ../../mod/directory.php:245 +msgid "Gender: " +msgstr "Kjønn:" + +#: ../../mod/directory.php:247 +msgid "Status: " +msgstr "Status:" + +#: ../../mod/directory.php:249 +msgid "Homepage: " +msgstr "Hjemmeside:" + +#: ../../mod/directory.php:308 ../../mod/events.php:699 +msgid "Description:" +msgstr "Beskrivelse:" + +#: ../../mod/directory.php:317 +msgid "Public Forum:" +msgstr "Offentlig forum:" + +#: ../../mod/directory.php:320 +msgid "Keywords: " +msgstr "Nøkkelord:" + +#: ../../mod/directory.php:323 +msgid "Don't suggest" +msgstr "Ikke foreslå" + +#: ../../mod/directory.php:325 +msgid "Common connections:" +msgstr "Felles forbindelser:" + +#: ../../mod/directory.php:374 +msgid "Global Directory" +msgstr "Global katalog" + +#: ../../mod/directory.php:374 +msgid "Local Directory" +msgstr "Lokal katalog" + +#: ../../mod/directory.php:380 +msgid "Finding:" +msgstr "Finner:" + +#: ../../mod/directory.php:385 +msgid "next page" +msgstr "Neste side" + +#: ../../mod/directory.php:385 +msgid "previous page" +msgstr "Forrige side" + +#: ../../mod/directory.php:386 +msgid "Sort options" +msgstr "Sorteringsvalg" + +#: ../../mod/directory.php:387 +msgid "Alphabetic" +msgstr "Alfabetisk" + +#: ../../mod/directory.php:388 +msgid "Reverse Alphabetic" +msgstr "Omvendt alfabetisk" + +#: ../../mod/directory.php:389 +msgid "Newest to Oldest" +msgstr "Nyest til eldst" + +#: ../../mod/directory.php:390 +msgid "Oldest to Newest" +msgstr "Eldst til nyest" + +#: ../../mod/directory.php:407 +msgid "No entries (some entries may be hidden)." +msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." + +#: ../../mod/bookmarks.php:40 +msgid "Bookmark added" +msgstr "Bokmerke lagt til" + +#: ../../mod/bookmarks.php:62 +msgid "My Bookmarks" +msgstr "Mine bokmerker" + +#: ../../mod/bookmarks.php:73 +msgid "My Connections Bookmarks" +msgstr "Mine forbindelsers bokmerker" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protokollfeil. Ingen ID ble returnert." + +#: ../../mod/openid.php:72 ../../mod/openid.php:179 ../../mod/post.php:285 #, php-format -msgid "%d new introductions" -msgstr "%d nye introduksjoner" +msgid "Welcome %s. Remote authentication successful." +msgstr "Velkommen %s. Ekstern autentisering er vellykket." -#: ../../mod/manage.php:175 -msgid "Delegated Channels" -msgstr "Delegerte kanaler" +#: ../../mod/block.php:27 ../../mod/page.php:36 +msgid "Invalid item." +msgstr "Ugyldig element." + +#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29 +msgid "Channel not found." +msgstr "Kanalen ble ikke funnet." + +#: ../../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/id.php:11 +msgid "First Name" +msgstr "Fornavn" + +#: ../../mod/id.php:12 +msgid "Last Name" +msgstr "Etternavn" + +#: ../../mod/id.php:13 +msgid "Nickname" +msgstr "Kallenavn" + +#: ../../mod/id.php:14 +msgid "Full Name" +msgstr "Fullt navn" + +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" +msgstr "Profilbilde 16px" + +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" +msgstr "Profilbilde 32px" + +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" +msgstr "Profilbilde 48px" + +#: ../../mod/id.php:23 +msgid "Profile Photo 64px" +msgstr "Profilbilde 64px" + +#: ../../mod/id.php:24 +msgid "Profile Photo 80px" +msgstr "Profilbilde 80px" + +#: ../../mod/id.php:25 +msgid "Profile Photo 128px" +msgstr "Profilbilde 128px" + +#: ../../mod/id.php:26 +msgid "Timezone" +msgstr "Tidssone" + +#: ../../mod/id.php:27 +msgid "Homepage URL" +msgstr "Hjemmeside URL" + +#: ../../mod/id.php:29 +msgid "Birth Year" +msgstr "Fødselsår" + +#: ../../mod/id.php:30 +msgid "Birth Month" +msgstr "Fødselsmåne" + +#: ../../mod/id.php:31 +msgid "Birth Day" +msgstr "Fødselsdag" + +#: ../../mod/id.php:32 +msgid "Birthdate" +msgstr "Fødselsdato" + +#: ../../mod/id.php:33 ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Kjønn" + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Liker/Liker ikke" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Denne handlingen er begrenset til medlemmer." + +#: ../../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/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165 +msgid "Invalid request." +msgstr "Ugyldig forespørsel." + +#: ../../mod/like.php:142 +msgid "thing" +msgstr "ting" + +#: ../../mod/like.php:188 +msgid "Channel unavailable." +msgstr "Kanalen er utilgjengelig." + +#: ../../mod/like.php:236 +msgid "Previous action reversed." +msgstr "Forrige handling er omgjort." + +#: ../../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/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/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/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/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/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/like.php:520 +msgid "Action completed." +msgstr "Handling ferdig." + +#: ../../mod/like.php:521 +msgid "Thank you." +msgstr "Tusen takk." + +#: ../../mod/uexport.php:51 ../../mod/uexport.php:52 +msgid "Export Channel" +msgstr "Eksporter kanal" + +#: ../../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/uexport.php:54 +msgid "Export Content" +msgstr "Eksporter innhold" + +#: ../../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/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/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/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/chatsvc.php:111 +msgid "Away" +msgstr "Borte" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../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/common.php:10 +msgid "No channel." +msgstr "Ingen kanal." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Felles forbindelser" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Ingen forbindelser felles." + +#: ../../mod/ping.php:260 +msgid "sent you a private message" +msgstr "sendte deg en privat melding" + +#: ../../mod/ping.php:308 +msgid "added your channel" +msgstr "la til din kanal" + +#: ../../mod/ping.php:350 +msgid "posted an event" +msgstr "la ut en hendelse" + +#: ../../mod/help.php:147 +msgid "Documentation Search" +msgstr "Søk i dokumentasjon" + +#: ../../mod/help.php:184 ../../mod/help.php:190 ../../mod/help.php:196 +msgid "Help:" +msgstr "Hjelp:" + +#: ../../mod/help.php:211 ../../index.php:234 +msgid "Not Found" +msgstr "Ikke funnet" + +#: ../../mod/help.php:235 +msgid "$Projectname Documentation" +msgstr "$Projectname dokumentasjon" + +#: ../../mod/removeme.php:29 +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." + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Fjern denne kanalen" + +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "WARNING: " +msgstr "ADVARSEL:" + +#: ../../mod/removeme.php:58 +msgid "This channel will be completely removed from the network. " +msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket." + +#: ../../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/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Vennligst skriv ditt passord for å få bekreftelse:" + +#: ../../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/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/removeme.php:61 ../../mod/settings.php:1109 +msgid "Remove Channel" +msgstr "Fjern kanal" + +#: ../../mod/filer.php:48 +msgid "- select -" +msgstr "- velg -" + +#: ../../mod/mitem.php:24 ../../mod/menu.php:140 +msgid "Menu not found." +msgstr "Menyen ble ikke funnet." + +#: ../../mod/mitem.php:48 +msgid "Unable to create element." +msgstr "Klarer ikke å lage element." + +#: ../../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/mitem.php:149 ../../mod/mitem.php:222 +msgid "Menu Item Permissions" +msgstr "Menyelement Tillatelser" + +#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1053 +msgid "(click to open/close)" +msgstr "(klikk for å åpne/lukke)" + +#: ../../mod/mitem.php:152 ../../mod/mitem.php:168 +msgid "Link Name" +msgstr "Lenkenavn" + +#: ../../mod/mitem.php:153 ../../mod/mitem.php:227 +msgid "Link or Submenu Target" +msgstr "Lenke- eller undermeny-mål" + +#: ../../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/mitem.php:154 ../../mod/mitem.php:228 +msgid "Use magic-auth if available" +msgstr "Bruk magic-autent hvis mulig" + +#: ../../mod/mitem.php:155 ../../mod/mitem.php:229 +msgid "Open link in new window" +msgstr "Åpne lenke i nytt vindu" + +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Order in list" +msgstr "Ordne i liste" + +#: ../../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/mitem.php:157 +msgid "Submit and finish" +msgstr "Send inn og avslutt" + +#: ../../mod/mitem.php:158 +msgid "Submit and continue" +msgstr "Send inn og fortsett" + +#: ../../mod/mitem.php:166 +msgid "Menu:" +msgstr "Meny:" + +#: ../../mod/mitem.php:169 +msgid "Link Target" +msgstr "Lenkemål" + +#: ../../mod/mitem.php:172 +msgid "Edit menu" +msgstr "Endre meny" + +#: ../../mod/mitem.php:175 +msgid "Edit element" +msgstr "Endre element" + +#: ../../mod/mitem.php:176 +msgid "Drop element" +msgstr "Slett element" + +#: ../../mod/mitem.php:177 +msgid "New element" +msgstr "Nytt element" + +#: ../../mod/mitem.php:178 +msgid "Edit this menu container" +msgstr "Endre denne menybeholderen" + +#: ../../mod/mitem.php:179 +msgid "Add menu element" +msgstr "Legg til menyelement" + +#: ../../mod/mitem.php:180 +msgid "Delete this menu item" +msgstr "Slett dette menyelementet" + +#: ../../mod/mitem.php:181 +msgid "Edit this menu item" +msgstr "Endre dette menyelementet" + +#: ../../mod/mitem.php:198 +msgid "Menu item not found." +msgstr "Menyelement ble ikke funnet." + +#: ../../mod/mitem.php:211 +msgid "Menu item deleted." +msgstr "Menyelement slettet." + +#: ../../mod/mitem.php:213 +msgid "Menu item could not be deleted." +msgstr "Menyelement kunne ikke bli slettet." + +#: ../../mod/mitem.php:220 +msgid "Edit Menu Element" +msgstr "Endre menyelement" + +#: ../../mod/mitem.php:226 +msgid "Link text" +msgstr "Lenketekst" + +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Fikk ikke tilgang til kontaktinformasjonen." + +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Fant ikke valgt profil." + +#: ../../mod/connedit.php:219 +msgid "Connection updated." +msgstr "Forbindelsen er oppdatert." + +#: ../../mod/connedit.php:221 +msgid "Failed to update connection record." +msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." + +#: ../../mod/connedit.php:268 +msgid "is now connected to" +msgstr "er nå forbundet til" + +#: ../../mod/connedit.php:391 +msgid "Could not access address book record." +msgstr "Fikk ikke tilgang til informasjonen i adresseboken." + +#: ../../mod/connedit.php:405 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." + +#: ../../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/connedit.php:478 +msgid "Connection has been removed." +msgstr "Forbindelsen har blitt fjernet." + +#: ../../mod/connedit.php:497 +#, php-format +msgid "View %s's profile" +msgstr "Vis %s sin profil" + +#: ../../mod/connedit.php:501 +msgid "Refresh Permissions" +msgstr "Oppfrisk tillatelser" + +#: ../../mod/connedit.php:504 +msgid "Fetch updated permissions" +msgstr "Hent oppdaterte tillatelser" + +#: ../../mod/connedit.php:508 +msgid "Recent Activity" +msgstr "Nylig aktivitet" + +#: ../../mod/connedit.php:511 +msgid "View recent posts and comments" +msgstr "Vis nylige innlegg og kommentarer" + +#: ../../mod/connedit.php:515 ../../mod/admin.php:785 +msgid "Unblock" +msgstr "Ikke blokker lenger" + +#: ../../mod/connedit.php:515 ../../mod/admin.php:784 +msgid "Block" +msgstr "Blokker" + +#: ../../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/connedit.php:519 +msgid "This connection is blocked!" +msgstr "Denne forbindelsen er blokkert!" + +#: ../../mod/connedit.php:523 +msgid "Unignore" +msgstr "Ikke ignorer lenger" + +#: ../../mod/connedit.php:523 ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorer" + +#: ../../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/connedit.php:527 +msgid "This connection is ignored!" +msgstr "Denne forbindelsen er ignorert!" + +#: ../../mod/connedit.php:531 +msgid "Unarchive" +msgstr "Ikke arkiver lenger" + +#: ../../mod/connedit.php:531 +msgid "Archive" +msgstr "Arkiver" + +#: ../../mod/connedit.php:534 +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/connedit.php:535 +msgid "This connection is archived!" +msgstr "Denne forbindelsen er arkivert!" + +#: ../../mod/connedit.php:539 +msgid "Unhide" +msgstr "Ikke skjul lenger" + +#: ../../mod/connedit.php:539 +msgid "Hide" +msgstr "Skjul" + +#: ../../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/connedit.php:543 +msgid "This connection is hidden!" +msgstr "Denne forbindelsen er skjult!" + +#: ../../mod/connedit.php:550 +msgid "Delete this connection" +msgstr "Slett denne forbindelsen" + +#: ../../mod/connedit.php:631 +msgid "Approve this connection" +msgstr "Godta denne forbindelsen" + +#: ../../mod/connedit.php:631 +msgid "Accept connection to allow communication" +msgstr "Godta denne forbindelsen for å tillate kommunikasjon" + +#: ../../mod/connedit.php:636 +msgid "Set Affinity" +msgstr "Angi nærhet" + +#: ../../mod/connedit.php:639 +msgid "Set Profile" +msgstr "Angi profil" + +#: ../../mod/connedit.php:642 +msgid "Set Affinity & Profile" +msgstr "Angi nærhet og profil" + +#: ../../mod/connedit.php:659 +msgid "Apply these permissions automatically" +msgstr "Bruk disse tillatelsene automatisk" + +#: ../../mod/connedit.php:661 +msgid "This connection's address is" +msgstr "Denne forbindelsens adresse er" + +#: ../../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/connedit.php:666 +msgid "Slide to adjust your degree of friendship" +msgstr "Flytt for å justere din grad av vennskap" + +#: ../../mod/connedit.php:668 +msgid "Slide to adjust your rating" +msgstr "Flytt for å justere din vurdering" + +#: ../../mod/connedit.php:669 ../../mod/connedit.php:674 +msgid "Optionally explain your rating" +msgstr "Velg om du vil forklare vurderingen" + +#: ../../mod/connedit.php:671 +msgid "Custom Filter" +msgstr "Tilpasset filter" + +#: ../../mod/connedit.php:672 +msgid "Only import posts with this text" +msgstr "Bare importer innlegg med disse ordene" + +#: ../../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/connedit.php:673 +msgid "Do not import posts with this text" +msgstr "Ikke importer innlegg med denne teksten" + +#: ../../mod/connedit.php:675 +msgid "This information is public!" +msgstr "Denne informasjonen er offentlig!" + +#: ../../mod/connedit.php:680 +msgid "Connection Pending Approval" +msgstr "Forbindelse venter på godkjenning" + +#: ../../mod/connedit.php:681 +msgid "Connection Request" +msgstr "Forespørsel om forbindelse" + +#: ../../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/connedit.php:683 ../../mod/admin.php:781 +msgid "Approve" +msgstr "Godkjenn" + +#: ../../mod/connedit.php:684 +msgid "Approve Later" +msgstr "Godkjenn senere" + +#: ../../mod/connedit.php:687 +msgid "inherited" +msgstr "arvet" + +#: ../../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/connedit.php:691 +msgid "Their Settings" +msgstr "Deres innstillinger" + +#: ../../mod/connedit.php:692 +msgid "My Settings" +msgstr "Mine innstillinger" + +#: ../../mod/connedit.php:694 +msgid "Individual Permissions" +msgstr "Individuelle tillatelser" + +#: ../../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 "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/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/connedit.php:697 +msgid "Last update:" +msgstr "Siste oppdatering:" + +#: ../../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/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" +msgstr "Offentlige nettsteder" + +#: ../../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 "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" +msgstr "Vurder denne hubben" + +#: ../../mod/pubsites.php:26 +msgid "Site URL" +msgstr "Nettstedets URL" + +#: ../../mod/pubsites.php:26 +msgid "Access Type" +msgstr "Tilgangstype" + +#: ../../mod/pubsites.php:26 +msgid "Registration Policy" +msgstr "Retningslinjer for registrering" + +#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 +msgid "Location" +msgstr "Plassering" + +#: ../../mod/pubsites.php:26 +msgid "View hub ratings" +msgstr "Vis vurderinger av hubben" + +#: ../../mod/pubsites.php:30 +msgid "Rate" +msgstr "Vurder" + +#: ../../mod/pubsites.php:31 +msgid "View ratings" +msgstr "Vis vurderinger" + +#: ../../mod/filestorage.php:82 +msgid "Permission Denied." +msgstr "Tillatelse avvist." + +#: ../../mod/filestorage.php:98 +msgid "File not found." +msgstr "Filen ble ikke funnet." + +#: ../../mod/filestorage.php:141 +msgid "Edit file permissions" +msgstr "Endre filtillatelser" + +#: ../../mod/filestorage.php:150 +msgid "Set/edit permissions" +msgstr "Angi/endre tillatelser" + +#: ../../mod/filestorage.php:151 +msgid "Include all files and sub folders" +msgstr "Inkluder alle filer og undermapper" + +#: ../../mod/filestorage.php:152 +msgid "Return to file list" +msgstr "Gå tilbake til filoversikten" + +#: ../../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/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/filestorage.php:157 +msgid "Share this file" +msgstr "Del denne filen" + +#: ../../mod/filestorage.php:158 +msgid "Show URL to this file" +msgstr "Vis URLen til denne filen" + +#: ../../mod/filestorage.php:159 +msgid "Notify your contacts about this file" +msgstr "Varsle dine kontakter om denne filen" + +#: ../../mod/layouts.php:121 ../../mod/layouts.php:179 +#: ../../mod/editlayout.php:161 +msgid "Layout Name" +msgstr "Layout-navn" + +#: ../../mod/layouts.php:124 ../../mod/editlayout.php:159 +msgid "Layout Description (Optional)" +msgstr "Layoutens beskrivelse (valgfritt)" + +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" +msgstr "Hjelp med Comanche sidebeskrivelsesspråk" + +#: ../../mod/layouts.php:180 +msgid "Layout Description" +msgstr "Layout-beskrivelse" + +#: ../../mod/layouts.php:185 +msgid "Download PDL file" +msgstr "Last ned PDL-fil" + +#: ../../mod/poke.php:164 +msgid "Poke/Prod" +msgstr "Prikke/oppildne" + +#: ../../mod/poke.php:165 +msgid "poke, prod or do other things to somebody" +msgstr "prikke, oppildne eller gjør andre ting med noen" + +#: ../../mod/poke.php:166 +msgid "Recipient" +msgstr "Mottaker" + +#: ../../mod/poke.php:167 +msgid "Choose what you wish to do to recipient" +msgstr "Velg hva du ønsker å gjøre med mottakeren" + +#: ../../mod/poke.php:170 +msgid "Make this post private" +msgstr "Gjør dette innlegget privat" + +#: ../../mod/network.php:91 +msgid "No such group" +msgstr "Gruppen finnes ikke" + +#: ../../mod/network.php:131 +msgid "No such channel" +msgstr "Ingen slik kanal" + +#: ../../mod/network.php:136 +msgid "forum" +msgstr "forum" + +#: ../../mod/network.php:148 +msgid "Search Results For:" +msgstr "Søkeresultat for:" + +#: ../../mod/network.php:207 +msgid "Collection is empty" +msgstr "Samlingen er tom" + +#: ../../mod/network.php:216 +msgid "Collection: " +msgstr "Samling:" + +#: ../../mod/network.php:242 +msgid "Invalid connection." +msgstr "Ugyldig forbindelse." + +#: ../../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/chat.php:171 +msgid "Room not found" +msgstr "Rommet ble ikke funnet" + +#: ../../mod/chat.php:182 +msgid "Leave Room" +msgstr "Forlat rom" + +#: ../../mod/chat.php:183 +msgid "Delete This Room" +msgstr "Slett dette rommet" + +#: ../../mod/chat.php:184 +msgid "I am away right now" +msgstr "Jeg er borte akkurat nå" + +#: ../../mod/chat.php:185 +msgid "I am online" +msgstr "Jeg er online" + +#: ../../mod/chat.php:187 +msgid "Bookmark this room" +msgstr "Bokmerk dette rommet" + +#: ../../mod/chat.php:205 ../../mod/chat.php:227 +msgid "New Chatroom" +msgstr "Nytt chatrom" + +#: ../../mod/chat.php:206 +msgid "Chatroom Name" +msgstr "Navn på chatrom" + +#: ../../mod/chat.php:223 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$s sine chatrom" + +#: ../../mod/search.php:209 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementer merket med: %s" + +#: ../../mod/search.php:211 +#, php-format +msgid "Search results for: %s" +msgstr "Søkeresultater for: %s" + +#: ../../mod/message.php:34 +msgid "Conversation removed." +msgstr "Samtale fjernet." + +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." + +#: ../../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/editpost.php:31 +msgid "Item is not editable" +msgstr "Elementet kan ikke endres" + +#: ../../mod/editpost.php:55 +msgid "Delete item?" +msgstr "Slett element?" + +#: ../../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/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/editpost.php:124 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:187 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Legg i" + +#: ../../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/dreport.php:25 +msgid "no results" +msgstr "ingen resultater" + +#: ../../mod/dreport.php:30 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Leveringsrapport for %1$s" + +#: ../../mod/dreport.php:39 +msgid "channel sync processed" +msgstr "Kanalsynkronisering er behandlet" + +#: ../../mod/dreport.php:43 +msgid "queued" +msgstr "lagt i kø" + +#: ../../mod/dreport.php:47 +msgid "posted" +msgstr "lagt inn" + +#: ../../mod/dreport.php:51 +msgid "accepted for delivery" +msgstr "akseptert for levering" + +#: ../../mod/dreport.php:55 +msgid "updated" +msgstr "oppdatert" + +#: ../../mod/dreport.php:58 +msgid "update ignored" +msgstr "oppdatering ignorert" + +#: ../../mod/dreport.php:61 +msgid "permission denied" +msgstr "tillatelse avvist" + +#: ../../mod/editblock.php:118 +msgid "Delete block?" +msgstr "Slett byggeklossen?" + +#: ../../mod/editblock.php:180 +msgid "Edit Block" +msgstr "Endre byggekloss" + +#: ../../mod/home.php:57 ../../mod/home.php:63 ../../mod/siteinfo.php:157 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../mod/home.php:73 +#, php-format +msgid "Welcome to %s" +msgstr "Velkommen til %s" + +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "Ikke i stand til å finne opprinnelig innlegg." + +#: ../../mod/item.php:407 +msgid "Empty post discarded." +msgstr "Tomt innlegg forkastet." + +#: ../../mod/item.php:447 +msgid "Executable content type not permitted to this channel." +msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." + +#: ../../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/item.php:1170 +#, 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/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/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Ikke i stand til å finne hubben din." + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Innlegg vellykket." + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Temainnstillinger er oppdatert." + +#: ../../mod/admin.php:160 +msgid "# Accounts" +msgstr "# Kontoer" + +#: ../../mod/admin.php:161 +msgid "# blocked accounts" +msgstr "# blokkerte kontoer" + +#: ../../mod/admin.php:162 +msgid "# expired accounts" +msgstr "# utgåtte kontoer" + +#: ../../mod/admin.php:163 +msgid "# expiring accounts" +msgstr "# kontoer som holder på å gå ut" + +#: ../../mod/admin.php:174 +msgid "# Channels" +msgstr "# Kanaler" + +#: ../../mod/admin.php:175 +msgid "# primary" +msgstr "# hoved" + +#: ../../mod/admin.php:176 +msgid "# clones" +msgstr "# kloner" + +#: ../../mod/admin.php:182 +msgid "Message queues" +msgstr "Meldingskøer" + +#: ../../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/admin.php:199 +msgid "Summary" +msgstr "Sammendrag" + +#: ../../mod/admin.php:202 +msgid "Registered accounts" +msgstr "Registrerte kontoer" + +#: ../../mod/admin.php:203 ../../mod/admin.php:510 +msgid "Pending registrations" +msgstr "Ventende registreringer" + +#: ../../mod/admin.php:204 +msgid "Registered channels" +msgstr "Registrerte kanaler" + +#: ../../mod/admin.php:205 ../../mod/admin.php:511 +msgid "Active plugins" +msgstr "Aktive tilleggsfunksjoner" + +#: ../../mod/admin.php:206 +msgid "Version" +msgstr "Versjon" + +#: ../../mod/admin.php:321 +msgid "Site settings updated." +msgstr "Nettstedsinnstillinger er oppdatert." + +#: ../../mod/admin.php:358 ../../mod/settings.php:790 +msgid "mobile" +msgstr "mobil" + +#: ../../mod/admin.php:360 +msgid "experimental" +msgstr "eksperimentell" + +#: ../../mod/admin.php:362 +msgid "unsupported" +msgstr "ikke støttet" + +#: ../../mod/admin.php:387 +msgid "Yes - with approval" +msgstr "Ja - med godkjenning" + +#: ../../mod/admin.php:393 +msgid "My site is not a public server" +msgstr "Mitt nettsted er ikke en offentlig tjeneste" + +#: ../../mod/admin.php:394 +msgid "My site has paid access only" +msgstr "Mitt nettsted gir kun tilgang mot betaling" + +#: ../../mod/admin.php:395 +msgid "My site has free access only" +msgstr "Mitt nettsted har kun gratis tilgang" + +#: ../../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/admin.php:412 ../../mod/register.php:207 +msgid "Registration" +msgstr "Registrering" + +#: ../../mod/admin.php:413 +msgid "File upload" +msgstr "Last opp fil" + +#: ../../mod/admin.php:414 +msgid "Policies" +msgstr "Retningslinjer" + +#: ../../mod/admin.php:419 +msgid "Site name" +msgstr "Nettstedets navn" + +#: ../../mod/admin.php:420 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:421 +msgid "Administrator Information" +msgstr "Administratorinformasjon" + +#: ../../mod/admin.php:421 +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/admin.php:422 +msgid "System language" +msgstr "Systemspråk" + +#: ../../mod/admin.php:423 +msgid "System theme" +msgstr "Systemtema" + +#: ../../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/admin.php:424 +msgid "Mobile system theme" +msgstr "Mobilt systemtema" + +#: ../../mod/admin.php:424 +msgid "Theme for mobile devices" +msgstr "Tema for mobile enheter" + +#: ../../mod/admin.php:426 +msgid "Allow Feeds as Connections" +msgstr "Tillat strømmer som forbindelser" + +#: ../../mod/admin.php:426 +msgid "(Heavy system resource usage)" +msgstr "(Tung bruk av systemressurser)" + +#: ../../mod/admin.php:427 +msgid "Maximum image size" +msgstr "Største bildestørrelse" + +#: ../../mod/admin.php:427 +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/admin.php:428 +msgid "Does this site allow new member registration?" +msgstr "Tillater dette nettstedet registrering av nye medlemmer?" + +#: ../../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/admin.php:430 +msgid "Register text" +msgstr "Registreringstekst" + +#: ../../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/admin.php:431 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)" + +#: ../../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 "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/admin.php:432 +msgid "Preserve site homepage URL" +msgstr "Bevar URL-en til nettstedets hjemmeside" + +#: ../../mod/admin.php:432 +msgid "" +"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/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "Kontoer forlatt etter x dager" + +#: ../../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/admin.php:434 +msgid "Allowed friend domains" +msgstr "Tillatte vennedomener" + +#: ../../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/admin.php:435 +msgid "Allowed email domains" +msgstr "Tillate e-postdomener" + +#: ../../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/admin.php:436 +msgid "Not allowed email domains" +msgstr "Ikke tillatte e-postdomener" + +#: ../../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/admin.php:437 +msgid "Block public" +msgstr "Blokker offentlig tilgang" + +#: ../../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 "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/admin.php:438 +msgid "Verify Email Addresses" +msgstr "Bekreft e-postadresser" + +#: ../../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/admin.php:439 +msgid "Force publish" +msgstr "Tving publisering" + +#: ../../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/admin.php:440 +msgid "Disable discovery tab" +msgstr "Skru av oppdagelsesfanen" + +#: ../../mod/admin.php:440 +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/admin.php:441 +msgid "login on Homepage" +msgstr "Logg inn på hjemmesiden" + +#: ../../mod/admin.php:441 +msgid "" +"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/admin.php:443 +msgid "Proxy user" +msgstr "Brukernavn mellomtjener" + +#: ../../mod/admin.php:444 +msgid "Proxy URL" +msgstr "Mellomtjener URL" + +#: ../../mod/admin.php:445 +msgid "Network timeout" +msgstr "Nettverk tidsavbrudd" + +#: ../../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/admin.php:446 +msgid "Delivery interval" +msgstr "Leveringsinterval" + +#: ../../mod/admin.php:446 +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:447 +msgid "Deliveries per process" +msgstr "Leveranser per prosess" + +#: ../../mod/admin.php:447 +msgid "" +"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/admin.php:448 +msgid "Poll interval" +msgstr "Spørreintervall" + +#: ../../mod/admin.php:448 +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." + +#: ../../mod/admin.php:449 +msgid "Maximum Load Average" +msgstr "Største belastningsgjennomsnitt" + +#: ../../mod/admin.php:449 +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/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/admin.php:450 +msgid "0 for no expiration of imported content" +msgstr "0 dersom importert innhold ikke skal utgå" + +#: ../../mod/admin.php:498 +msgid "No server found" +msgstr "Ingen tjener funnet" + +#: ../../mod/admin.php:505 ../../mod/admin.php:788 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:505 +msgid "for channel" +msgstr "for kanalen" + +#: ../../mod/admin.php:505 +msgid "on server" +msgstr "på tjener" + +#: ../../mod/admin.php:505 +msgid "Status" +msgstr "Status" + +#: ../../mod/admin.php:507 +msgid "Server" +msgstr "Tjener" + +#: ../../mod/admin.php:524 +msgid "Update has been marked successful" +msgstr "Oppdateringen har blitt merket som en suksess" + +#: ../../mod/admin.php:534 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Utføring av %s feilet. Sjekk systemlogger." + +#: ../../mod/admin.php:537 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Oppdatering %s ble gjennomført med suksess." + +#: ../../mod/admin.php:541 +#, 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/admin.php:544 +#, php-format +msgid "Update function %s could not be found." +msgstr "Oppdatering av funksjon %s kunne ikke finnes." + +#: ../../mod/admin.php:560 +msgid "No failed updates." +msgstr "Ingen mislykkede oppdateringer." + +#: ../../mod/admin.php:564 +msgid "Failed Updates" +msgstr "Mislykkede oppdateringer" + +#: ../../mod/admin.php:566 +msgid "Mark success (if update was manually applied)" +msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" + +#: ../../mod/admin.php:567 +msgid "Attempt to execute this update step automatically" +msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" + +#: ../../mod/admin.php:599 +msgid "Queue Statistics" +msgstr "Køstatistikk" + +#: ../../mod/admin.php:600 +msgid "Total Entries" +msgstr "Totalt antall oppføringer" + +#: ../../mod/admin.php:601 +msgid "Priority" +msgstr "Prioritet" + +#: ../../mod/admin.php:602 +msgid "Destination URL" +msgstr "Mål-URL" + +#: ../../mod/admin.php:603 +msgid "Mark hub permanently offline" +msgstr "Merk hub som permanent offline" + +#: ../../mod/admin.php:604 +msgid "Empty queue for this hub" +msgstr "Tøm køen for denne hubben" + +#: ../../mod/admin.php:605 +msgid "Last known contact" +msgstr "Siste kjente kontakt" + +#: ../../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/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/admin.php:685 +msgid "Account not found" +msgstr "Kontoen ble ikke funnet" + +#: ../../mod/admin.php:697 +#, php-format +msgid "Account '%s' deleted" +msgstr "Kontoen '%s' slettet" + +#: ../../mod/admin.php:705 +#, php-format +msgid "Account '%s' blocked" +msgstr "Kontoen '%s' blokkert" + +#: ../../mod/admin.php:713 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Kontoen '%s' er ikke blokkert lenger" + +#: ../../mod/admin.php:775 ../../mod/admin.php:787 +msgid "Users" +msgstr "Brukere" + +#: ../../mod/admin.php:777 ../../mod/admin.php:941 +msgid "select all" +msgstr "velg alle" + +#: ../../mod/admin.php:778 +msgid "User registrations waiting for confirm" +msgstr "Brukerregistreringer som venter på bekreftelse" + +#: ../../mod/admin.php:779 +msgid "Request date" +msgstr "Dato for forespørsel" + +#: ../../mod/admin.php:780 +msgid "No registrations." +msgstr "Ingen registreringer." + +#: ../../mod/admin.php:782 +msgid "Deny" +msgstr "Avslå" + +#: ../../mod/admin.php:788 +msgid "Register date" +msgstr "Registreringsdato" + +#: ../../mod/admin.php:788 +msgid "Last login" +msgstr "Siste innlogging" + +#: ../../mod/admin.php:788 +msgid "Expires" +msgstr "Utløper" + +#: ../../mod/admin.php:788 +msgid "Service Class" +msgstr "Tjenesteklasse" + +#: ../../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/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/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/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/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/admin.php:863 +msgid "Channel not found" +msgstr "Kanalen ble ikke funnet" + +#: ../../mod/admin.php:874 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanalen '%s' er slettet" + +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanalen '%s' er sensurert" + +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanalen '%s' er ikke sensurert lenger" + +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Kanal '%s' kode tillatt" + +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Kanal '%s' kode ikke tillatt" + +#: ../../mod/admin.php:943 +msgid "Censor" +msgstr "Sensurer" + +#: ../../mod/admin.php:944 +msgid "Uncensor" +msgstr "Ikke sensurer lenger" + +#: ../../mod/admin.php:945 +msgid "Allow Code" +msgstr "Tillat kode" + +#: ../../mod/admin.php:946 +msgid "Disallow Code" +msgstr "Ikke tillat kode" + +#: ../../mod/admin.php:948 +msgid "UID" +msgstr "UID" + +#: ../../mod/admin.php:948 ../../mod/profiles.php:447 +msgid "Address" +msgstr "Adresse" + +#: ../../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/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/admin.php:991 +#, php-format +msgid "Plugin %s disabled." +msgstr "Tilleggsfunksjonen %s er avskrudd." + +#: ../../mod/admin.php:995 +#, php-format +msgid "Plugin %s enabled." +msgstr "Tilleggsfunksjonen %s er påskrudd." + +#: ../../mod/admin.php:1005 ../../mod/admin.php:1203 +msgid "Disable" +msgstr "Skru av" + +#: ../../mod/admin.php:1008 ../../mod/admin.php:1205 +msgid "Enable" +msgstr "Skru på" + +#: ../../mod/admin.php:1032 ../../mod/admin.php:1232 +msgid "Toggle" +msgstr "Skru av og på" + +#: ../../mod/admin.php:1040 ../../mod/admin.php:1242 +msgid "Author: " +msgstr "Forfatter:" + +#: ../../mod/admin.php:1041 ../../mod/admin.php:1243 +msgid "Maintainer: " +msgstr "Vedlikeholder:" + +#: ../../mod/admin.php:1168 +msgid "No themes found." +msgstr "Ingen temaer er funnet." + +#: ../../mod/admin.php:1224 +msgid "Screenshot" +msgstr "Skjermbilde" + +#: ../../mod/admin.php:1270 +msgid "[Experimental]" +msgstr "[Eksperimentelt]" + +#: ../../mod/admin.php:1271 +msgid "[Unsupported]" +msgstr "[Ingen støtte]" + +#: ../../mod/admin.php:1295 +msgid "Log settings updated." +msgstr "Logginnstillinger er oppdatert." + +#: ../../mod/admin.php:1352 +msgid "Clear" +msgstr "Tøm" + +#: ../../mod/admin.php:1358 +msgid "Debugging" +msgstr "Feilsøking" + +#: ../../mod/admin.php:1359 +msgid "Log file" +msgstr "Loggfil" + +#: ../../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/admin.php:1360 +msgid "Log level" +msgstr "Loggnivå" + +#: ../../mod/admin.php:1406 +msgid "New Profile Field" +msgstr "Nytt profilfelt" + +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "Field nickname" +msgstr "Feltets kallenavn" + +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "System name of field" +msgstr "Systemnavnet til feltet" + +#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 +msgid "Input type" +msgstr "Inndata-type" + +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Field Name" +msgstr "Feltnavn" + +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Label on profile pages" +msgstr "Merkelapp på profilsider" + +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Help text" +msgstr "Hjelpetekst" + +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Additional info (optional)" +msgstr "Tilleggsinformasjon (valgfritt)" + +#: ../../mod/admin.php:1420 +msgid "Field definition not found" +msgstr "Feltdefinisjonen ble ikke funnet" + +#: ../../mod/admin.php:1426 +msgid "Edit Profile Field" +msgstr "Endre profilfelt" + +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installert." + +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Feil oppsett for app-en." + +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Innbyggingskode" + +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "Endre app" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "Lag app" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Navn på app" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Plassering (URL) til app" + +#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "Beskrivelse" + +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "Bildeikon URL" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x80 pixler - valgfritt" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versjons-ID" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Pris på app" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Plassering (URL) for å kjøpe app" + +#: ../../mod/menu.php:45 +msgid "Unable to update menu." +msgstr "Ikke i stand til å oppdatere meny." + +#: ../../mod/menu.php:56 +msgid "Unable to create menu." +msgstr "Ikke i stand til å lage meny." + +#: ../../mod/menu.php:94 ../../mod/menu.php:106 +msgid "Menu Name" +msgstr "Menynavn" + +#: ../../mod/menu.php:94 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unikt navn (ikke synlig på websiden) - påkrevet" + +#: ../../mod/menu.php:95 ../../mod/menu.php:107 +msgid "Menu Title" +msgstr "Menytittel" + +#: ../../mod/menu.php:95 +msgid "Visible on webpage - leave empty for no title" +msgstr "Synlig på websiden - la stå tomt for ingen tittel" + +#: ../../mod/menu.php:96 +msgid "Allow Bookmarks" +msgstr "Tillat bokmerker" + +#: ../../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/menu.php:97 ../../mod/menu.php:155 +msgid "Submit and proceed" +msgstr "Send inn og fortsett" + +#: ../../mod/menu.php:109 +msgid "Drop" +msgstr "Slett" + +#: ../../mod/menu.php:113 +msgid "Bookmarks allowed" +msgstr "Bokmerker tillatt" + +#: ../../mod/menu.php:115 +msgid "Delete this menu" +msgstr "Slett denne menyen" + +#: ../../mod/menu.php:116 ../../mod/menu.php:150 +msgid "Edit menu contents" +msgstr "Endre menyinnholdet" + +#: ../../mod/menu.php:117 +msgid "Edit this menu" +msgstr "Endre denne menyen" + +#: ../../mod/menu.php:132 +msgid "Menu could not be deleted." +msgstr "Menyen kunne ikke bli slettet." + +#: ../../mod/menu.php:145 +msgid "Edit Menu" +msgstr "Endre meny" + +#: ../../mod/menu.php:149 +msgid "Add or remove entries to this menu" +msgstr "Legg til eller fjern punkter i denne menyen" + +#: ../../mod/menu.php:151 +msgid "Menu name" +msgstr "Menynavn" + +#: ../../mod/menu.php:151 +msgid "Must be unique, only seen by you" +msgstr "Må være unik, ses bare av deg" + +#: ../../mod/menu.php:152 +msgid "Menu title" +msgstr "Menytittel" + +#: ../../mod/menu.php:152 +msgid "Menu title as seen by others" +msgstr "Menytittelen andre ser" + +#: ../../mod/menu.php:153 +msgid "Allow bookmarks" +msgstr "Tillat bokmerker" + +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." +msgstr "Ingen flere systemvarsler." + +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" +msgstr "Systemvarsler" + +#: ../../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/new_channel.php:109 +msgid "Add a Channel" +msgstr "Legg til en kanal" + +#: ../../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/new_channel.php:112 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Kanalnavn" + +#: ../../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/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Velg et kort kallenavn" + +#: ../../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/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Eller importerer en eksisterende kanal fra et annet sted." + +#: ../../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/new_channel.php:119 +msgid "Channel Type" +msgstr "Kanaltype" + +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "Les mer om roller" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ugyldig forespørselsidentifikator." + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Forkast" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout er oppdatert." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Endre beskrivelsen av systemsiden" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layouten ble ikke funnet." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulnavn:" + +#: ../../mod/pdledit.php:55 +msgid "Layout Help" +msgstr "Layout-hjelp" + +#: ../../mod/subthread.php:102 +#, php-format +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." +msgstr "Ingen gyldig konto funnet." + +#: ../../mod/lostpass.php:29 +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:103 +#, php-format +msgid "Site Member (%s)" +msgstr "Nettstedsmedlem (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Forespurt om å tilbakestille passord hos %s" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." + +#: ../../mod/lostpass.php:86 ../../boot.php:1505 +msgid "Password Reset" +msgstr "Tilbakestill passord" + +#: ../../mod/lostpass.php:87 +msgid "Your password has been reset as requested." +msgstr "Ditt passord har blitt tilbakestilt som forespurt." + +#: ../../mod/lostpass.php:88 +msgid "Your new password is" +msgstr "Ditt nye passord er" + +#: ../../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:90 +msgid "click here to login" +msgstr "klikke her for å logge inn" + +#: ../../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:108 +#, php-format +msgid "Your password has changed at %s" +msgstr "Ditt passord er endret hos %s" + +#: ../../mod/lostpass.php:123 +msgid "Forgot your Password?" +msgstr "Glemt passord ditt?" + +#: ../../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:125 +msgid "Email Address" +msgstr "E-postadresse" + +#: ../../mod/lostpass.php:126 +msgid "Reset" +msgstr "Tilbakestill" + +#: ../../mod/photos.php:79 +msgid "Page owner information could not be retrieved." +msgstr "Informasjon om sideeier kunne ikke hentes." + +#: ../../mod/photos.php:100 +msgid "Album not found." +msgstr "Albumet ble ikke funnet." + +#: ../../mod/photos.php:127 +msgid "Delete Album" +msgstr "Slett album" + +#: ../../mod/photos.php:170 ../../mod/photos.php:970 +msgid "Delete Photo" +msgstr "Slett bilde" + +#: ../../mod/photos.php:464 +msgid "No photos selected" +msgstr "Ingen bilder valgt" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "Tilgang til dette elementet er begrenset." + +#: ../../mod/photos.php:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." + +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB lagringsplass til bilder er brukt." + +#: ../../mod/photos.php:583 +msgid "Upload Photos" +msgstr "Last opp bilder" + +#: ../../mod/photos.php:587 +msgid "Enter an album name" +msgstr "Skriv et albumnavn" + +#: ../../mod/photos.php:588 +msgid "or select an existing album (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" + +#: ../../mod/photos.php:589 +msgid "Create a status post for this upload" +msgstr "Lag et statusinnlegg for denne opplastingen" + +#: ../../mod/photos.php:616 +msgid "Album name could not be decoded" +msgstr "Albumnavnet kunne ikke dekodes" + +#: ../../mod/photos.php:660 ../../mod/photos.php:1197 +#: ../../mod/photos.php:1214 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: ../../mod/photos.php:688 +msgid "Show Newest First" +msgstr "Vis nyeste først" + +#: ../../mod/photos.php:690 +msgid "Show Oldest First" +msgstr "Vis eldste først" + +#: ../../mod/photos.php:714 ../../mod/photos.php:1247 +msgid "View Photo" +msgstr "Vis foto" + +#: ../../mod/photos.php:743 +msgid "Edit Album" +msgstr "Endre album" + +#: ../../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/photos.php:790 +msgid "Photo not available" +msgstr "Bilde er utilgjengelig" + +#: ../../mod/photos.php:848 +msgid "Use as profile photo" +msgstr "Bruk som profilbilde" + +#: ../../mod/photos.php:855 +msgid "Private Photo" +msgstr "Privat bilde" + +#: ../../mod/photos.php:866 ../../mod/events.php:528 +msgid "Previous" +msgstr "Forrige" + +#: ../../mod/photos.php:870 +msgid "View Full Size" +msgstr "Vis i full størrelse" + +#: ../../mod/photos.php:875 ../../mod/events.php:529 ../../mod/setup.php:285 +msgid "Next" +msgstr "Neste" + +#: ../../mod/photos.php:915 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Fjern" + +#: ../../mod/photos.php:949 +msgid "Edit photo" +msgstr "Endre bilde" + +#: ../../mod/photos.php:951 +msgid "Rotate CW (right)" +msgstr "Roter med klokka (mot høyre)" + +#: ../../mod/photos.php:952 +msgid "Rotate CCW (left)" +msgstr "Roter mot klokka (venstre)" + +#: ../../mod/photos.php:955 +msgid "Enter a new album name" +msgstr "Skriv et nytt albumnavn" + +#: ../../mod/photos.php:956 +msgid "or select an existing one (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" + +#: ../../mod/photos.php:959 +msgid "Caption" +msgstr "Overskrift" + +#: ../../mod/photos.php:961 +msgid "Add a Tag" +msgstr "Legg til merkelapp" + +#: ../../mod/photos.php:965 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../mod/photos.php:968 +msgid "Flag as adult in album view" +msgstr "Flag som voksent i albumvisning" + +#: ../../mod/photos.php:1160 +msgid "In This Photo:" +msgstr "I dette bildet:" + +#: ../../mod/photos.php:1165 +msgid "Map" +msgstr "Kart" + +#: ../../mod/photos.php:1253 +msgid "View Album" +msgstr "Vis album" + +#: ../../mod/photos.php:1276 +msgid "Recent Photos" +msgstr "Nye bilder" + +#: ../../mod/dav.php:121 +msgid "$Projectname channel" +msgstr "$Projectname-kanal" + +#: ../../mod/rate.php:157 +msgid "Website:" +msgstr "Nettsted:" + +#: ../../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/rate.php:161 +msgid "Rating (this information is public)" +msgstr "Vurdering (denne informasjonen er offentlig)" + +#: ../../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/events.php:21 +msgid "Calendar entries imported." +msgstr "Kalenderhendelsene er importert." + +#: ../../mod/events.php:23 +msgid "No calendar entries found." +msgstr "Ingen kalenderhendelser funnet." + +#: ../../mod/events.php:96 +msgid "Event can not end before it has started." +msgstr "Hendelsen kan ikke slutte før den starter." + +#: ../../mod/events.php:98 ../../mod/events.php:107 ../../mod/events.php:127 +msgid "Unable to generate preview." +msgstr "Klarer ikke å lage forhåndsvisning." + +#: ../../mod/events.php:105 +msgid "Event title and start time are required." +msgstr "Hendelsestittel og starttidspunkt er påkrevd." + +#: ../../mod/events.php:125 ../../mod/events.php:250 +msgid "Event not found." +msgstr "Hendelsen ble ikke funnet." + +#: ../../mod/events.php:448 +msgid "l, F j" +msgstr "l, F j" + +#: ../../mod/events.php:470 +msgid "Edit event" +msgstr "Endre hendelse" + +#: ../../mod/events.php:472 +msgid "Delete event" +msgstr "Slett hendelse" + +#: ../../mod/events.php:506 +msgid "calendar" +msgstr "kalender" + +#: ../../mod/events.php:527 +msgid "Create New Event" +msgstr "Lag ny hendelse" + +#: ../../mod/events.php:530 +msgid "Export" +msgstr "Eksport" + +#: ../../mod/events.php:533 +msgid "Import" +msgstr "Importer" + +#: ../../mod/events.php:564 +msgid "Event removed" +msgstr "Hendelse slettet" + +#: ../../mod/events.php:567 +msgid "Failed to remove event" +msgstr "Mislyktes med å slette hendelse" + +#: ../../mod/events.php:681 +msgid "Event details" +msgstr "Hendelsesdetaljer" + +#: ../../mod/events.php:682 +msgid "Starting date and Title are required." +msgstr "Startdato og Tittel er påkrevd." + +#: ../../mod/events.php:684 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparert liste)" + +#: ../../mod/events.php:686 +msgid "Event Starts:" +msgstr "Hendelsen starter:" + +#: ../../mod/events.php:693 +msgid "Finish date/time is not known or not relevant" +msgstr "Sluttdato/-tidspunkt er ikke kjent eller ikke relevant" + +#: ../../mod/events.php:695 +msgid "Event Finishes:" +msgstr "Hendelsen slutter:" + +#: ../../mod/events.php:697 ../../mod/events.php:698 +msgid "Adjust for viewer timezone" +msgstr "Juster i forhold til tilskuerens tidssone" + +#: ../../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/events.php:703 +msgid "Title:" +msgstr "Tittel:" + +#: ../../mod/events.php:705 +msgid "Share this event" +msgstr "Del denne hendelsen" + +#: ../../mod/impel.php:192 +#, php-format +msgid "%s element installed" +msgstr "%s element installert" + +#: ../../mod/impel.php:195 +#, php-format +msgid "%s element installation failed" +msgstr "Installasjon av %s-element mislyktes" + +#: ../../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/match.php:22 +msgid "Profile Match" +msgstr "Profiltreff" + +#: ../../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/match.php:63 +msgid "is interested in:" +msgstr "er interessert i:" + +#: ../../mod/match.php:70 +msgid "No matches" +msgstr "Ingen treff" + +#: ../../mod/profile_photo.php:111 +msgid "Image uploaded but image cropping failed." +msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." + +#: ../../mod/profile_photo.php:165 +msgid "Image resize failed." +msgstr "Endring av bildestørrelse mislyktes." + +#: ../../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/profile_photo.php:247 +msgid "Image upload failed." +msgstr "Opplasting av bildet mislyktes." + +#: ../../mod/profile_photo.php:266 +msgid "Unable to process image." +msgstr "Kan ikke behandle bildet." + +#: ../../mod/profile_photo.php:294 +msgid "female" +msgstr "kvinne" + +#: ../../mod/profile_photo.php:295 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s oppdaterte %2$s sitt" + +#: ../../mod/profile_photo.php:296 +msgid "male" +msgstr "mann" + +#: ../../mod/profile_photo.php:297 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s oppdaterte %2$s sitt" + +#: ../../mod/profile_photo.php:299 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s oppdaterte %2$s deres" + +#: ../../mod/profile_photo.php:301 +msgid "profile photo" +msgstr "profilbilde" + +#: ../../mod/profile_photo.php:365 ../../mod/profile_photo.php:406 +msgid "Photo not available." +msgstr "Bildet er ikke tilgjengelig." + +#: ../../mod/profile_photo.php:447 +msgid "Upload File:" +msgstr "Last opp fil:" + +#: ../../mod/profile_photo.php:448 +msgid "Select a profile:" +msgstr "Velg en profil:" + +#: ../../mod/profile_photo.php:449 +msgid "Upload Profile Photo" +msgstr "Last opp profilbilde:" + +#: ../../mod/profile_photo.php:454 ../../mod/settings.php:972 +msgid "or" +msgstr "eller" + +#: ../../mod/profile_photo.php:454 +msgid "skip this step" +msgstr "hopp over dette steget" + +#: ../../mod/profile_photo.php:454 +msgid "select a photo from your photo albums" +msgstr "velg et bilde fra dine fotoalbum" + +#: ../../mod/profile_photo.php:470 +msgid "Crop Image" +msgstr "Beskjær bildet" + +#: ../../mod/profile_photo.php:471 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Vennligst juster bildebeskjæringen for optimal visning." + +#: ../../mod/profile_photo.php:473 +msgid "Done Editing" +msgstr "Avslutt redigering" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal lagt til." + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Merkelapp fjernet" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Fjern merkelapp fra element" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Velg merkelapp å fjerne:" + +#: ../../mod/ratings.php:69 +msgid "No ratings" +msgstr "Ingen vurderinger" + +#: ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Vurderinger" + +#: ../../mod/ratings.php:100 +msgid "Rating: " +msgstr "Vurdering:" + +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Nettsted:" + +#: ../../mod/ratings.php:103 +msgid "Description: " +msgstr "Beskrivelse:" + +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Dette nettstedet er ikke en katalogtjener" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Ikke i stand til å slå opp mottaker." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Ikke i stand til å kommunisere med forespurt kanal." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan ikke bekrefte forespurt kanal." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet." + +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Meldinger" + +#: ../../mod/mail.php:138 +msgid "Message deleted." +msgstr "Melding slettet." + +#: ../../mod/mail.php:154 +msgid "Message recalled." +msgstr "Innlegg tilbakekalt." + +#: ../../mod/mail.php:221 +msgid "Send Private Message" +msgstr "Send privat melding" + +#: ../../mod/mail.php:222 ../../mod/mail.php:352 +msgid "To:" +msgstr "Til:" + +#: ../../mod/mail.php:227 ../../mod/mail.php:341 ../../mod/mail.php:354 +msgid "Subject:" +msgstr "Emne:" + +#: ../../mod/mail.php:231 ../../mod/mail.php:357 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Din melding:" + +#: ../../mod/mail.php:238 +msgid "Send" +msgstr "Send" + +#: ../../mod/mail.php:322 +msgid "Delete message" +msgstr "Slett melding" + +#: ../../mod/mail.php:323 +msgid "Recall message" +msgstr "Tilbakekall innlegg" + +#: ../../mod/mail.php:325 +msgid "Message has been recalled." +msgstr "Innlegget har blitt tilbakekalt." + +#: ../../mod/mail.php:345 +msgid "Delete Conversation" +msgstr "Slett samtale" + +#: ../../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/mail.php:351 +msgid "Send Reply" +msgstr "Send svar" + +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "Sidetittel" + +#: ../../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/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes." + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Passordene er ikke like." + +#: ../../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/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Din registrering venter på godkjenning av nettstedets eier." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Din registrering kan ikke behandles." + +#: ../../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/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registrer på et annet tilknyttet nettsted/hub" + +#: ../../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/register.php:185 +msgid "Terms of Service" +msgstr "Tjenesteavtale" + +#: ../../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/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/import.php:148 +msgid "No channel. Import failed." +msgstr "Ingen kanal. Import mislyktes." + +#: ../../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/import.php:498 +msgid "Import Channel" +msgstr "Importer kanal" + +#: ../../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/import.php:500 ../../mod/import_items.php:121 +msgid "File to Upload" +msgstr "Fil som skal lastes opp" + +#: ../../mod/import.php:501 +msgid "Or provide the old server/hub details" +msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" + +#: ../../mod/import.php:502 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamle identitetsadresse (xyz@example.com)" + +#: ../../mod/import.php:503 +msgid "Your old login email address" +msgstr "Din gamle innloggings e-postadresse" + +#: ../../mod/import.php:504 +msgid "Your old login password" +msgstr "Ditt gamle innloggingspassord" + +#: ../../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/import.php:506 +msgid "Make this hub my primary location" +msgstr "Gjør dette nettstedet til min primære plassering" + +#: ../../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/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/thing.php:111 +msgid "Thing updated" +msgstr "Tingen er oppdatert" + +#: ../../mod/thing.php:163 +msgid "Object store: failed" +msgstr "Objektlagring: mislyktes" + +#: ../../mod/thing.php:167 +msgid "Thing added" +msgstr "Ting lagt til" + +#: ../../mod/thing.php:193 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:256 +msgid "Show Thing" +msgstr "Vis ting" + +#: ../../mod/thing.php:263 +msgid "item not found." +msgstr "element ble ikke funnet." + +#: ../../mod/thing.php:296 +msgid "Edit Thing" +msgstr "Endre ting" + +#: ../../mod/thing.php:298 ../../mod/thing.php:348 +msgid "Select a profile" +msgstr "Velg en profil" + +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Post an activity" +msgstr "Legg inn en aktivitet" + +#: ../../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/thing.php:304 ../../mod/thing.php:353 +msgid "Name of thing e.g. something" +msgstr "Navn på ting for eksempel noe" + +#: ../../mod/thing.php:306 ../../mod/thing.php:354 +msgid "URL of thing (optional)" +msgstr "URL til ting (valgfritt)" + +#: ../../mod/thing.php:308 ../../mod/thing.php:355 +msgid "URL for photo of thing (optional)" +msgstr "URL til bilde av ting (valgfritt)" + +#: ../../mod/thing.php:346 +msgid "Add Thing to your Profile" +msgstr "Legg til ting i din profil" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Grensen for totalt antall invitasjoner er overskredet." + +#: ../../mod/invite.php:49 +#, 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 $Projectname" +msgstr "Bli med oss på $Projectname" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : meldingslevering feilet." + +#: ../../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/invite.php:115 +msgid "You have no more invitations available" +msgstr "Du har ikke flere invitasjoner tilgjengelig" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Send invitasjoner" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Skriv e-postadresser, en per linje:" + +#: ../../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/invite.php:135 +msgid "" +"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/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/invite.php:138 +msgid "or visit " +msgstr "eller besøk" + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klikk [Forbindelse]" + +#: ../../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/viewsrc.php:40 +msgid "Source of Item" +msgstr "Kilde til element" #: ../../mod/settings.php:76 msgid "Name is required" @@ -3910,110 +7417,94 @@ msgstr "Navn er påkrevd" msgid "Key and Secret are required" msgstr "Nøkkel og hemmelighet er påkrevd" -#: ../../mod/settings.php:124 -msgid "Diaspora Policy Settings updated." -msgstr "Innstillinger for Diaspora retningslinjer er oppdatert." - -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:231 msgid "Passwords do not match. Password unchanged." msgstr "Passordene stemmer ikke overens. Passord uforandret." -#: ../../mod/settings.php:236 +#: ../../mod/settings.php:235 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Tomme passord er ikke tillatt. Passord uforandret." -#: ../../mod/settings.php:250 +#: ../../mod/settings.php:249 msgid "Password changed." msgstr "Passord endret." -#: ../../mod/settings.php:252 +#: ../../mod/settings.php:251 msgid "Password update failed. Please try again." msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." -#: ../../mod/settings.php:266 +#: ../../mod/settings.php:265 msgid "Not valid email." msgstr "Ikke gyldig e-post." -#: ../../mod/settings.php:269 +#: ../../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:278 +#: ../../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/settings.php:517 +#: ../../mod/settings.php:518 msgid "Settings updated." msgstr "Innstillinger oppdatert." -#: ../../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" - -#: ../../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" - -#: ../../mod/settings.php:581 ../../mod/settings.php:607 -#: ../../mod/settings.php:643 +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +#: ../../mod/settings.php:644 msgid "Add application" msgstr "Legg til program" -#: ../../mod/settings.php:584 +#: ../../mod/settings.php:585 msgid "Name of application" msgstr "Navn på program" -#: ../../mod/settings.php:585 ../../mod/settings.php:611 +#: ../../mod/settings.php:586 ../../mod/settings.php:612 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:585 ../../mod/settings.php:586 +#: ../../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/settings.php:586 ../../mod/settings.php:612 +#: ../../mod/settings.php:587 ../../mod/settings.php:613 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:587 ../../mod/settings.php:613 +#: ../../mod/settings.php:588 ../../mod/settings.php:614 msgid "Redirect" msgstr "Omdirigering" -#: ../../mod/settings.php:587 +#: ../../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/settings.php:588 ../../mod/settings.php:614 +#: ../../mod/settings.php:589 ../../mod/settings.php:615 msgid "Icon url" msgstr "Ikon-URL" -#: ../../mod/settings.php:588 +#: ../../mod/settings.php:589 msgid "Optional" msgstr "Valgfritt" -#: ../../mod/settings.php:599 +#: ../../mod/settings.php:600 msgid "You can't edit this application." msgstr "Du kan ikke endre dette programmet." -#: ../../mod/settings.php:642 +#: ../../mod/settings.php:643 msgid "Connected Apps" msgstr "Tilkoblede app-er" -#: ../../mod/settings.php:646 +#: ../../mod/settings.php:647 msgid "Client key starts with" msgstr "Klientnøkkel starter med" -#: ../../mod/settings.php:647 +#: ../../mod/settings.php:648 msgid "No name" msgstr "Ikke noe navn" -#: ../../mod/settings.php:648 +#: ../../mod/settings.php:649 msgid "Remove authorization" msgstr "Fjern tillatelse" @@ -4021,474 +7512,458 @@ msgstr "Fjern tillatelse" msgid "No feature settings configured" msgstr "Ingen funksjonsinnstillinger er konfigurert" -#: ../../mod/settings.php:678 +#: ../../mod/settings.php:669 msgid "Feature/Addon Settings" msgstr "Funksjons-/Tilleggsinnstillinger" -#: ../../mod/settings.php:680 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Innstillinger for den innebygde Diaspora-etterlikningen" - -#: ../../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." - -#: ../../mod/settings.php:682 -msgid "Diaspora Policy Settings" -msgstr "Innstillinger for Diaspora retningslinjer" - -#: ../../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" - -#: ../../mod/settings.php:707 +#: ../../mod/settings.php:692 msgid "Account Settings" msgstr "Kontoinnstillinger" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:693 msgid "Enter New Password:" msgstr "Skriv nytt passord:" -#: ../../mod/settings.php:709 +#: ../../mod/settings.php:694 msgid "Confirm New Password:" msgstr "Bekreft nytt passord:" -#: ../../mod/settings.php:709 +#: ../../mod/settings.php:694 msgid "Leave password fields blank unless changing" msgstr "La passordfeltene stå blanke om det ikke skal endres" -#: ../../mod/settings.php:711 ../../mod/settings.php:1046 +#: ../../mod/settings.php:696 ../../mod/settings.php:1027 msgid "Email Address:" msgstr "E-postadresse:" -#: ../../mod/settings.php:712 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Slett konto" - -#: ../../mod/settings.php:713 +#: ../../mod/settings.php:698 msgid "Remove this account including all its channels" msgstr "Slett denne kontoen inkludert alle dens kanaler" -#: ../../mod/settings.php:729 +#: ../../mod/settings.php:714 msgid "Off" msgstr "Av" -#: ../../mod/settings.php:729 +#: ../../mod/settings.php:714 msgid "On" msgstr "På" -#: ../../mod/settings.php:736 +#: ../../mod/settings.php:721 msgid "Additional Features" msgstr "Ekstra funksjoner" -#: ../../mod/settings.php:760 +#: ../../mod/settings.php:745 msgid "Connector Settings" msgstr "Koblingsinnstillinger" -#: ../../mod/settings.php:799 +#: ../../mod/settings.php:784 msgid "No special theme for mobile devices" msgstr "Ikke noe spesielt tema for mobile enheter" -#: ../../mod/settings.php:802 +#: ../../mod/settings.php:787 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Eksperimentelt)" -#: ../../mod/settings.php:805 ../../mod/admin.php:391 -msgid "mobile" -msgstr "mobil" - -#: ../../mod/settings.php:841 +#: ../../mod/settings.php:826 msgid "Display Settings" msgstr "Visningsinnstillinger" -#: ../../mod/settings.php:847 +#: ../../mod/settings.php:827 +msgid "Theme Settings" +msgstr "Temainnstillinger" + +#: ../../mod/settings.php:828 +msgid "Custom Theme Settings" +msgstr "Tilpassede temainnstillinger" + +#: ../../mod/settings.php:829 +msgid "Content Settings" +msgstr "Innholdsinnstillinger" + +#: ../../mod/settings.php:835 msgid "Display Theme:" msgstr "Visningstema:" -#: ../../mod/settings.php:848 +#: ../../mod/settings.php:836 msgid "Mobile Theme:" msgstr "Mobiltema:" -#: ../../mod/settings.php:849 +#: ../../mod/settings.php:837 msgid "Enable user zoom on mobile devices" msgstr "Skru på brukerstyrt zoom på mobile enheter" -#: ../../mod/settings.php:850 +#: ../../mod/settings.php:838 msgid "Update browser every xx seconds" msgstr "Oppdater nettleser hvert xx sekunder" -#: ../../mod/settings.php:850 +#: ../../mod/settings.php:838 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 sekunder, ikke noe maksimum" -#: ../../mod/settings.php:851 +#: ../../mod/settings.php:839 msgid "Maximum number of conversations to load at any time:" msgstr "Maksimalt antall samtaler å laste samtidig:" -#: ../../mod/settings.php:851 +#: ../../mod/settings.php:839 msgid "Maximum of 100 items" msgstr "Maksimum 100 elementer" -#: ../../mod/settings.php:852 +#: ../../mod/settings.php:840 msgid "Show emoticons (smilies) as images" msgstr "Vis emoticons (smilefjes) som bilder" -#: ../../mod/settings.php:853 +#: ../../mod/settings.php:841 msgid "Link post titles to source" msgstr "Lenk innleggets tittel til kilden" -#: ../../mod/settings.php:854 +#: ../../mod/settings.php:842 msgid "System Page Layout Editor - (advanced)" msgstr "Systemsidens layoutbehandler - (avansert)" -#: ../../mod/settings.php:857 +#: ../../mod/settings.php:845 msgid "Use blog/list mode on channel page" msgstr "Bruk blogg-/listemodus på kanalsiden" -#: ../../mod/settings.php:857 ../../mod/settings.php:858 +#: ../../mod/settings.php:845 ../../mod/settings.php:846 msgid "(comments displayed separately)" msgstr "(kommentarer vist separat)" -#: ../../mod/settings.php:858 +#: ../../mod/settings.php:846 msgid "Use blog/list mode on matrix page" msgstr "Bruk blogg-/listemodus på matrix-siden" -#: ../../mod/settings.php:859 +#: ../../mod/settings.php:847 msgid "Channel page max height of content (in pixels)" msgstr "Kanalsidens makshøyde for innhold (i pixler)" -#: ../../mod/settings.php:859 ../../mod/settings.php:860 +#: ../../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/settings.php:860 +#: ../../mod/settings.php:848 msgid "Matrix page max height of content (in pixels)" msgstr "Matrix-sidens makshøyde for innholde (i pixler)" -#: ../../mod/settings.php:894 +#: ../../mod/settings.php:882 msgid "Nobody except yourself" msgstr "Ingen unntatt deg selv" -#: ../../mod/settings.php:895 +#: ../../mod/settings.php:883 msgid "Only those you specifically allow" msgstr "Bare de du spesifikt tillater" -#: ../../mod/settings.php:896 +#: ../../mod/settings.php:884 msgid "Approved connections" msgstr "Godkjente forbindelser" -#: ../../mod/settings.php:897 +#: ../../mod/settings.php:885 msgid "Any connections" msgstr "Enhver forbindelse" -#: ../../mod/settings.php:898 +#: ../../mod/settings.php:886 msgid "Anybody on this website" msgstr "Enhver ved dette nettstedet" -#: ../../mod/settings.php:899 +#: ../../mod/settings.php:887 msgid "Anybody in this network" msgstr "Enhver i dette nettverket" -#: ../../mod/settings.php:900 +#: ../../mod/settings.php:888 msgid "Anybody authenticated" msgstr "Enhver som er autentisert" -#: ../../mod/settings.php:901 +#: ../../mod/settings.php:889 msgid "Anybody on the internet" msgstr "Enhver på Internett" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:963 msgid "Publish your default profile in the network directory" msgstr "Publiser din standardprofil i nettverkskatalogen" -#: ../../mod/settings.php:980 +#: ../../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/settings.php:984 ../../mod/profile_photo.php:366 -msgid "or" -msgstr "eller" - -#: ../../mod/settings.php:989 +#: ../../mod/settings.php:977 msgid "Your channel address is" msgstr "Din kanaladresse er" -#: ../../mod/settings.php:1037 +#: ../../mod/settings.php:1018 msgid "Channel Settings" msgstr "Kanalinnstillinger" -#: ../../mod/settings.php:1044 +#: ../../mod/settings.php:1025 msgid "Basic Settings" msgstr "Grunninnstillinger" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1028 msgid "Your Timezone:" msgstr "Din tidssone:" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1029 msgid "Default Post Location:" msgstr "Standard plassering ved innlegg:" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1029 msgid "Geographical location to display on your posts" msgstr "Geografisk plassering som vises på dine innlegg" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1030 msgid "Use Browser Location:" msgstr "Bruk nettleseren sin plassering:" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1032 msgid "Adult Content" msgstr "Voksent innhold" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1032 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/settings.php:1053 +#: ../../mod/settings.php:1034 msgid "Security and Privacy Settings" msgstr "Sikkerhets- og personverninnstillinger" -#: ../../mod/settings.php:1055 +#: ../../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/settings.php:1057 +#: ../../mod/settings.php:1038 msgid "Hide my online presence" msgstr "Skjul min tilstedeværelse online" -#: ../../mod/settings.php:1057 +#: ../../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/settings.php:1059 +#: ../../mod/settings.php:1040 msgid "Simple Privacy Settings:" msgstr "Enkle personverninnstillinger:" -#: ../../mod/settings.php:1060 +#: ../../mod/settings.php:1041 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)" -#: ../../mod/settings.php:1061 +#: ../../mod/settings.php:1042 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/settings.php:1062 +#: ../../mod/settings.php:1043 msgid "Private - default private, never open or public" msgstr "Privat - standard er privat, aldri åpen eller offentlig" -#: ../../mod/settings.php:1063 +#: ../../mod/settings.php:1044 msgid "Blocked - default blocked to/from everybody" msgstr "Blokkert - standard blokkert til/fra alle" -#: ../../mod/settings.php:1065 +#: ../../mod/settings.php:1046 msgid "Allow others to tag your posts" msgstr "Tillat andre å merke dine innlegg" -#: ../../mod/settings.php:1065 +#: ../../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/settings.php:1067 +#: ../../mod/settings.php:1048 msgid "Advanced Privacy Settings" msgstr "Avanserte personverninnstillinger" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1050 msgid "Expire other channel content after this many days" msgstr "Annet kanal innhold utløper etter så mange dager" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1050 msgid "0 or blank prevents expiration" msgstr "0 eller blankt forhindrer utløp" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1051 msgid "Maximum Friend Requests/Day:" msgstr "Maksimalt antall venneforespørsler per dag:" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1051 msgid "May reduce spam activity" msgstr "Kan redusere søppelpostaktivitet" -#: ../../mod/settings.php:1071 +#: ../../mod/settings.php:1052 msgid "Default Post Permissions" msgstr "Standard innleggstillatelser" -#: ../../mod/settings.php:1072 ../../mod/mitem.php:161 ../../mod/mitem.php:204 -msgid "(click to open/close)" -msgstr "(klikk for å åpne/lukke)" - -#: ../../mod/settings.php:1076 +#: ../../mod/settings.php:1057 msgid "Channel permissions category:" msgstr "Kategori med kanaltillatelser:" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1063 msgid "Maximum private messages per day from unknown people:" msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1063 msgid "Useful to reduce spamming" msgstr "Nyttig for å redusere søppelpost" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1066 msgid "Notification Settings" msgstr "Varslingsinnstillinger" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1067 msgid "By default post a status message when:" msgstr "Legg inn en statusmelding når du:" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1068 msgid "accepting a friend request" msgstr "aksepterer en venneforespørsel" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1069 msgid "joining a forum/community" msgstr "blir med i et forum/miljø" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1070 msgid "making an interesting profile change" msgstr "gjør en interessant profilendring" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1071 msgid "Send a notification email when:" msgstr "Send en varsel-e-post når:" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1072 msgid "You receive a connection request" msgstr "Du har mottatt en forespørsel om forbindelse" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1073 msgid "Your connections are confirmed" msgstr "Dine forbindelser er bekreftet" -#: ../../mod/settings.php:1093 +#: ../../mod/settings.php:1074 msgid "Someone writes on your profile wall" msgstr "Noen skriver på din profilvegg" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1075 msgid "Someone writes a followup comment" msgstr "Noen skriver en oppfølgende kommentar" -#: ../../mod/settings.php:1095 +#: ../../mod/settings.php:1076 msgid "You receive a private message" msgstr "Du mottar en privat melding" -#: ../../mod/settings.php:1096 +#: ../../mod/settings.php:1077 msgid "You receive a friend suggestion" msgstr "Du mottok et venneforslag" -#: ../../mod/settings.php:1097 +#: ../../mod/settings.php:1078 msgid "You are tagged in a post" msgstr "Du merkes i et innlegg" -#: ../../mod/settings.php:1098 +#: ../../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/settings.php:1101 +#: ../../mod/settings.php:1082 msgid "Show visual notifications including:" msgstr "Vis visuelle varslinger om:" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1084 msgid "Unseen matrix activity" msgstr "Usett matrixaktivitet" -#: ../../mod/settings.php:1104 +#: ../../mod/settings.php:1085 msgid "Unseen channel activity" msgstr "Usett kanalaktivitet" -#: ../../mod/settings.php:1105 +#: ../../mod/settings.php:1086 msgid "Unseen private messages" msgstr "Usette private meldinger" -#: ../../mod/settings.php:1105 ../../mod/settings.php:1110 -#: ../../mod/settings.php:1111 ../../mod/settings.php:1112 +#: ../../mod/settings.php:1086 ../../mod/settings.php:1091 +#: ../../mod/settings.php:1092 ../../mod/settings.php:1093 msgid "Recommended" msgstr "Anbefalt" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1087 msgid "Upcoming events" msgstr "Kommende hendelser" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1088 msgid "Events today" msgstr "Hendelser idag" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1089 msgid "Upcoming birthdays" msgstr "Kommende fødselsdager" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1089 msgid "Not available in all themes" msgstr "Ikke tilgjengelig i alle temaer" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1090 msgid "System (personal) notifications" msgstr "System (personlige) varslinger" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1091 msgid "System info messages" msgstr "System infomeldinger" -#: ../../mod/settings.php:1111 +#: ../../mod/settings.php:1092 msgid "System critical alerts" msgstr "System kritiske varsel" -#: ../../mod/settings.php:1112 +#: ../../mod/settings.php:1093 msgid "New connections" msgstr "Nye forbindelser" -#: ../../mod/settings.php:1113 +#: ../../mod/settings.php:1094 msgid "System Registrations" msgstr "Systemregistreringer" -#: ../../mod/settings.php:1114 +#: ../../mod/settings.php:1095 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler" -#: ../../mod/settings.php:1116 +#: ../../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/settings.php:1116 +#: ../../mod/settings.php:1097 msgid "Must be greater than 0" msgstr "Må være større enn 0" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1099 msgid "Advanced Account/Page Type Settings" msgstr "Avanserte innstillinger for konto/sidetype" -#: ../../mod/settings.php:1119 +#: ../../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/settings.php:1122 +#: ../../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/settings.php:1123 +#: ../../mod/settings.php:1104 msgid "Miscellaneous Settings" msgstr "Diverse innstillinger" -#: ../../mod/settings.php:1125 +#: ../../mod/settings.php:1105 +msgid "Default photo upload folder" +msgstr "Standard mappe for opplasting av bilder" + +#: ../../mod/settings.php:1106 +msgid "Default file upload folder" +msgstr "Standard mappe for opplasting av filer" + +#: ../../mod/settings.php:1108 msgid "Personal menu to display in your channel pages" msgstr "Personlig meny som kan vises på dine kanalsider" -#: ../../mod/settings.php:1126 ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Fjern kanal" - -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1110 msgid "Remove this channel." msgstr "Fjern denne kanalen." @@ -4500,9 +7975,44 @@ msgstr "Xchan oppslag" msgid "Lookup xchan beginning with (or webbie): " msgstr "Slå opp xchan som begynner med (eller webbie):" -#: ../../mod/xchan.php:37 ../../mod/menu.php:136 ../../mod/mitem.php:111 -msgid "Not found." -msgstr "Ikke funnet." +#: ../../mod/manage.php:130 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." + +#: ../../mod/manage.php:138 +msgid "Create a new channel" +msgstr "Lag en ny kanal" + +#: ../../mod/manage.php:161 +msgid "Current Channel" +msgstr "Gjeldende kanal" + +#: ../../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/manage.php:164 +msgid "Default Channel" +msgstr "Standardkanal" + +#: ../../mod/manage.php:165 +msgid "Make Default" +msgstr "Gjør til standard" + +#: ../../mod/manage.php:168 +#, php-format +msgid "%d new messages" +msgstr "%d nye meldinger" + +#: ../../mod/manage.php:169 +#, php-format +msgid "%d new introductions" +msgstr "%d nye introduksjoner" + +#: ../../mod/manage.php:171 +msgid "Delegated Channels" +msgstr "Delegerte kanaler" #: ../../mod/api.php:76 ../../mod/api.php:102 msgid "Authorize application connection" @@ -4522,29 +8032,150 @@ msgid "" " 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/blocks.php:99 -msgid "Block Name" -msgstr "Byggeklossens navn" +#: ../../mod/connections.php:52 ../../mod/connections.php:150 +msgid "Blocked" +msgstr "Blokkert" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal lagt til." +#: ../../mod/connections.php:57 ../../mod/connections.php:157 +msgid "Ignored" +msgstr "Ignorert" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Merkelapp fjernet" +#: ../../mod/connections.php:62 ../../mod/connections.php:171 +msgid "Hidden" +msgstr "Skjult" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Fjern merkelapp fra element" +#: ../../mod/connections.php:67 ../../mod/connections.php:164 +msgid "Archived" +msgstr "Arkivert" -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Velg merkelapp å fjerne:" +#: ../../mod/connections.php:128 +msgid "Suggest new connections" +msgstr "Foreslå nye forbindelser" -#: ../../mod/tagrm.php:133 ../../mod/photos.php:875 -msgid "Remove" -msgstr "Fjern" +#: ../../mod/connections.php:131 +msgid "New Connections" +msgstr "Nye forbindelser" + +#: ../../mod/connections.php:134 +msgid "Show pending (new) connections" +msgstr "Vis ventende (nye) forbindelser" + +#: ../../mod/connections.php:137 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle forbindelser" + +#: ../../mod/connections.php:140 +msgid "Show all connections" +msgstr "Vis alle forbindelser" + +#: ../../mod/connections.php:143 +msgid "Unblocked" +msgstr "Ikke blokkert lenger" + +#: ../../mod/connections.php:146 +msgid "Only show unblocked connections" +msgstr "Vis bare forbindelser som ikke er blokkert" + +#: ../../mod/connections.php:153 +msgid "Only show blocked connections" +msgstr "Vis bare forbindelser som er blokkert" + +#: ../../mod/connections.php:160 +msgid "Only show ignored connections" +msgstr "Vis bare ignorerte forbindelser" + +#: ../../mod/connections.php:167 +msgid "Only show archived connections" +msgstr "Vis bare arkiverte forbindelser" + +#: ../../mod/connections.php:174 +msgid "Only show hidden connections" +msgstr "Vis bare skjulte forbindelser" + +#: ../../mod/connections.php:225 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:226 +msgid "Edit connection" +msgstr "Endre forbindelse" + +#: ../../mod/connections.php:264 +msgid "Search your connections" +msgstr "Søk blant dine forbindelser" + +#: ../../mod/connections.php:265 +msgid "Finding: " +msgstr "Fant:" + +#: ../../mod/editlayout.php:112 +msgid "Delete layout?" +msgstr "Slett layout?" + +#: ../../mod/editlayout.php:178 +msgid "Edit Layout" +msgstr "Endre layout" + +#: ../../mod/editwebpage.php:153 +msgid "Delete webpage?" +msgstr "Slett webside?" + +#: ../../mod/editwebpage.php:172 +msgid "Page link title" +msgstr "Sidens lenketittel" + +#: ../../mod/editwebpage.php:222 +msgid "Edit Webpage" +msgstr "Endre webside" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Samling opprettet." + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Kunne ikke lage samling." + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Samlingen er oppdatert." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Lag en samling med kanaler." + +#: ../../mod/group.php:87 ../../mod/group.php:180 +msgid "Collection Name: " +msgstr "Navn på samling:" + +#: ../../mod/group.php:89 ../../mod/group.php:183 +msgid "Members are visible to other channels" +msgstr "Medlemmer er synlig for andre kanaler" + +#: ../../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/group.php:179 +msgid "Collection Editor" +msgstr "Samlingsbehandler" + +#: ../../mod/group.php:193 +msgid "Members" +msgstr "Medlemmer" + +#: ../../mod/group.php:195 +msgid "All Connected Channels" +msgstr "Alle tilkoblede kanaler" + +#: ../../mod/group.php:227 +msgid "Click on a channel to add or remove." +msgstr "Klikk på en kanal for å legge til eller fjerne." #: ../../mod/connect.php:56 ../../mod/connect.php:104 msgid "Continue" @@ -4589,2170 +8220,484 @@ msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" msgid "Restricted or Premium Channel" msgstr "Begrenset kanal eller premiumkanal" -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profiltreff" +#: ../../mod/viewconnections.php:59 +msgid "No connections." +msgstr "Ingen forbindelser." -#: ../../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/match.php:61 -msgid "is interested in:" -msgstr "er interessert i:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Ingen treff" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elementet er ikke tilgjengelig." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#: ../../mod/viewconnections.php:72 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Henting av URL gir følgende feil: %1$s" +msgid "Visit %s's profile [%s]" +msgstr "Besøk %s sin profil [%s]" -#: ../../mod/home.php:48 -msgid "Hubzilla - "The Network"" -msgstr "Hubzilla - "Nettverket"" +#: ../../mod/locs.php:21 ../../mod/locs.php:49 +msgid "Location not found." +msgstr "Plassering er ikke funnet." -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Velkommen til %s" +#: ../../mod/locs.php:57 +msgid "Location lookup failed." +msgstr "Oppslag på plassering mislyktes." -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Endring av bildestørrelse mislyktes." - -#: ../../mod/profile_photo.php:206 +#: ../../mod/locs.php:61 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." +"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/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bildet overstiger størrelsesbegrensningen på %d" +#: ../../mod/locs.php:93 +msgid "No locations found." +msgstr "Ingen plasseringer ble funnet." -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Kan ikke behandle bildet." +#: ../../mod/locs.php:104 +msgid "Manage Channel Locations" +msgstr "Håndter kanalplasseringer" -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Bildet er ikke tilgjengelig." +#: ../../mod/locs.php:105 +msgid "Location (address)" +msgstr "Plassering (adresse)" -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Last opp fil:" +#: ../../mod/locs.php:106 +msgid "Primary Location" +msgstr "Hovedplassering" -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Velg en profil:" +#: ../../mod/locs.php:107 +msgid "Drop location" +msgstr "Slett plassering" -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Last opp profilbilde:" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "hopp over dette steget" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "velg et bilde fra dine fotoalbum" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Beskjær bildet" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Vennligst juster bildebeskjæringen for optimal visning." - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Avslutt redigering" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Opplasting av bildet var vellykket." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Opplasting av bildet mislyktes." - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Forminsking av bildet [%s] mislyktes." - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ugyldig element." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanalen ble ikke funnet." - -#: ../../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/like.php:15 -msgid "Like/Dislike" -msgstr "Liker/Liker ikke" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Denne handlingen er begrenset til medlemmer." - -#: ../../mod/like.php:21 +#: ../../mod/post.php:234 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" +"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/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Ugyldig forespørsel." +#: ../../mod/setup.php:191 +msgid "$Projectname Server - Setup" +msgstr "$Projectname-tjener - oppsett" -#: ../../mod/like.php:143 -msgid "thing" -msgstr "ting" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Kanalen er utilgjengelig." - -#: ../../mod/like.php:228 -msgid "Previous action reversed." -msgstr "Forrige handling er omgjort." - -#: ../../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/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/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/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/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/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/like.php:481 -msgid "Action completed." -msgstr "Handling ferdig." - -#: ../../mod/like.php:482 -msgid "Thank you." -msgstr "Tusen takk." - -#: ../../mod/events.php:87 -msgid "Event can not end before it has started." -msgstr "Hendelsen kan ikke slutte før den starter." - -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 -msgid "Unable to generate preview." -msgstr "Klarer ikke å lage forhåndsvisning." - -#: ../../mod/events.php:96 -msgid "Event title and start time are required." -msgstr "Hendelsestittel og starttidspunkt er påkrevd." - -#: ../../mod/events.php:114 -msgid "Event not found." -msgstr "Hendelsen ble ikke funnet." - -#: ../../mod/events.php:396 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:418 -msgid "Edit event" -msgstr "Endre hendelse" - -#: ../../mod/events.php:419 -msgid "Delete event" -msgstr "Slett hendelse" - -#: ../../mod/events.php:473 -msgid "Create New Event" -msgstr "Lag ny hendelse" - -#: ../../mod/events.php:474 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Forrige" - -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 -msgid "Next" -msgstr "Neste" - -#: ../../mod/events.php:476 -msgid "Export" -msgstr "Eksport" - -#: ../../mod/events.php:504 -msgid "Event removed" -msgstr "Hendelse slettet" - -#: ../../mod/events.php:507 -msgid "Failed to remove event" -msgstr "Mislyktes med å slette hendelse" - -#: ../../mod/events.php:625 -msgid "Event details" -msgstr "Hendelsesdetaljer" - -#: ../../mod/events.php:626 -msgid "Starting date and Title are required." -msgstr "Startdato og Tittel er påkrevd." - -#: ../../mod/events.php:628 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparert liste)" - -#: ../../mod/events.php:630 -msgid "Event Starts:" -msgstr "Hendelsen starter:" - -#: ../../mod/events.php:637 -msgid "Finish date/time is not known or not relevant" -msgstr "Sluttdato/-tidspunkt er ikke kjent eller ikke relevant" - -#: ../../mod/events.php:639 -msgid "Event Finishes:" -msgstr "Hendelsen slutter:" - -#: ../../mod/events.php:641 ../../mod/events.php:642 -msgid "Adjust for viewer timezone" -msgstr "Juster i forhold til tilskuerens tidssone" - -#: ../../mod/events.php:641 -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/events.php:643 -msgid "Description:" -msgstr "Beskrivelse:" - -#: ../../mod/events.php:647 -msgid "Title:" -msgstr "Tittel:" - -#: ../../mod/events.php:649 -msgid "Share this event" -msgstr "Del denne hendelsen" - -#: ../../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/pubsites.php:16 -msgid "Public Sites" -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." - -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "Vurder denne hubben" - -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "Nettstedets URL" - -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "Tilgangstype" - -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "Retningslinjer for registrering" - -#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 -msgid "Location" -msgstr "Plassering" - -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "Vis vurderinger av hubben" - -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "Vurder" - -#: ../../mod/pubsites.php:31 -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/connedit.php:99 ../../mod/connections.php:51 -msgid "Could not locate selected profile." -msgstr "Fant ikke valgt profil." - -#: ../../mod/connedit.php:204 ../../mod/connections.php:94 -msgid "Connection updated." -msgstr "Forbindelsen er oppdatert." - -#: ../../mod/connedit.php:206 ../../mod/connections.php:96 -msgid "Failed to update connection record." -msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." - -#: ../../mod/connedit.php:252 -msgid "is now connected to" -msgstr "er nå forbundet til" - -#: ../../mod/connedit.php:365 -msgid "Could not access address book record." -msgstr "Fikk ikke tilgang til informasjonen i adresseboken." - -#: ../../mod/connedit.php:379 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." - -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" -msgstr "Kanalen er ikke blokkert lenger" - -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" -msgstr "Kanalen har blitt blokkert" - -#: ../../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/connedit.php:398 -msgid "Channel has been unignored" -msgstr "Kanalen er ikke lenger ignorert" - -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" -msgstr "Kanalen blir ignorert" - -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" -msgstr "Kanalen er ikke lenger arkivert" - -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" -msgstr "Kanalen er arkivert" - -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" -msgstr "Kanalen er ikke lenger skjult" - -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" -msgstr "Kanalen er blitt skjult" - -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" -msgstr "Kanalen har blitt godkjent" - -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" -msgstr "Kanalen er ikke lenger godkjent" - -#: ../../mod/connedit.php:467 -msgid "Connection has been removed." -msgstr "Forbindelsen har blitt fjernet." - -#: ../../mod/connedit.php:487 -#, php-format -msgid "View %s's profile" -msgstr "Vis %s sin profil" - -#: ../../mod/connedit.php:491 -msgid "Refresh Permissions" -msgstr "Oppfrisk tillatelser" - -#: ../../mod/connedit.php:494 -msgid "Fetch updated permissions" -msgstr "Hent oppdaterte tillatelser" - -#: ../../mod/connedit.php:498 -msgid "Recent Activity" -msgstr "Nylig aktivitet" - -#: ../../mod/connedit.php:501 -msgid "View recent posts and comments" -msgstr "Vis nylige innlegg og kommentarer" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:818 -msgid "Unblock" -msgstr "Ikke blokker lenger" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:817 -msgid "Block" -msgstr "Blokker" - -#: ../../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/connedit.php:514 ../../mod/connedit.php:695 -msgid "Unignore" -msgstr "Ikke ignorer lenger" - -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../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/connedit.php:520 -msgid "Unarchive" -msgstr "Ikke arkiver lenger" - -#: ../../mod/connedit.php:520 -msgid "Archive" -msgstr "Arkiver" - -#: ../../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/connedit.php:526 -msgid "Unhide" -msgstr "Ikke skjul lenger" - -#: ../../mod/connedit.php:526 -msgid "Hide" -msgstr "Skjul" - -#: ../../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/connedit.php:536 -msgid "Delete this connection" -msgstr "Slett denne forbindelsen" - -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 -msgid "Approve this connection" -msgstr "Godta denne forbindelsen" - -#: ../../mod/connedit.php:611 -msgid "Accept connection to allow communication" -msgstr "Godta denne forbindelsen for å tillate kommunikasjon" - -#: ../../mod/connedit.php:627 -#, php-format -msgid "Connections: settings for %s" -msgstr "Forbindelser: innstillinger for %s" - -#: ../../mod/connedit.php:628 -msgid "Apply these permissions automatically" -msgstr "Bruk disse tillatelsene automatisk" - -#: ../../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/connedit.php:636 -msgid "Slide to adjust your degree of friendship" -msgstr "Flytt for å justere din grad av vennskap" - -#: ../../mod/connedit.php:637 ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Vurdering (denne informasjonen er offentlig)" - -#: ../../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/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/connedit.php:648 -msgid "inherited" -msgstr "arvet" - -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" -msgstr "Forbindelsen har ingen individuelle tillatelser!" - -#: ../../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/connedit.php:654 -msgid "Profile Visibility" -msgstr "Profilens synlighet" - -#: ../../mod/connedit.php:655 -#, 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/connedit.php:656 -msgid "Contact Information / Notes" -msgstr "Kontaktinformasjon / Merknader" - -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" -msgstr "Endre kontaktmerknader" - -#: ../../mod/connedit.php:659 -msgid "Their Settings" -msgstr "Deres innstillinger" - -#: ../../mod/connedit.php:660 -msgid "My Settings" -msgstr "Mine innstillinger" - -#: ../../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/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" -msgstr "Tøm/Skru av Automatiske tillatelser" - -#: ../../mod/connedit.php:664 -msgid "Forum Members" -msgstr "Forummedlemmer" - -#: ../../mod/connedit.php:665 -msgid "Soapbox" -msgstr "Talerstol" - -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" -msgstr "Full deling (typiske tillatelser i sosiale nettverk)" - -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " -msgstr "Forsiktig deling" - -#: ../../mod/connedit.php:668 -msgid "Follow Only" -msgstr "Bare følg" - -#: ../../mod/connedit.php:669 -msgid "Individual Permissions" -msgstr "Individuelle tillatelser" - -#: ../../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/connedit.php:671 -msgid "Advanced Permissions" -msgstr "Avanserte tillatelser" - -#: ../../mod/connedit.php:672 -msgid "Simple Permissions (select one and submit)" -msgstr "Enkle tillatelser (velg en og lagre)" - -#: ../../mod/connedit.php:676 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Besøk %s sin profil - %s" - -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" -msgstr "Blokker/Ikke blokker kontakt" - -#: ../../mod/connedit.php:678 -msgid "Ignore contact" -msgstr "Ignorer kontakt" - -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" -msgstr "Reparer URL-innstillinger" - -#: ../../mod/connedit.php:680 -msgid "View conversations" -msgstr "Vis samtaler" - -#: ../../mod/connedit.php:682 -msgid "Delete contact" -msgstr "Slett kontakt" - -#: ../../mod/connedit.php:686 -msgid "Last update:" -msgstr "Siste oppdatering:" - -#: ../../mod/connedit.php:688 -msgid "Update public posts" -msgstr "Oppdater offentlige innlegg" - -#: ../../mod/connedit.php:690 -msgid "Update now" -msgstr "Oppdater nå" - -#: ../../mod/connedit.php:696 -msgid "Currently blocked" -msgstr "For øyeblikket blokkert" - -#: ../../mod/connedit.php:697 -msgid "Currently ignored" -msgstr "For øyeblikket ignorert" - -#: ../../mod/connedit.php:698 -msgid "Currently archived" -msgstr "For øyeblikket arkivert" - -#: ../../mod/connedit.php:699 -msgid "Currently pending" -msgstr "For øyeblikket ventende" - -#: ../../mod/dav.php:121 -msgid "Hubzilla channel" -msgstr "Hubzilla-kanal" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Samling opprettet." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Kunne ikke lage samling." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Samlingen er oppdatert." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Lag en samling med kanaler." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Navn på samling:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Medlemmer er synlig for andre kanaler" - -#: ../../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/group.php:182 -msgid "Collection Editor" -msgstr "Samlingsbehandler" - -#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 -msgid "Members" -msgstr "Medlemmer" - -#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 -msgid "All Connected Channels" -msgstr "Alle tilkoblede kanaler" - -#: ../../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/siteinfo.php:106 -#, php-format -msgid "Version %s" -msgstr "Versjon %s" - -#: ../../mod/siteinfo.php:127 -msgid "Installed plugins/addons/apps:" -msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" - -#: ../../mod/siteinfo.php:140 -msgid "No installed plugins/addons/apps" -msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" - -#: ../../mod/siteinfo.php:149 -msgid "Red" -msgstr "Red" - -#: ../../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/siteinfo.php:152 -msgid "Tag: " -msgstr "Merkelapp:" - -#: ../../mod/siteinfo.php:154 -msgid "Last background fetch: " -msgstr "Siste innhenting i bakgrunnen:" - -#: ../../mod/siteinfo.php:157 -msgid "Running at web location" -msgstr "Kjører på webplasseringen" - -#: ../../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/siteinfo.php:159 -msgid "Bug reports and issues: please visit" -msgstr "Feilmeldinger og feilretting: vennligst besøk" - -#: ../../mod/siteinfo.php:162 -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" - -#: ../../mod/siteinfo.php:164 -msgid "Site Administrators" -msgstr "Nettstedsadministratorer" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Hjelp:" - -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "Ikke funnet" - -#: ../../mod/setup.php:166 -msgid "Hubzilla Server - Setup" -msgstr "Hubzilla tjener - oppsett" - -#: ../../mod/setup.php:172 +#: ../../mod/setup.php:195 msgid "Could not connect to database." msgstr "Fikk ikke kontakt med databasen." -#: ../../mod/setup.php:176 +#: ../../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/setup.php:183 +#: ../../mod/setup.php:206 msgid "Could not create table." msgstr "Kunne ikke lage tabellen." -#: ../../mod/setup.php:189 +#: ../../mod/setup.php:211 msgid "Your site database has been installed." msgstr "Databasen til ditt nettsted har blitt installert." -#: ../../mod/setup.php:194 +#: ../../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/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 +#: ../../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/setup.php:261 +#: ../../mod/setup.php:281 msgid "System check" msgstr "Systemsjekk" -#: ../../mod/setup.php:266 +#: ../../mod/setup.php:286 msgid "Check again" msgstr "Sjekk igjen" -#: ../../mod/setup.php:289 +#: ../../mod/setup.php:308 msgid "Database connection" msgstr "Databaseforbindelse" -#: ../../mod/setup.php:290 +#: ../../mod/setup.php:309 msgid "" -"In order to install Hubzilla we need to know how to connect to your " +"In order to install $Projectname we need to know how to connect to your " "database." -msgstr "For å installere Hubzilla må du oppgi hvordan din database kan kontaktes." +msgstr "For å installere $Projectname må du oppgi hvordan din database kan kontaktes." -#: ../../mod/setup.php:291 +#: ../../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/setup.php:292 +#: ../../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/setup.php:296 +#: ../../mod/setup.php:315 msgid "Database Server Name" msgstr "Navn på databasetjener" -#: ../../mod/setup.php:296 +#: ../../mod/setup.php:315 msgid "Default is localhost" msgstr "Standard er localhost" -#: ../../mod/setup.php:297 +#: ../../mod/setup.php:316 msgid "Database Port" msgstr "Databaseport" -#: ../../mod/setup.php:297 +#: ../../mod/setup.php:316 msgid "Communication port number - use 0 for default" msgstr "Kommunikasjonsportnummer - bruk 0 for standard" -#: ../../mod/setup.php:298 +#: ../../mod/setup.php:317 msgid "Database Login Name" msgstr "Database innloggingsnavn" -#: ../../mod/setup.php:299 +#: ../../mod/setup.php:318 msgid "Database Login Password" msgstr "Database innloggingspassord" -#: ../../mod/setup.php:300 +#: ../../mod/setup.php:319 msgid "Database Name" msgstr "Databasenavn" -#: ../../mod/setup.php:301 +#: ../../mod/setup.php:320 msgid "Database Type" msgstr "Databasetype" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 +#: ../../mod/setup.php:322 ../../mod/setup.php:363 msgid "Site administrator email address" msgstr "E-postadressen til administrator ved nettstedet" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 +#: ../../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/setup.php:304 ../../mod/setup.php:349 +#: ../../mod/setup.php:323 ../../mod/setup.php:365 msgid "Website URL" msgstr "Nettstedets URL" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 +#: ../../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/setup.php:307 ../../mod/setup.php:352 +#: ../../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/setup.php:335 +#: ../../mod/setup.php:352 msgid "Site settings" msgstr "Nettstedets innstillinger" -#: ../../mod/setup.php:395 +#: ../../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/setup.php:396 +#: ../../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/setup.php:400 +#: ../../mod/setup.php:422 msgid "PHP executable path" msgstr "PHP-kjørefilens sti" -#: ../../mod/setup.php:400 +#: ../../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/setup.php:405 +#: ../../mod/setup.php:427 msgid "Command line PHP" msgstr "Kommandolinje PHP" -#: ../../mod/setup.php:414 +#: ../../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/setup.php:415 +#: ../../mod/setup.php:437 msgid "This is required for message delivery to work." msgstr "Dette er påkrevd for at meldingslevering skal virke." -#: ../../mod/setup.php:417 +#: ../../mod/setup.php:440 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: ../../mod/setup.php:438 +#: ../../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/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/setup.php:465 +msgid "PHP upload limits" +msgstr "PHP opplastingsgrenser" + +#: ../../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/setup.php:439 +#: ../../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/setup.php:441 +#: ../../mod/setup.php:492 msgid "Generate encryption keys" msgstr "Lag krypteringsnøkler" -#: ../../mod/setup.php:448 +#: ../../mod/setup.php:504 msgid "libCurl PHP module" msgstr "libCurl PHP-modul" -#: ../../mod/setup.php:449 +#: ../../mod/setup.php:505 msgid "GD graphics PHP module" msgstr "GD graphics PHP-modul" -#: ../../mod/setup.php:450 +#: ../../mod/setup.php:506 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP-modul" -#: ../../mod/setup.php:451 +#: ../../mod/setup.php:507 msgid "mysqli or postgres PHP module" msgstr "MySQLi eller Postgres PHP modul" -#: ../../mod/setup.php:452 +#: ../../mod/setup.php:508 msgid "mb_string PHP module" msgstr "mb_string PHP-modul" -#: ../../mod/setup.php:453 +#: ../../mod/setup.php:509 msgid "mcrypt PHP module" msgstr "mcrypt PHP-modul" -#: ../../mod/setup.php:458 ../../mod/setup.php:460 +#: ../../mod/setup.php:510 +msgid "xml PHP module" +msgstr "XML PHP modul" + +#: ../../mod/setup.php:514 ../../mod/setup.php:516 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite-modul" -#: ../../mod/setup.php:458 +#: ../../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/setup.php:464 ../../mod/setup.php:467 +#: ../../mod/setup.php:520 ../../mod/setup.php:523 msgid "proc_open" msgstr "proc_open" -#: ../../mod/setup.php:464 +#: ../../mod/setup.php:520 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" -#: ../../mod/setup.php:472 +#: ../../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/setup.php:476 +#: ../../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/setup.php:480 +#: ../../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/setup.php:484 +#: ../../mod/setup.php:540 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/setup.php:488 +#: ../../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/setup.php:492 +#: ../../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/setup.php:508 +#: ../../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/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/setup.php:509 +#: ../../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/setup.php:510 +#: ../../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/setup.php:511 +#: ../../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/setup.php:514 +#: ../../mod/setup.php:576 msgid ".htconfig.php is writable" msgstr ".htconfig.php kan skrives til" -#: ../../mod/setup.php:524 +#: ../../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/setup.php:525 +#: ../../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/setup.php:526 ../../mod/setup.php:544 +#: ../../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/setup.php:527 +#: ../../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/setup.php:530 +#: ../../mod/setup.php:596 #, php-format msgid "%s is writable" msgstr "%s kan skrives til" -#: ../../mod/setup.php:543 +#: ../../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/setup.php:547 +#: ../../mod/setup.php:616 msgid "store is writable" msgstr "lageret kan skrives til" -#: ../../mod/setup.php:577 +#: ../../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/setup.php:578 +#: ../../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/setup.php:579 +#: ../../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/setup.php:580 +#: ../../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/setup.php:581 +#: ../../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/setup.php:582 +#: ../../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/setup.php:584 +#: ../../mod/setup.php:656 msgid "SSL certificate validation" msgstr "SSL sertifikat-kontroll" -#: ../../mod/setup.php:590 +#: ../../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/setup.php:592 +#: ../../mod/setup.php:665 msgid "Url rewrite is working" msgstr "URL rewrite virker" -#: ../../mod/setup.php:602 +#: ../../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 "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener." -#: ../../mod/setup.php:625 +#: ../../mod/setup.php:698 msgid "Errors encountered creating database tables." msgstr "Feil oppstod under opprettelsen av databasetabeller." -#: ../../mod/setup.php:660 +#: ../../mod/setup.php:732 msgid "

What next

" msgstr "

Hva gjenstår

" -#: ../../mod/setup.php:661 +#: ../../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/common.php:10 -msgid "No channel." -msgstr "Ingen kanal." +#: ../../mod/sharedwithme.php:94 +msgid "Files: shared with me" +msgstr "Filer: delt med meg" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Felles forbindelser" +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "NY" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Ingen forbindelser felles." +#: ../../mod/sharedwithme.php:99 +msgid "Remove all files" +msgstr "Fjern alle filer" -#: ../../mod/id.php:8 -msgid "First Name" -msgstr "Fornavn" +#: ../../mod/sharedwithme.php:100 +msgid "Remove this file" +msgstr "Fjern denne filen" -#: ../../mod/id.php:9 -msgid "Last Name" -msgstr "Etternavn" - -#: ../../mod/id.php:10 -msgid "Nickname" -msgstr "Kallenavn" - -#: ../../mod/id.php:11 -msgid "Full Name" -msgstr "Fullt navn" - -#: ../../mod/id.php:17 -msgid "Profile Photo 16px" -msgstr "Profilbilde 16px" - -#: ../../mod/id.php:18 -msgid "Profile Photo 32px" -msgstr "Profilbilde 32px" - -#: ../../mod/id.php:19 -msgid "Profile Photo 48px" -msgstr "Profilbilde 48px" - -#: ../../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/id.php:24 -msgid "Homepage URL" -msgstr "Hjemmeside URL" - -#: ../../mod/id.php:26 -msgid "Birth Year" -msgstr "Fødselsår" - -#: ../../mod/id.php:27 -msgid "Birth Month" -msgstr "Fødselsmåne" - -#: ../../mod/id.php:28 -msgid "Birth Day" -msgstr "Fødselsdag" - -#: ../../mod/id.php:29 -msgid "Birthdate" -msgstr "Fødselsdato" - -#: ../../mod/id.php:30 ../../mod/profiles.php:431 -msgid "Gender" -msgstr "Kjønn" - -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Blokkert" - -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Ignorert" - -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Skjult" - -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Arkivert" - -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Alle" - -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Foreslå nye forbindelser" - -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Nye forbindelser" - -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Vis ventende (nye) forbindelser" - -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle forbindelser" - -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Vis alle forbindelser" - -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Ikke blokkert lenger" - -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Vis bare forbindelser som ikke er blokkert" - -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Vis bare forbindelser som er blokkert" - -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Vis bare ignorerte forbindelser" - -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Vis bare arkiverte forbindelser" - -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Vis bare skjulte forbindelser" - -#: ../../mod/connections.php:372 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Endre forbindelse" - -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Søk blant dine forbindelser" - -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Fant:" - -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "nettside" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "byggekloss" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "layout" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%s element installert" - -#: ../../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/cloud.php:120 -msgid "Hubzilla - Guests: Username: {your email address}, Password: +++" -msgstr "Hubzilla - gjester: brukernavn: {din e-postadresse}, passord: +++" - -#: ../../mod/item.php:165 -msgid "Unable to locate original post." -msgstr "Ikke i stand til å finne opprinnelig innlegg." - -#: ../../mod/item.php:424 -msgid "Empty post discarded." -msgstr "Tomt innlegg forkastet." - -#: ../../mod/item.php:466 -msgid "Executable content type not permitted to this channel." -msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." - -#: ../../mod/item.php:865 -msgid "System error. Post not saved." -msgstr "Systemfeil. Innlegg ble ikke lagret." - -#: ../../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/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/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/thing.php:96 -msgid "Thing updated" -msgstr "Tingen er oppdatert" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Objektlagring: mislyktes" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Ting lagt til" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Vis ting" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "element ble ikke funnet." - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Endre ting" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Velg en profil" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Legg inn en aktivitet" - -#: ../../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/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Navn på ting for eksempel noe" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL til ting (valgfritt)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL til bilde av ting (valgfritt)" - -#: ../../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/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Lagre bokmerke" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL-en til bokmerket" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Beskrivelse" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Eller skriv nytt navn på bokmerkemappe" - -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "Ingen flere systemvarsler." - -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "Systemvarsler" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "nettverk" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout er oppdatert." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Endre beskrivelsen av systemsiden" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layouten ble ikke funnet." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulnavn:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Layout-hjelp" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- velg -" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjenesteplan tillater bare %d kanaler." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Ingenting å importere." - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Ikke i stand til å laste ned data fra gammel tjener" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Importert fil er tom." - -#: ../../mod/import.php:106 +#: ../../mod/suggest.php:35 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/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." - -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Kanalkloning mislyktes. Import mislyktes." - -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Klonet kanal ble ikke funnet. Import mislyktes." - -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import ferdig." - -#: ../../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/import.php:492 -msgid "Import Channel" -msgstr "Importer kanal" - -#: ../../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/import.php:494 -msgid "File to Upload" -msgstr "Fil som skal lastes opp" - -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" - -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamle identitetsadresse (xyz@example.com)" - -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Din gamle innloggings e-postadresse" - -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Ditt gamle innloggingspassord" - -#: ../../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/import.php:500 -msgid "Make this hub my primary location" -msgstr "Gjør dette nettstedet til min primære plassering" - -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Importerer eksisterende innlegg hvis mulig." - -#: ../../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/editlayout.php:108 -msgid "Edit Layout" -msgstr "Endre layout" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Slett layout?" - -#: ../../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/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/editlayout.php:150 ../../mod/editwebpage.php:185 -#: ../../mod/editpost.php:124 ../../mod/editblock.php:154 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Legg i" - -#: ../../mod/editlayout.php:183 -msgid "Delete Layout" -msgstr "Slett layout" - -#: ../../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/chat.php:167 -msgid "Room not found" -msgstr "Rommet ble ikke funnet" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Forlat rom" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Slett dette rommet" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Jeg er borte akkurat nå" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Jeg er online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Bokmerk dette rommet" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nytt chatrom" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Navn på chatrom" - -#: ../../mod/chat.php:225 -#, 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)" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Ingen gyldig konto funnet." - -#: ../../mod/lostpass.php:29 -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 -#, php-format -msgid "Site Member (%s)" -msgstr "Nettstedsmedlem (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Forespurt om å tilbakestille passord hos %s" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"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 -msgid "Password Reset" -msgstr "Tilbakestill passord" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Ditt passord har blitt tilbakestilt som forespurt." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Ditt nye passord er" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klikke her for å logge inn" - -#: ../../mod/lostpass.php:90 -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 -#, php-format -msgid "Your password has changed at %s" -msgstr "Ditt passord er endret hos %s" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Glemt passord ditt?" - -#: ../../mod/lostpass.php:123 -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 -msgid "Email Address" -msgstr "E-postadresse" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Tilbakestill" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Nettsted:" - -#: ../../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/editpost.php:31 -msgid "Item is not editable" -msgstr "Elementet kan ikke endres" - -#: ../../mod/editpost.php:42 ../../mod/rpost.php:98 -msgid "Edit post" -msgstr "Endre innlegg" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Slett element?" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Grensen for totalt antall invitasjoner er overskredet." - -#: ../../mod/invite.php:49 -#, 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." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : meldingslevering feilet." - -#: ../../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/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du har ikke flere invitasjoner tilgjengelig" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Send invitasjoner" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Skriv e-postadresser, en per linje:" - -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Din melding:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on Hubzilla." -msgstr "Du er velkommen til å bli med i mitt fellesskap på Hubzilla." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Du må oppgi denne invitasjonskoden:" - -#: ../../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/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/invite.php:138 -msgid "or visit " -msgstr "eller besøk" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klikk [Forbindelse]" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Plassering er ikke funnet." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "Primær plassering kan ikke fjernes." - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Ingen plasseringer ble funnet." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Håndter kanalplasseringer" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Plassering (adresse)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Hovedplassering" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Slett plassering" - -#: ../../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:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Kanalnavn" - -#: ../../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/menu.php:31 -msgid "Menu updated." -msgstr "Menyen er oppdatert." - -#: ../../mod/menu.php:35 -msgid "Unable to update menu." -msgstr "Ikke i stand til å oppdatere meny." - -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Meny laget." - -#: ../../mod/menu.php:44 -msgid "Unable to create menu." -msgstr "Ikke i stand til å lage meny." - -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Håndtere menyer" - -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Slett" - -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Bokmerker tillatt" - -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Lag en ny meny" - -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Slett denne menyen" - -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Endre menyinnholdet" - -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Endre denne menyen" - -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Ny meny" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Menynavn" - -#: ../../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/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Menytittel" - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" -msgstr "Menytittelen andre ser" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Tillat bokmerker" - -#: ../../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/menu.php:108 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menyen ble ikke funnet." - -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Meny slettet." - -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." -msgstr "Menyen kunne ikke bli slettet." - -#: ../../mod/menu.php:122 -msgid "Edit Menu" -msgstr "Endre meny" - -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" -msgstr "Legg til eller fjern punkter i denne menyen" - -#: ../../mod/menu.php:130 ../../mod/mitem.php:213 -msgid "Modify" -msgstr "Endre" - -#: ../../mod/filestorage.php:81 -msgid "Permission Denied." -msgstr "Tillatelse avvist." - -#: ../../mod/filestorage.php:97 -msgid "File not found." -msgstr "Filen ble ikke funnet." - -#: ../../mod/filestorage.php:140 -msgid "Edit file permissions" -msgstr "Endre filtillatelser" - -#: ../../mod/filestorage.php:149 -msgid "Set/edit permissions" -msgstr "Angi/endre tillatelser" - -#: ../../mod/filestorage.php:150 -msgid "Include all files and sub folders" -msgstr "Inkluder alle filer og undermapper" - -#: ../../mod/filestorage.php:151 -msgid "Return to file list" -msgstr "Gå tilbake til filoversikten" - -#: ../../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/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/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Legg ved denne filen i et nytt innlegg" - -#: ../../mod/filestorage.php:157 -msgid "Show URL to this file" -msgstr "Vis URLen til denne filen" - -#: ../../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/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakten ble ikke funnet." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Venneforespørsel sendt." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Foreslå venner" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Foreslå en venn for %s" - -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Hubben ble ikke funnet." - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Prikke/oppildne" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "prikke, oppildne eller gjør andre ting med noen" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Mottaker" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Velg hva du ønsker å gjøre med mottakeren" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Gjør dette innlegget privat" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ugyldig profil-identifikator." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Endre profilsynlighet" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klikk på en kontakt for å legge til eller fjerne." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Synlig for" - -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Ekstern personverninformasjon er ikke tilgjengelig." - -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Synlig for:" +"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:18 ../../mod/profiles.php:174 #: ../../mod/profiles.php:231 ../../mod/profiles.php:600 @@ -6823,10 +8768,6 @@ msgstr "Hjemmeside" msgid "Interests" msgstr "Interesser" -#: ../../mod/profiles.php:447 ../../mod/admin.php:950 -msgid "Address" -msgstr "Adresse" - #: ../../mod/profiles.php:537 msgid "Profile updated." msgstr "Profilen er oppdatert." @@ -6991,7 +8932,7 @@ msgstr "Skole/utdanning" msgid "This is your default profile." msgstr "Dette er din standardprofil." -#: ../../mod/profiles.php:728 ../../mod/directory.php:207 +#: ../../mod/profiles.php:728 msgid "Age: " msgstr "Alder:" @@ -7007,1887 +8948,232 @@ msgstr "Legg til profilting" msgid "Include desirable objects in your profile" msgstr "Inkluder ønskverdige objekter i din profil" -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Ingen vurderinger" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ugyldig profil-identifikator." -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Vurderinger" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Endre profilsynlighet" -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Vurdering:" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klikk på en kontakt for å legge til eller fjerne." -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Nettsted:" +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Synlig for" -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Beskrivelse:" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Velg en bokmerkemappe" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protokollfeil. Ingen ID ble returnert." +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Lagre bokmerke" -#: ../../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/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL-en til bokmerket" -#: ../../mod/directory.php:213 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d vurdering" -msgstr[1] "%d vurderinger" +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Eller skriv nytt navn på bokmerkemappe" -#: ../../mod/directory.php:225 -msgid "Gender: " -msgstr "Kjønn:" +#: ../../mod/import_items.php:101 +msgid "Import completed" +msgstr "Import ferdig" -#: ../../mod/directory.php:227 -msgid "Status: " -msgstr "Status:" +#: ../../mod/import_items.php:119 +msgid "Import Items" +msgstr "Importer elementer" -#: ../../mod/directory.php:229 -msgid "Homepage: " -msgstr "Hjemmeside:" - -#: ../../mod/directory.php:232 -msgid "Hometown: " -msgstr "Hjemby:" - -#: ../../mod/directory.php:234 -msgid "About: " -msgstr "Om:" - -#: ../../mod/directory.php:292 -msgid "Public Forum:" -msgstr "Offentlig forum:" - -#: ../../mod/directory.php:295 -msgid "Keywords: " -msgstr "Nøkkelord:" - -#: ../../mod/directory.php:350 -msgid "Finding:" -msgstr "Finner:" - -#: ../../mod/directory.php:355 -msgid "next page" -msgstr "Neste side" - -#: ../../mod/directory.php:355 -msgid "previous page" -msgstr "Forrige side" - -#: ../../mod/directory.php:372 -msgid "No entries (some entries may be hidden)." -msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." - -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Eksporter kanal" - -#: ../../mod/uexport.php:35 +#: ../../mod/import_items.php:120 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." +"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." -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Eksporter innhold" +#: ../../view/theme/redbasic/php/config.php:82 +msgid "Focus (Hubzilla default)" +msgstr "Focus (Hubzilla standardtema)" -#: ../../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/viewconnections.php:58 -msgid "No connections." -msgstr "Ingen forbindelser." - -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besøk %s sin profil [%s]" - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "Målets signatur er ugyldig" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Temainnstillinger er oppdatert." - -#: ../../mod/admin.php:93 ../../mod/admin.php:440 -msgid "Site" -msgstr "Nettsted" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Kontoer" - -#: ../../mod/admin.php:95 ../../mod/admin.php:942 -msgid "Channels" -msgstr "Kanaler" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1033 ../../mod/admin.php:1073 -msgid "Plugins" -msgstr "Tilleggsfunksjoner" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1233 ../../mod/admin.php:1268 -msgid "Themes" -msgstr "Temaer" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Inspiser kø" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Profilinnstillinger" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "Databaseoppdateringer" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1351 -msgid "Logs" -msgstr "Logger" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Tilleggsfunksjoner" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Brukerregistreringer som venter på bekreftelse" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# Kontoer" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# blokkerte kontoer" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "# utgåtte kontoer" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "# kontoer som holder på å gå ut" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# Kanaler" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "# hoved" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# kloner" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "Meldingskø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/admin.php:241 -msgid "Summary" -msgstr "Sammendrag" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Registrerte kontoer" - -#: ../../mod/admin.php:245 ../../mod/admin.php:537 -msgid "Pending registrations" -msgstr "Ventende registreringer" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Registrerte kanaler" - -#: ../../mod/admin.php:247 ../../mod/admin.php:538 -msgid "Active plugins" -msgstr "Aktive tilleggsfunksjoner" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Versjon" - -#: ../../mod/admin.php:356 -msgid "Site settings updated." -msgstr "Nettstedsinnstillinger er oppdatert." - -#: ../../mod/admin.php:393 -msgid "experimental" -msgstr "eksperimentell" - -#: ../../mod/admin.php:395 -msgid "unsupported" -msgstr "ikke støttet" - -#: ../../mod/admin.php:420 -msgid "Yes - with approval" -msgstr "Ja - med godkjenning" - -#: ../../mod/admin.php:426 -msgid "My site is not a public server" -msgstr "Mitt nettsted er ikke en offentlig tjeneste" - -#: ../../mod/admin.php:427 -msgid "My site has paid access only" -msgstr "Mitt nettsted gir kun tilgang mot betaling" - -#: ../../mod/admin.php:428 -msgid "My site has free access only" -msgstr "Mitt nettsted har kun gratis tilgang" - -#: ../../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/admin.php:442 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registrering" - -#: ../../mod/admin.php:443 -msgid "File upload" -msgstr "Last opp fil" - -#: ../../mod/admin.php:444 -msgid "Policies" -msgstr "Retningslinjer" - -#: ../../mod/admin.php:449 -msgid "Site name" -msgstr "Nettstedets navn" - -#: ../../mod/admin.php:450 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:451 -msgid "Administrator Information" -msgstr "Administratorinformasjon" - -#: ../../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/admin.php:452 -msgid "System language" -msgstr "Systemspråk" - -#: ../../mod/admin.php:453 -msgid "System theme" -msgstr "Systemtema" - -#: ../../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/admin.php:454 -msgid "Mobile system theme" -msgstr "Mobilt systemtema" - -#: ../../mod/admin.php:454 -msgid "Theme for mobile devices" -msgstr "Tema for mobile enheter" - -#: ../../mod/admin.php:456 -msgid "Enable Diaspora Protocol" -msgstr "Skru på Diaspora-protokollen" - -#: ../../mod/admin.php:456 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Samhandling med Diaspora og Friendica - eksperimentell" - -#: ../../mod/admin.php:457 -msgid "Allow Feeds as Connections" -msgstr "Tillat strømmer som forbindelser" - -#: ../../mod/admin.php:457 -msgid "(Heavy system resource usage)" -msgstr "(Tung bruk av systemressurser)" - -#: ../../mod/admin.php:458 -msgid "Maximum image size" -msgstr "Største bildestørrelse" - -#: ../../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/admin.php:459 -msgid "Does this site allow new member registration?" -msgstr "Tillater dette nettstedet registrering av nye medlemmer?" - -#: ../../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/admin.php:461 -msgid "Register text" -msgstr "Registreringstekst" - -#: ../../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/admin.php:462 -msgid "Accounts abandoned after x days" -msgstr "Kontoer forlatt etter x dager" - -#: ../../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/admin.php:463 -msgid "Allowed friend domains" -msgstr "Tillatte vennedomener" - -#: ../../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/admin.php:464 -msgid "Allowed email domains" -msgstr "Tillate e-postdomener" - -#: ../../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/admin.php:465 -msgid "Not allowed email domains" -msgstr "Ikke tillatte e-postdomener" - -#: ../../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/admin.php:466 -msgid "Block public" -msgstr "Blokker offentlig tilgang" - -#: ../../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/admin.php:467 -msgid "Verify Email Addresses" -msgstr "Bekreft e-postadresser" - -#: ../../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/admin.php:468 -msgid "Force publish" -msgstr "Tving publisering" - -#: ../../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/admin.php:469 -msgid "Disable discovery tab" -msgstr "Skru av oppdagelsesfanen" - -#: ../../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/admin.php:470 -msgid "No login on Homepage" -msgstr "Ingen innlogging på hjemmesiden" - -#: ../../mod/admin.php:470 -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)." - -#: ../../mod/admin.php:472 -msgid "Proxy user" -msgstr "Brukernavn mellomtjener" - -#: ../../mod/admin.php:473 -msgid "Proxy URL" -msgstr "Mellomtjener URL" - -#: ../../mod/admin.php:474 -msgid "Network timeout" -msgstr "Nettverk tidsavbrudd" - -#: ../../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/admin.php:475 -msgid "Delivery interval" -msgstr "Leveringsinterval" - -#: ../../mod/admin.php:475 -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" - -#: ../../mod/admin.php:476 -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." - -#: ../../mod/admin.php:477 -msgid "Maximum Load Average" -msgstr "Største belastningsgjennomsnitt" - -#: ../../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/admin.php:525 -msgid "No server found" -msgstr "Ingen tjener funnet" - -#: ../../mod/admin.php:532 ../../mod/admin.php:821 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:532 -msgid "for channel" -msgstr "for kanalen" - -#: ../../mod/admin.php:532 -msgid "on server" -msgstr "på tjener" - -#: ../../mod/admin.php:532 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:534 -msgid "Server" -msgstr "Tjener" - -#: ../../mod/admin.php:551 -msgid "Update has been marked successful" -msgstr "Oppdateringen har blitt merket som en suksess" - -#: ../../mod/admin.php:561 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Utføring av %s feilet. Sjekk systemlogger." - -#: ../../mod/admin.php:564 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Oppdatering %s ble gjennomført med suksess." - -#: ../../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/admin.php:571 -#, php-format -msgid "Update function %s could not be found." -msgstr "Oppdatering av funksjon %s kunne ikke finnes." - -#: ../../mod/admin.php:587 -msgid "No failed updates." -msgstr "Ingen mislykkede oppdateringer." - -#: ../../mod/admin.php:591 -msgid "Failed Updates" -msgstr "Mislykkede oppdateringer" - -#: ../../mod/admin.php:593 -msgid "Mark success (if update was manually applied)" -msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" - -#: ../../mod/admin.php:594 -msgid "Attempt to execute this update step automatically" -msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" - -#: ../../mod/admin.php:628 -msgid "Queue Statistics" -msgstr "Køstatistikk" - -#: ../../mod/admin.php:629 -msgid "Total Entries" -msgstr "Totalt antall oppføringer" - -#: ../../mod/admin.php:630 -msgid "Priority" -msgstr "Prioritet" - -#: ../../mod/admin.php:631 -msgid "Destination URL" -msgstr "Mål-URL" - -#: ../../mod/admin.php:632 -msgid "Mark hub permanently offline" -msgstr "Merk hub som permanent offline" - -#: ../../mod/admin.php:633 -msgid "Empty queue for this hub" -msgstr "Tøm køen for denne hubben" - -#: ../../mod/admin.php:634 -msgid "Last known contact" -msgstr "Siste kjente kontakt" - -#: ../../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/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/admin.php:714 -msgid "Account not found" -msgstr "Kontoen ble ikke funnet" - -#: ../../mod/admin.php:734 -#, php-format -msgid "User '%s' blocked" -msgstr "Brukeren '%s' er blokkert" - -#: ../../mod/admin.php:742 -#, php-format -msgid "User '%s' unblocked" -msgstr "Brukeren '%s' er ikke blokkert lenger" - -#: ../../mod/admin.php:808 ../../mod/admin.php:820 -msgid "Users" -msgstr "Brukere" - -#: ../../mod/admin.php:810 ../../mod/admin.php:944 -msgid "select all" -msgstr "velg alle" - -#: ../../mod/admin.php:811 -msgid "User registrations waiting for confirm" -msgstr "Brukerregistreringer som venter på bekreftelse" - -#: ../../mod/admin.php:812 -msgid "Request date" -msgstr "Dato for forespørsel" - -#: ../../mod/admin.php:813 -msgid "No registrations." -msgstr "Ingen registreringer." - -#: ../../mod/admin.php:814 -msgid "Approve" -msgstr "Godkjenn" - -#: ../../mod/admin.php:815 -msgid "Deny" -msgstr "Avslå" - -#: ../../mod/admin.php:821 -msgid "Register date" -msgstr "Registreringsdato" - -#: ../../mod/admin.php:821 -msgid "Last login" -msgstr "Siste innlogging" - -#: ../../mod/admin.php:821 -msgid "Expires" -msgstr "Utløper" - -#: ../../mod/admin.php:821 -msgid "Service Class" -msgstr "Tjenesteklasse" - -#: ../../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/admin.php:824 -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?" - -#: ../../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/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/admin.php:883 -msgid "Channel not found" -msgstr "Kanalen ble ikke funnet" - -#: ../../mod/admin.php:894 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanalen '%s' er slettet" - -#: ../../mod/admin.php:905 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanalen '%s' er ikke sensurert lenger" - -#: ../../mod/admin.php:905 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanalen '%s' er sensurert" - -#: ../../mod/admin.php:946 -msgid "Censor" -msgstr "Sensurer" - -#: ../../mod/admin.php:947 -msgid "Uncensor" -msgstr "Ikke sensurer lenger" - -#: ../../mod/admin.php:950 -msgid "UID" -msgstr "UID" - -#: ../../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/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/admin.php:993 -#, php-format -msgid "Plugin %s disabled." -msgstr "Tilleggsfunksjonen %s er avskrudd." - -#: ../../mod/admin.php:997 -#, 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å" - -#: ../../mod/admin.php:1034 ../../mod/admin.php:1234 -msgid "Toggle" -msgstr "Skru av og på" - -#: ../../mod/admin.php:1042 ../../mod/admin.php:1244 -msgid "Author: " -msgstr "Forfatter:" - -#: ../../mod/admin.php:1043 ../../mod/admin.php:1245 -msgid "Maintainer: " -msgstr "Vedlikeholder:" - -#: ../../mod/admin.php:1170 -msgid "No themes found." -msgstr "Ingen temaer er funnet." - -#: ../../mod/admin.php:1226 -msgid "Screenshot" -msgstr "Skjermbilde" - -#: ../../mod/admin.php:1273 -msgid "[Experimental]" -msgstr "[Eksperimentelt]" - -#: ../../mod/admin.php:1274 -msgid "[Unsupported]" -msgstr "[Ingen støtte]" - -#: ../../mod/admin.php:1298 -msgid "Log settings updated." -msgstr "Logginnstillinger er oppdatert." - -#: ../../mod/admin.php:1353 -msgid "Clear" -msgstr "Tøm" - -#: ../../mod/admin.php:1359 -msgid "Debugging" -msgstr "Feilsøking" - -#: ../../mod/admin.php:1360 -msgid "Log file" -msgstr "Loggfil" - -#: ../../mod/admin.php:1360 -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/admin.php:1361 -msgid "Log level" -msgstr "Loggnivå" - -#: ../../mod/admin.php:1407 -msgid "New Profile Field" -msgstr "Nytt profilfelt" - -#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 -msgid "Field nickname" -msgstr "Feltets kallenavn" - -#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 -msgid "System name of field" -msgstr "Systemnavnet til feltet" - -#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 -msgid "Input type" -msgstr "Inndata-type" - -#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 -msgid "Field Name" -msgstr "Feltnavn" - -#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 -msgid "Label on profile pages" -msgstr "Merkelapp på profilsider" - -#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 -msgid "Help text" -msgstr "Hjelpetekst" - -#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 -msgid "Additional info (optional)" -msgstr "Tilleggsinformasjon (valgfritt)" - -#: ../../mod/admin.php:1421 -msgid "Field definition not found" -msgstr "Feltdefinisjonen ble ikke funnet" - -#: ../../mod/admin.php:1427 -msgid "Edit Profile Field" -msgstr "Endre profilfelt" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Ikke i stand til å finne hubben din." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Innlegg vellykket." - -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Endre byggekloss" - -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Slett byggeklossen?" - -#: ../../mod/editblock.php:188 -msgid "Delete Block" -msgstr "Slett byggekloss" - -#: ../../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/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Passordene er ikke like." - -#: ../../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/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering venter på godkjenning av nettstedets eier." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Din registrering kan ikke behandles." - -#: ../../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/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrer på et annet tilknyttet nettsted/hub" - -#: ../../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/register.php:185 -msgid "Terms of Service" -msgstr "Tjenesteavtale" - -#: ../../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/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 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "ADVARSEL:" - -#: ../../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: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/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Vennligst skriv ditt passord for å få bekreftelse:" - -#: ../../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/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." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Albumet ble ikke funnet." - -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Slett album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:930 -msgid "Delete Photo" -msgstr "Slett bilde" - -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Ingen bilder valgt" - -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Tilgang til dette elementet er begrenset." - -#: ../../mod/photos.php:523 -#, 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." - -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB lagringsplass til bilder er brukt." - -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Last opp bilder" - -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:915 -msgid "Enter a new album name" -msgstr "Skriv et nytt albumnavn" - -#: ../../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/photos.php:556 -msgid "Create a status post for this upload" -msgstr "Lag et statusinnlegg for denne opplastingen" - -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumnavnet kunne ikke dekodes" - -#: ../../mod/photos.php:625 ../../mod/photos.php:1157 -#: ../../mod/photos.php:1173 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Vis nyeste først" - -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Vis eldste først" - -#: ../../mod/photos.php:675 ../../mod/photos.php:1205 -msgid "View Photo" -msgstr "Vis foto" - -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Endre album" - -#: ../../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/photos.php:751 -msgid "Photo not available" -msgstr "Bilde er utilgjengelig" - -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Bruk som profilbilde" - -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privat bilde" - -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "Vis i full størrelse" - -#: ../../mod/photos.php:909 -msgid "Edit photo" -msgstr "Endre bilde" - -#: ../../mod/photos.php:911 -msgid "Rotate CW (right)" -msgstr "Roter med klokka (mot høyre)" - -#: ../../mod/photos.php:912 -msgid "Rotate CCW (left)" -msgstr "Roter mot klokka (venstre)" - -#: ../../mod/photos.php:919 -msgid "Caption" -msgstr "Overskrift" - -#: ../../mod/photos.php:921 -msgid "Add a Tag" -msgstr "Legg til merkelapp" - -#: ../../mod/photos.php:925 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../mod/photos.php:928 -msgid "Flag as adult in album view" -msgstr "Flag som voksent i albumvisning" - -#: ../../mod/photos.php:1120 -msgid "In This Photo:" -msgstr "I dette bildet:" - -#: ../../mod/photos.php:1125 -msgid "Map" -msgstr "Kart" - -#: ../../mod/photos.php:1211 -msgid "View Album" -msgstr "Vis album" - -#: ../../mod/photos.php:1234 -msgid "Recent Photos" -msgstr "Nye bilder" - -#: ../../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/message.php:41 -msgid "Conversation removed." -msgstr "Samtale fjernet." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Ingen meldinger." - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Slett samtale" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menyelement er oppdatert." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Ikke i stand til å oppdatere menyelement." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menyelement lagt til." - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Ikke i stand til å legge til menyelement." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Håndtere menyelementer" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Endre meny" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Endre element" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Slett element" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Nytt element" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Endre denne menybeholderen" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Legg til menyelement" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Slett dette menyelementet" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Endre dette menyelementet" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Nytt menyelement" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Menyelement Tillatelser" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Lenketekst" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL-en til lenken" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use Hubzilla magic-auth if available" -msgstr "Bruk Hubzillas magiske-autentisering hvis tilgjengelig" - -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Åpne lenke i nytt vindu" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Ordne i liste" - -#: ../../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/mitem.php:181 -msgid "Menu item not found." -msgstr "Menyelement ble ikke funnet." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menyelement slettet." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menyelement kunne ikke bli slettet." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Endre menyelement" - -#: ../../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/vote.php:97 -msgid "Total votes" -msgstr "Totalt antall stemmer" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Gjennomsnittlig vurdering" - -#: ../../mod/removeme.php:29 -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." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Fjern denne kanalen" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket." - -#: ../../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/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/layouts.php:110 -msgid "Help with this feature" -msgstr "Hjelp med denne funksjonen" - -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layout-navn" - -#: ../../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/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Ikke i stand til å slå opp mottaker." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Ikke i stand til å kommunisere med forespurt kanal." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan ikke bekrefte forespurt kanal." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Melding slettet." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Innlegg tilbakekalt." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Send privat melding" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "Til:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Emne:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Send" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Melding ikke funnet." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Slett melding" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Tilbakekall innlegg" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Innlegget har blitt tilbakekalt." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Privat samtale" - -#: ../../mod/mail.php:338 -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/mail.php:342 -msgid "Send Reply" -msgstr "Send svar" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ugyldig forespørselsidentifikator." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Forkast" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Vennligst logg inn." - -#: ../../mod/network.php:90 -msgid "No such group" -msgstr "Gruppen finnes ikke" - -#: ../../mod/network.php:128 -msgid "Search Results For:" -msgstr "Søkeresultat for:" - -#: ../../mod/network.php:182 -msgid "Collection is empty" -msgstr "Samlingen er tom" - -#: ../../mod/network.php:190 -msgid "Collection: " -msgstr "Samling:" - -#: ../../mod/network.php:203 -msgid "Connection: " -msgstr "Forbindelse:" - -#: ../../mod/network.php:206 -msgid "Invalid connection." -msgstr "Ugyldig forbindelse." - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Legg til en kanal" - -#: ../../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/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/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Velg et kort kallenavn" - -#: ../../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/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Eller importerer en eksisterende kanal fra et annet sted." - -#: ../../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/new_channel.php:119 -msgid "Channel Type" -msgstr "Kanaltype" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Les mer om roller" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installert." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Feil oppsett for app-en." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Innbyggingskode" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Endre app" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Lag app" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Navn på app" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Plassering (URL) til app" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "Bildeikon URL" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x80 pixler - valgfritt" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versjons-ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Pris på app" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Plassering (URL) for å kjøpe app" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "sendte deg en privat melding" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "la til din kanal" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "la ut en hendelse" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bokmerke lagt til" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mine bokmerker" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Mine forbindelsers bokmerker" - -#: ../../mod/channel.php:92 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." - -#: ../../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/poll.php:64 -msgid "Poll" -msgstr "Spørring" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Vis resultater" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Ingen restriksjoner er funnet i tjenesteklasse." - -#: ../../mod/sharedwithme.php:99 -msgid "Files: shared with me" -msgstr "Filer: delt med meg" - -#: ../../mod/sharedwithme.php:103 -msgid "Remove all files" -msgstr "Fjern alle filer" - -#: ../../mod/sharedwithme.php:104 -msgid "Remove this file" -msgstr "Fjern denne filen" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Standard skjema" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../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 "Temainnstillinger" -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Angi skjema" - -#: ../../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" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Angi skrifttype" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Angi ikonutvalg" - -#: ../../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" - -#: ../../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" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Angi skyggefarge, standard #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Angi radiusstørrelse, standard 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Angi linjeavstand for innlegg og kommentarer" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Angi bakgrunnsbilde" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Angi bakgrunnsvedlegg" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Angi bakgrunnsfarge" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Angi seksjonens bakgrunnsbilde" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Angi seksjonens bakgrunnsfarge" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Angi fargen til elementer - bruk hex" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Angi fargen til lenker - bruk hex" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Angi maksimal bredde for elementer. Standard 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Angi minimumsbredde for elementer. Standard 240px" - -#: ../../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%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Angi skriftfargen - bruk hex" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Angi størrelsen på bakgrunnselementet" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Elementers dekkevne" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Vis kun forhåndsvisning av innlegg" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Vis sidestolpe på kanalsiden" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Fargen på navigasjonslinjen" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Elementflyt" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Til venstre for seksjonselementet" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Til høyre for seksjonselementet" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Seksjonsbredde" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Til venstre for sidestolpen" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Til høyre for sidestolpen" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Hubzilla default)" -msgstr "Lys (Hubzilla standard)" - -#: ../../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" 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["Saved Searches"] = "Lagrede søk"; -$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["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["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["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["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,360 +420,14 @@ $a->strings["__ctx:noun__ Abstain"] = array( 0 => "Avstår", 1 => "Avstår", ); -$a->strings["Permission denied."] = "Tillatelse avslått."; -$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"; -$a->strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres"; -$a->strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt."; -$a->strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."; -$a->strings["Path not available."] = "Stien er ikke tilgjengelig."; -$a->strings["Empty pathname"] = "Tomt sti-navn"; -$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["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 "; @@ -700,105 +466,10 @@ $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["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"; @@ -811,6 +482,8 @@ $a->strings["%d Connection"] = array( 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"; @@ -843,91 +516,1245 @@ $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["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"] = "Formgivning"; +$a->strings["Design Tools"] = "Designverktøy"; $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["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"; +$a->strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres"; +$a->strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt."; +$a->strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."; +$a->strings["Path not available."] = "Stien er ikke tilgjengelig."; +$a->strings["Empty pathname"] = "Tomt sti-navn"; +$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["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["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["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["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["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["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["Public access denied."] = "Offentlig tilgang avvist."; +$a->strings["%d rating"] = array( + 0 => "%d vurdering", + 1 => "%d vurderinger", +); +$a->strings["Gender: "] = "Kjønn:"; +$a->strings["Status: "] = "Status:"; +$a->strings["Homepage: "] = "Hjemmeside:"; +$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 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 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["# Accounts"] = "# Kontoer"; +$a->strings["# blocked accounts"] = "# blokkerte kontoer"; +$a->strings["# expired accounts"] = "# utgåtte kontoer"; +$a->strings["# expiring accounts"] = "# kontoer som holder på å gå ut"; +$a->strings["# Channels"] = "# Kanaler"; +$a->strings["# primary"] = "# hoved"; +$a->strings["# clones"] = "# kloner"; +$a->strings["Message queues"] = "Meldingskøer"; +$a->strings["Administration"] = "Administrasjon"; +$a->strings["Summary"] = "Sammendrag"; +$a->strings["Registered accounts"] = "Registrerte kontoer"; +$a->strings["Pending registrations"] = "Ventende registreringer"; +$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"; +$a->strings["My site is not a public server"] = "Mitt nettsted er ikke en offentlig tjeneste"; +$a->strings["My site has paid access only"] = "Mitt nettsted gir kun tilgang mot betaling"; +$a->strings["My site has free access only"] = "Mitt nettsted har kun gratis tilgang"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste"; +$a->strings["Registration"] = "Registrering"; +$a->strings["File upload"] = "Last opp fil"; +$a->strings["Policies"] = "Retningslinjer"; +$a->strings["Site name"] = "Nettstedets navn"; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Administrator Information"] = "Administratorinformasjon"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her"; +$a->strings["System language"] = "Systemspråk"; +$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["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"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset."; +$a->strings["Does this site allow new member registration?"] = "Tillater dette nettstedet registrering av nye medlemmer?"; +$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"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener."; +$a->strings["Allowed email domains"] = "Tillate e-postdomener"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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"; +$a->strings["Not allowed email domains"] = "Ikke tillatte e-postdomener"; +$a->strings["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."] = "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."; +$a->strings["Block public"] = "Blokker offentlig tilgang"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "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."; +$a->strings["Verify Email Addresses"] = "Bekreft e-postadresser"; +$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)."; +$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["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"; +$a->strings["on server"] = "på tjener"; +$a->strings["Status"] = "Status"; +$a->strings["Server"] = "Tjener"; +$a->strings["Update has been marked successful"] = "Oppdateringen har blitt merket som en suksess"; +$a->strings["Executing %s failed. Check system logs."] = "Utføring av %s feilet. Sjekk systemlogger."; +$a->strings["Update %s was successfully applied."] = "Oppdatering %s ble gjennomført med suksess."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket."; +$a->strings["Update function %s could not be found."] = "Oppdatering av funksjon %s kunne ikke finnes."; +$a->strings["No failed updates."] = "Ingen mislykkede oppdateringer."; +$a->strings["Failed Updates"] = "Mislykkede oppdateringer"; +$a->strings["Mark success (if update was manually applied)"] = "Marker suksess (hvis oppdateringen ble gjennomført manuelt)"; +$a->strings["Attempt to execute this update step automatically"] = "Prøv å gjennomføre dette oppdateringstrinnet automatisk"; +$a->strings["Queue Statistics"] = "Køstatistikk"; +$a->strings["Total Entries"] = "Totalt antall oppføringer"; +$a->strings["Priority"] = "Prioritet"; +$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 account blocked/unblocked"] = array( + 0 => "%s konto blokkert/ikke blokkert lenger", + 1 => "%s kontoer blokkert/ikke blokkert lenger", +); +$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["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["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 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' 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."; +$a->strings["Plugin %s enabled."] = "Tilleggsfunksjonen %s er påskrudd."; +$a->strings["Disable"] = "Skru av"; +$a->strings["Enable"] = "Skru på"; +$a->strings["Toggle"] = "Skru av og på"; +$a->strings["Author: "] = "Forfatter:"; +$a->strings["Maintainer: "] = "Vedlikeholder:"; +$a->strings["No themes found."] = "Ingen temaer er funnet."; +$a->strings["Screenshot"] = "Skjermbilde"; +$a->strings["[Experimental]"] = "[Eksperimentelt]"; +$a->strings["[Unsupported]"] = "[Ingen støtte]"; +$a->strings["Log settings updated."] = "Logginnstillinger er oppdatert."; +$a->strings["Clear"] = "Tøm"; +$a->strings["Debugging"] = "Feilsøking"; +$a->strings["Log file"] = "Loggfil"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Må kunne skrives til av webtjenesten. Relativ til din Red sin toppnivåkatalog."; +$a->strings["Log level"] = "Loggnivå"; +$a->strings["New Profile Field"] = "Nytt profilfelt"; +$a->strings["Field nickname"] = "Feltets kallenavn"; +$a->strings["System name of field"] = "Systemnavnet til feltet"; +$a->strings["Input type"] = "Inndata-type"; +$a->strings["Field Name"] = "Feltnavn"; +$a->strings["Label on profile pages"] = "Merkelapp på profilsider"; +$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["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."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen."; +$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning av nettstedets eier."; +$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; +$a->strings["Registration on this site/hub is by approval only."] = "Registrering på dette nettstedet/denne hubben skjer bare gjennom godkjenning."; +$a->strings["Register at another affiliated site/hub"] = "Registrer på et annet tilknyttet nettsted/hub"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen."; +$a->strings["Terms of Service"] = "Tjenesteavtale"; +$a->strings["I accept the %s for this website"] = "Jeg godtar %s for dette nettstedet"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet."; +$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon."; +$a->strings["Please enter your invitation code"] = "Vennligst skriv din invitasjonskode"; +$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["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["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["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["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."; @@ -936,8 +1763,6 @@ $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"; @@ -954,16 +1779,11 @@ $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å"; @@ -971,8 +1791,10 @@ $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["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"; @@ -999,7 +1821,6 @@ $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"; @@ -1026,7 +1847,6 @@ $a->strings["0 or blank prevents expiration"] = "0 eller blankt forhindrer utlø $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"; @@ -1065,189 +1885,49 @@ $a->strings["Advanced Account/Page Type Settings"] = "Avanserte innstillinger fo $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 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["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["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["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."; @@ -1260,21 +1940,27 @@ $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["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["\$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."; @@ -1284,7 +1970,7 @@ $a->strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les fil $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["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"; @@ -1309,6 +1995,9 @@ $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"; @@ -1318,6 +2007,7 @@ $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"; @@ -1328,6 +2018,7 @@ $a->strings["Error: openssl PHP module required but not installed."] = "Feil: op $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."; @@ -1353,245 +2044,11 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $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["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["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["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["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["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-"; @@ -1609,7 +2066,6 @@ $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"; @@ -1655,418 +2111,19 @@ $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["%d rating"] = array( - 0 => "%d vurdering", - 1 => "%d vurderinger", -); -$a->strings["Gender: "] = "Kjønn:"; -$a->strings["Status: "] = "Status:"; -$a->strings["Homepage: "] = "Hjemmeside:"; -$a->strings["Hometown: "] = "Hjemby:"; -$a->strings["About: "] = "Om:"; -$a->strings["Public Forum:"] = "Offentlig forum:"; -$a->strings["Keywords: "] = "Nøkkelord:"; -$a->strings["Finding:"] = "Finner:"; -$a->strings["next page"] = "Neste side"; -$a->strings["previous page"] = "Forrige side"; -$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult)."; -$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 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["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"; -$a->strings["# expiring accounts"] = "# kontoer som holder på å gå ut"; -$a->strings["# Channels"] = "# Kanaler"; -$a->strings["# primary"] = "# hoved"; -$a->strings["# clones"] = "# kloner"; -$a->strings["Message queues"] = "Meldingskøer"; -$a->strings["Administration"] = "Administrasjon"; -$a->strings["Summary"] = "Sammendrag"; -$a->strings["Registered accounts"] = "Registrerte kontoer"; -$a->strings["Pending registrations"] = "Ventende registreringer"; -$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["experimental"] = "eksperimentell"; -$a->strings["unsupported"] = "ikke støttet"; -$a->strings["Yes - with approval"] = "Ja - med godkjenning"; -$a->strings["My site is not a public server"] = "Mitt nettsted er ikke en offentlig tjeneste"; -$a->strings["My site has paid access only"] = "Mitt nettsted gir kun tilgang mot betaling"; -$a->strings["My site has free access only"] = "Mitt nettsted har kun gratis tilgang"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste"; -$a->strings["Registration"] = "Registrering"; -$a->strings["File upload"] = "Last opp fil"; -$a->strings["Policies"] = "Retningslinjer"; -$a->strings["Site name"] = "Nettstedets navn"; -$a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["Administrator Information"] = "Administratorinformasjon"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her"; -$a->strings["System language"] = "Systemspråk"; -$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"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset."; -$a->strings["Does this site allow new member registration?"] = "Tillater dette nettstedet registrering av nye medlemmer?"; -$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["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"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener."; -$a->strings["Allowed email domains"] = "Tillate e-postdomener"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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"; -$a->strings["Not allowed email domains"] = "Ikke tillatte e-postdomener"; -$a->strings["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."] = "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."; -$a->strings["Block public"] = "Blokker offentlig tilgang"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "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."; -$a->strings["Verify Email Addresses"] = "Bekreft e-postadresser"; -$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)."; -$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["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["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["No server found"] = "Ingen tjener funnet"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "for kanalen"; -$a->strings["on server"] = "på tjener"; -$a->strings["Status"] = "Status"; -$a->strings["Server"] = "Tjener"; -$a->strings["Update has been marked successful"] = "Oppdateringen har blitt merket som en suksess"; -$a->strings["Executing %s failed. Check system logs."] = "Utføring av %s feilet. Sjekk systemlogger."; -$a->strings["Update %s was successfully applied."] = "Oppdatering %s ble gjennomført med suksess."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket."; -$a->strings["Update function %s could not be found."] = "Oppdatering av funksjon %s kunne ikke finnes."; -$a->strings["No failed updates."] = "Ingen mislykkede oppdateringer."; -$a->strings["Failed Updates"] = "Mislykkede oppdateringer"; -$a->strings["Mark success (if update was manually applied)"] = "Marker suksess (hvis oppdateringen ble gjennomført manuelt)"; -$a->strings["Attempt to execute this update step automatically"] = "Prøv å gjennomføre dette oppdateringstrinnet automatisk"; -$a->strings["Queue Statistics"] = "Køstatistikk"; -$a->strings["Total Entries"] = "Totalt antall oppføringer"; -$a->strings["Priority"] = "Prioritet"; -$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 user deleted"] = array( - 0 => "%s bruker slettet", - 1 => "%s brukere 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["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["%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 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["Censor"] = "Sensurer"; -$a->strings["Uncensor"] = "Ikke sensurer lenger"; -$a->strings["UID"] = "UID"; -$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."; -$a->strings["Plugin %s enabled."] = "Tilleggsfunksjonen %s er påskrudd."; -$a->strings["Disable"] = "Skru av"; -$a->strings["Enable"] = "Skru på"; -$a->strings["Toggle"] = "Skru av og på"; -$a->strings["Author: "] = "Forfatter:"; -$a->strings["Maintainer: "] = "Vedlikeholder:"; -$a->strings["No themes found."] = "Ingen temaer er funnet."; -$a->strings["Screenshot"] = "Skjermbilde"; -$a->strings["[Experimental]"] = "[Eksperimentelt]"; -$a->strings["[Unsupported]"] = "[Ingen støtte]"; -$a->strings["Log settings updated."] = "Logginnstillinger er oppdatert."; -$a->strings["Clear"] = "Tøm"; -$a->strings["Debugging"] = "Feilsøking"; -$a->strings["Log file"] = "Loggfil"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Må kunne skrives til av webtjenesten. Relativ til din Red sin toppnivåkatalog."; -$a->strings["Log level"] = "Loggnivå"; -$a->strings["New Profile Field"] = "Nytt profilfelt"; -$a->strings["Field nickname"] = "Feltets kallenavn"; -$a->strings["System name of field"] = "Systemnavnet til feltet"; -$a->strings["Input type"] = "Inndata-type"; -$a->strings["Field Name"] = "Feltnavn"; -$a->strings["Label on profile pages"] = "Merkelapp på profilsider"; -$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["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."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen."; -$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning av nettstedets eier."; -$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; -$a->strings["Registration on this site/hub is by approval only."] = "Registrering på dette nettstedet/denne hubben skjer bare gjennom godkjenning."; -$a->strings["Register at another affiliated site/hub"] = "Registrer på et annet tilknyttet nettsted/hub"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen."; -$a->strings["Terms of Service"] = "Tjenesteavtale"; -$a->strings["I accept the %s for this website"] = "Jeg godtar %s for dette nettstedet"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet."; -$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon."; -$a->strings["Please enter your invitation code"] = "Vennligst skriv din invitasjonskode"; -$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["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["[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["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["Files: shared with me"] = "Filer: delt med meg"; -$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["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"; diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 242954b27..548f57b9e 100644 --- a/view/nl/hmessages.po +++ b/view/nl/hmessages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-26 22:48-0700\n" -"PO-Revision-Date: 2015-09-29 20:19+0000\n" +"POT-Creation-Date: 2015-10-16 00:03-0700\n" +"PO-Revision-Date: 2015-10-18 13:14+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,74 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../include/photos.php:26 ../../include/chat.php:133 +#: ../../include/items.php:4378 ../../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:875 ../../include/attach.php:946 +#: ../../include/attach.php:1098 ../../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/rate.php:111 ../../mod/mail.php:118 +#: ../../mod/editpost.php:13 ../../mod/editblock.php:65 ../../mod/item.php:206 +#: ../../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/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/channel.php:100 ../../mod/channel.php:214 +#: ../../mod/channel.php:254 ../../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 "Toegang geweigerd" + +#: ../../include/photos.php:109 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" + +#: ../../include/photos.php:116 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" + +#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" + +#: ../../include/photos.php:228 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" + +#: ../../include/photos.php:431 ../../include/conversation.php:1609 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../include/photos.php:435 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + #: ../../include/Import/import_diaspora.php:17 msgid "No username found in import file." msgstr "Geen gebruikersnaam in het importbestand gevonden." @@ -26,7 +94,7 @@ msgstr "Geen gebruikersnaam in het importbestand gevonden." msgid "Unable to create a unique channel address. Import failed." msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." -#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:480 +#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:486 msgid "Import completed." msgstr "Import voltooid." @@ -35,7 +103,7 @@ msgstr "Import voltooid." msgid "parent" msgstr "omhoog" -#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2497 +#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2490 msgid "Collection" msgstr "map" @@ -59,9 +127,9 @@ msgstr "Planning-postvak IN" msgid "Schedule Outbox" msgstr "Planning-postvak UIT" -#: ../../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 +#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:355 +#: ../../include/apps.php:410 ../../include/conversation.php:1023 +#: ../../mod/photos.php:747 ../../mod/photos.php:1186 msgid "Unknown" msgstr "Onbekend" @@ -75,8 +143,8 @@ msgstr "%1$s gebruikt" msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s van %2$s gebruikt (%3$s%)" -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/conversation.php:1611 -#: ../../include/apps.php:135 ../../include/nav.php:93 +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/apps.php:135 +#: ../../include/conversation.php:1613 ../../include/nav.php:93 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Bestanden" @@ -97,8 +165,8 @@ msgid "Create" msgstr "Aanmaken" #: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:745 -#: ../../mod/photos.php:1278 ../../mod/profile_photo.php:450 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:772 +#: ../../mod/photos.php:1305 ../../mod/profile_photo.php:450 msgid "Upload" msgstr "Uploaden" @@ -132,10 +200,10 @@ msgstr "Laatst gewijzigd" msgid "Edit" msgstr "Bewerken" -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/conversation.php:662 -#: ../../include/apps.php:255 ../../include/ItemObject.php:120 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/apps.php:255 +#: ../../include/ItemObject.php:120 ../../include/conversation.php:657 #: ../../mod/connedit.php:547 ../../mod/editblock.php:181 -#: ../../mod/admin.php:783 ../../mod/admin.php:942 ../../mod/photos.php:1090 +#: ../../mod/admin.php:783 ../../mod/admin.php:942 ../../mod/photos.php:1117 #: ../../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 @@ -296,50 +364,6 @@ msgstr "Ongeldige omschrijving chatkanaal" msgid "Room not found." msgstr "Chatkanaal niet gevonden" -#: ../../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 "Toegang geweigerd" - #: ../../include/chat.php:143 msgid "Room is full" msgstr "Chatkanaal is vol" @@ -357,7 +381,7 @@ msgstr "JJJJ-MM-DD of MM-DD" msgid "Required" msgstr "Vereist" -#: ../../include/datetime.php:262 ../../boot.php:2306 +#: ../../include/datetime.php:262 ../../boot.php:2312 msgid "never" msgstr "nooit" @@ -700,12 +724,12 @@ msgstr "Standaard" msgid "Delete this item?" msgstr "Dit item verwijderen?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:673 -#: ../../mod/photos.php:1008 ../../mod/photos.php:1126 +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:683 +#: ../../mod/photos.php:1035 ../../mod/photos.php:1153 msgid "Comment" msgstr "Reactie" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:390 +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:400 msgid "[+] show all" msgstr "[+] alle" @@ -758,7 +782,7 @@ msgid "Rate This Channel (this is public)" msgstr "Beoordeel dit kanaal (dit is openbaar)" #: ../../include/js_strings.php:20 ../../mod/connedit.php:667 -#: ../../mod/rate.php:156 +#: ../../mod/rate.php:157 msgid "Rating" msgstr "Beoordeling" @@ -766,18 +790,19 @@ msgstr "Beoordeling" msgid "Describe (optional)" msgstr "Omschrijving (optioneel)" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:674 +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:684 #: ../../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/chat.php:209 ../../mod/rate.php:168 ../../mod/mail.php:371 +#: ../../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:625 +#: ../../mod/photos.php:996 ../../mod/photos.php:1036 +#: ../../mod/photos.php:1154 ../../mod/events.php:534 ../../mod/events.php:710 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/import.php:517 ../../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 @@ -1085,7 +1110,7 @@ msgstr "RSS/Atom" #: ../../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 "E-mail" @@ -1136,8 +1161,8 @@ msgstr "Bezoek het %2$s van %1$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." -#: ../../include/Contact.php:101 ../../include/conversation.php:947 -#: ../../include/identity.php:941 ../../include/widgets.php:136 +#: ../../include/Contact.php:101 ../../include/identity.php:965 +#: ../../include/conversation.php:949 ../../include/widgets.php:136 #: ../../include/widgets.php:174 ../../mod/directory.php:316 #: ../../mod/match.php:64 ../../mod/suggest.php:52 msgid "Connect" @@ -1161,865 +1186,106 @@ msgstr "Account '%s' verwijderd" msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" -#: ../../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/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 "Toegang geweigerd" -#: ../../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 "gebeurtenis" +#: ../../include/items.php:1129 ../../include/items.php:1175 +msgid "(Unknown)" +msgstr "(Onbekend)" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "kanaal" +#: ../../include/items.php:1373 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." -#: ../../include/conversation.php:148 ../../include/text.php:1838 -#: ../../mod/like.php:361 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:172 -msgid "status" -msgstr "bericht" +#: ../../include/items.php:1375 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." -#: ../../include/conversation.php:150 ../../include/text.php:1840 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "reactie" +#: ../../include/items.php:1377 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." -#: ../../include/conversation.php:164 ../../mod/like.php:410 +#: ../../include/items.php:1379 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." + +#: ../../include/items.php:1381 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." -#: ../../include/conversation.php:167 ../../mod/like.php:412 +#: ../../include/items.php:1383 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." + +#: ../../include/items.php:1385 +msgid "Visible to approved connections." +msgstr "Voor alle goedgekeurde connecties zichtbaar." + +#: ../../include/items.php:1387 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." + +#: ../../include/items.php:4299 ../../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 "Item niet gevonden." + +#: ../../include/items.php:4808 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Collectie niet gevonden." + +#: ../../include/items.php:4824 +msgid "Collection is empty." +msgstr "Collectie is leeg" + +#: ../../include/items.php:4831 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" +msgid "Collection: %s" +msgstr "Collectie: %s" -#: ../../include/conversation.php:204 +#: ../../include/items.php:4841 ../../mod/connedit.php:658 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s is nu met %2$s verbonden" +msgid "Connection: %s" +msgstr "Connectie: %s" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s heeft %2$s aangestoten" +#: ../../include/items.php:4843 +msgid "Connection not found." +msgstr "Connectie niet gevonden." -#: ../../include/conversation.php:243 ../../include/text.php:933 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" - -#: ../../include/conversation.php:574 ../../mod/photos.php:1024 -msgctxt "title" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../include/conversation.php:574 ../../mod/photos.php:1024 -msgctxt "title" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../include/conversation.php:575 ../../mod/photos.php:1025 -msgctxt "title" -msgid "Agree" -msgstr "eens" - -#: ../../include/conversation.php:575 ../../mod/photos.php:1025 -msgctxt "title" -msgid "Disagree" -msgstr "oneens" - -#: ../../include/conversation.php:575 ../../mod/photos.php:1025 -msgctxt "title" -msgid "Abstain" -msgstr "onthoudingen" - -#: ../../include/conversation.php:576 ../../mod/photos.php:1026 -msgctxt "title" -msgid "Attending" -msgstr "aanwezig" - -#: ../../include/conversation.php:576 ../../mod/photos.php:1026 -msgctxt "title" -msgid "Not attending" -msgstr "niet aanwezig" - -#: ../../include/conversation.php:576 ../../mod/photos.php:1026 -msgctxt "title" -msgid "Might attend" -msgstr "mogelijk aanwezig" - -#: ../../include/conversation.php:661 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "Kies" - -#: ../../include/conversation.php:669 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "Privébericht" - -#: ../../include/conversation.php:676 ../../include/ItemObject.php:227 -msgid "Message signature validated" -msgstr "Berichtkenmerk gevalideerd" - -#: ../../include/conversation.php:677 ../../include/ItemObject.php:228 -msgid "Message signature incorrect" -msgstr "Berichtkenmerk onjuist" - -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" - -#: ../../include/conversation.php:709 -msgid "Categories:" -msgstr "Categorieën:" - -#: ../../include/conversation.php:710 -msgid "Filed under:" -msgstr "Bewaard onder:" - -#: ../../include/conversation.php:718 ../../include/ItemObject.php:314 -#, php-format -msgid "from %s" -msgstr "van %s" - -#: ../../include/conversation.php:721 ../../include/ItemObject.php:317 -#, php-format -msgid "last edited: %s" -msgstr "laatst bewerkt: %s" - -#: ../../include/conversation.php:722 ../../include/ItemObject.php:318 -#, php-format -msgid "Expires: %s" -msgstr "Verloopt: %s" - -#: ../../include/conversation.php:737 -msgid "View in context" -msgstr "In context bekijken" - -#: ../../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 "Even wachten" - -#: ../../include/conversation.php:848 -msgid "remove" -msgstr "verwijderen" - -#: ../../include/conversation.php:852 ../../include/nav.php:241 -msgid "Loading..." -msgstr "Aan het laden..." - -#: ../../include/conversation.php:853 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" - -#: ../../include/conversation.php:941 -msgid "View Source" -msgstr "Bron weergeven" - -#: ../../include/conversation.php:942 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: ../../include/conversation.php:943 -msgid "View Status" -msgstr "Status weergeven" - -#: ../../include/conversation.php:944 ../../include/nav.php:86 -#: ../../mod/connedit.php:494 -msgid "View Profile" -msgstr "Profiel weergeven" - -#: ../../include/conversation.php:945 -msgid "View Photos" -msgstr "Foto's weergeven" - -#: ../../include/conversation.php:946 -msgid "Activity/Posts" -msgstr "Kanaal-activiteit" - -#: ../../include/conversation.php:948 -msgid "Edit Connection" -msgstr "Connectie bewerken" - -#: ../../include/conversation.php:949 -msgid "Send PM" -msgstr "Privébericht verzenden" - -#: ../../include/conversation.php:950 ../../include/apps.php:145 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../include/conversation.php:1064 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:1064 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:1068 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d persoon vindt dit leuk." -msgstr[1] "%2$d personen vinden dit leuk." - -#: ../../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 persoon vindt dit niet leuk." -msgstr[1] "%2$d personen vinden dit niet leuk." - -#: ../../include/conversation.php:1076 -msgid "and" -msgstr "en" - -#: ../../include/conversation.php:1079 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", en %d ander persoon" -msgstr[1] ", en %d andere personen" - -#: ../../include/conversation.php:1080 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." - -#: ../../include/conversation.php:1080 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." - -#: ../../include/conversation.php:1143 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/conversation.php:1144 ../../mod/mail.php:170 -#: ../../mod/mail.php:299 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: ../../include/conversation.php:1145 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: ../../include/conversation.php:1146 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: ../../include/conversation.php:1147 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1148 ../../mod/filer.php:48 -msgid "Save to Folder:" -msgstr "Bewaar in map: " - -#: ../../include/conversation.php:1149 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" - -#: ../../include/conversation.php:1150 ../../mod/editpost.php:54 -#: ../../mod/mail.php:171 ../../mod/mail.php:300 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om 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 "Voorvertoning" - -#: ../../include/conversation.php:1177 ../../mod/layouts.php:184 -#: ../../mod/photos.php:989 ../../mod/webpages.php:182 -#: ../../mod/blocks.php:154 -msgid "Share" -msgstr "Delen" - -#: ../../include/conversation.php:1179 -msgid "Page link name" -msgstr "Linknaam pagina" - -#: ../../include/conversation.php:1182 -msgid "Post as" -msgstr "Bericht plaatsen 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 "Vet" - -#: ../../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 "Cursief" - -#: ../../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 "Onderstrepen" - -#: ../../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 "Citeren" - -#: ../../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 "Broncode" - -#: ../../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 uploaden" - -#: ../../include/conversation.php:1190 -msgid "upload photo" -msgstr "foto uploaden" - -#: ../../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 "Bestand toevoegen" - -#: ../../include/conversation.php:1192 -msgid "attach file" -msgstr "bestand toevoegen" - -#: ../../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 "Weblink invoegen" - -#: ../../include/conversation.php:1194 -msgid "web link" -msgstr "Weblink" - -#: ../../include/conversation.php:1195 -msgid "Insert video link" -msgstr "Videolink invoegen" - -#: ../../include/conversation.php:1196 -msgid "video link" -msgstr "videolink" - -#: ../../include/conversation.php:1197 -msgid "Insert audio link" -msgstr "Audiolink invoegen" - -#: ../../include/conversation.php:1198 -msgid "audio link" -msgstr "audiolink" - -#: ../../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 "Locatie instellen" - -#: ../../include/conversation.php:1200 -msgid "set location" -msgstr "locatie instellen" - -#: ../../include/conversation.php:1201 ../../mod/editpost.php:127 -msgid "Toggle voting" -msgstr "Stemmen in- of uitschakelen" - -#: ../../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 "Locatie van webbrowser wissen" - -#: ../../include/conversation.php:1205 -msgid "clear location" -msgstr "locatie wissen" - -#: ../../include/conversation.php:1207 ../../mod/editpost.php:142 -#: ../../mod/editblock.php:162 ../../mod/editwebpage.php:205 -msgid "Title (optional)" -msgstr "Titel (optioneel)" - -#: ../../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 "Categorieën (optioneel, door komma's gescheiden lijst)" - -#: ../../include/conversation.php:1213 ../../mod/editpost.php:131 -#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:191 -msgid "Permission settings" -msgstr "Permissies" - -#: ../../include/conversation.php:1214 -msgid "permissions" -msgstr "permissies" - -#: ../../include/conversation.php:1222 ../../mod/editpost.php:139 -#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:200 -msgid "Public post" -msgstr "Openbaar bericht" - -#: ../../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 "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" - -#: ../../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 "Verloopdatum instellen" - -#: ../../include/conversation.php:1239 ../../include/ItemObject.php:686 -#: ../../mod/editpost.php:158 ../../mod/mail.php:243 ../../mod/mail.php:370 -msgid "Encrypt text" -msgstr "Tekst versleutelen" - -#: ../../include/conversation.php:1241 ../../mod/editpost.php:160 -#: ../../mod/events.php:691 -msgid "OK" -msgstr "OK" - -#: ../../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 "Annuleren" - -#: ../../include/conversation.php:1485 -msgid "Discover" -msgstr "Ontdekken" - -#: ../../include/conversation.php:1488 -msgid "Imported public streams" -msgstr "Openbare streams importeren" - -#: ../../include/conversation.php:1493 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" - -#: ../../include/conversation.php:1496 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" - -#: ../../include/conversation.php:1500 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" - -#: ../../include/conversation.php:1503 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" - -#: ../../include/conversation.php:1508 ../../include/widgets.php:94 -msgid "Personal" -msgstr "Persoonlijk" - -#: ../../include/conversation.php:1511 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" - -#: ../../include/conversation.php:1517 ../../mod/menu.php:112 -#: ../../mod/connections.php:72 ../../mod/connections.php:82 -msgid "New" -msgstr "Nieuw" - -#: ../../include/conversation.php:1520 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" - -#: ../../include/conversation.php:1526 -msgid "Starred" -msgstr "Met ster" - -#: ../../include/conversation.php:1529 -msgid "Favourite Posts" -msgstr "Favoriete berichten" - -#: ../../include/conversation.php:1536 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1539 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" - -#: ../../include/conversation.php:1583 ../../mod/admin.php:947 -msgid "Channel" -msgstr "Kanaal" - -#: ../../include/conversation.php:1586 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" - -#: ../../include/conversation.php:1595 -msgid "About" -msgstr "Over" - -#: ../../include/conversation.php:1598 -msgid "Profile Details" -msgstr "Profiel" - -#: ../../include/conversation.php:1604 ../../include/apps.php:139 -#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" - -#: ../../include/conversation.php:1607 ../../include/photos.php:422 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../include/conversation.php:1614 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" - -#: ../../include/conversation.php:1624 ../../include/conversation.php:1627 -msgid "Chatrooms" -msgstr "Chatkanalen" - -#: ../../include/conversation.php:1637 ../../include/apps.php:129 -#: ../../include/nav.php:103 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: ../../include/conversation.php:1640 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" - -#: ../../include/conversation.php:1647 ../../include/apps.php:136 -#: ../../include/nav.php:107 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "Webpagina's" - -#: ../../include/conversation.php:1650 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" - -#: ../../include/conversation.php:1679 ../../include/ItemObject.php:175 -#: ../../include/ItemObject.php:187 ../../mod/photos.php:1043 -#: ../../mod/photos.php:1055 -msgid "View all" -msgstr "Toon alles" - -#: ../../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] "vindt dit leuk" -msgstr[1] "vinden dit leuk" - -#: ../../include/conversation.php:1706 ../../include/ItemObject.php:184 -#: ../../mod/photos.php:1052 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" - -#: ../../include/conversation.php:1709 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "aanwezig" -msgstr[1] "aanwezig" - -#: ../../include/conversation.php:1712 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "niet aanwezig" -msgstr[1] "niet aanwezig" - -#: ../../include/conversation.php:1715 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "nog niet beslist" -msgstr[1] "nog niet beslist" - -#: ../../include/conversation.php:1718 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "eens" -msgstr[1] "eens" - -#: ../../include/conversation.php:1721 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "oneens" -msgstr[1] "oneens" - -#: ../../include/conversation.php:1724 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "onthouding" -msgstr[1] "onthoudingen" - -#: ../../include/api.php:1290 +#: ../../include/api.php:1321 msgid "Public Timeline" msgstr "Openbare tijdlijn" -#: ../../include/photos.php:109 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" - -#: ../../include/photos.php:116 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" - -#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" - -#: ../../include/photos.php:219 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" - -#: ../../include/photos.php:426 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: ../../include/enotify.php:57 ../../include/network.php:1613 -msgid "$Projectname Notification" -msgstr "$Projectname-notificatie" - -#: ../../include/enotify.php:58 ../../include/network.php:1614 -msgid "$projectname" -msgstr "$projectname" - -#: ../../include/enotify.php:60 ../../include/network.php:1616 -msgid "Thank You," -msgstr "Bedankt," - -#: ../../include/enotify.php:62 ../../include/network.php:1618 -#, php-format -msgid "%s Administrator" -msgstr "Beheerder %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:Notificatie] Nieuw privébericht ontvangen op %s" - -#: ../../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 zond jou een nieuw privébericht om %3$s." - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s zond jou %2$s." - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "een privébericht" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." - -#: ../../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 gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" - -#: ../../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 gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" - -#: ../../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 gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Notificatie] Reactie op conversatie #%1$d door %2$s" - -#: ../../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 gaf een reactie op een bericht/conversatie die jij volgt." - -#: ../../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 "Bezoek %s om de conversatie te bekijken en/of er op te reageren." - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notificatie] %s heeft je genoemd" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s noemde jou op %3$s" - -#: ../../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]noemde jou[/zrl]." - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notificatie] %1$s heeft je aangestoten" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s heeft je aangestoten op %3$s" - -#: ../../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]heeft je aangestoten[/zrl]." - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notificatie] %s heeft jouw bericht getagd" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notificatie] Connectieverzoek ontvangen" - -#: ../../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, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" - -#: ../../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, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." - -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Je kan het profiel bekijken op %s" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notificatie] Kanaalvoorstel ontvangen" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" - -#: ../../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, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." - -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "Naam:" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." - -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "[Red:Notificatie]" - #: ../../include/network.php:635 msgid "view full size" msgstr "volledige grootte tonen" -#: ../../include/network.php:1660 ../../include/account.php:314 -#: ../../include/account.php:341 ../../include/account.php:401 +#: ../../include/network.php:1613 ../../include/enotify.php:57 +msgid "$Projectname Notification" +msgstr "$Projectname-notificatie" + +#: ../../include/network.php:1614 ../../include/enotify.php:58 +msgid "$projectname" +msgstr "$projectname" + +#: ../../include/network.php:1616 ../../include/enotify.php:60 +msgid "Thank You," +msgstr "Bedankt," + +#: ../../include/network.php:1618 ../../include/enotify.php:62 +#, php-format +msgid "%s Administrator" +msgstr "Beheerder %s" + +#: ../../include/network.php:1660 ../../include/account.php:316 +#: ../../include/account.php:343 ../../include/account.php:403 msgid "Administrator" msgstr "Beheerder" @@ -2032,258 +1298,6 @@ msgstr "Geen onderwerp" msgid "%1$s's bookmarks" msgstr "Bladwijzers van %1$s" -#: ../../include/text.php:391 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:393 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:422 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:425 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:435 -msgid "older" -msgstr "ouder" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "nieuwer" - -#: ../../include/text.php:775 -msgid "No connections" -msgstr "Geen connecties" - -#: ../../include/text.php:787 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d connectie" -msgstr[1] "%d connecties" - -#: ../../include/text.php:800 ../../mod/viewconnections.php:101 -msgid "View Connections" -msgstr "Connecties weergeven" - -#: ../../include/text.php:857 ../../include/text.php:869 -#: ../../include/apps.php:147 ../../include/nav.php:159 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "Zoeken" - -#: ../../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 "Opslaan" - -#: ../../include/text.php:933 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:934 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:934 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:935 -msgid "prod" -msgstr "por" - -#: ../../include/text.php:935 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:936 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:936 -msgid "slapped" -msgstr "sloeg" - -#: ../../include/text.php:937 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:937 -msgid "fingered" -msgstr "gefingerd" - -#: ../../include/text.php:938 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:938 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:948 -msgid "happy" -msgstr "gelukkig" - -#: ../../include/text.php:949 -msgid "sad" -msgstr "bedroefd" - -#: ../../include/text.php:950 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:951 -msgid "tired" -msgstr "moe" - -#: ../../include/text.php:952 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:953 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:954 -msgid "stupified" -msgstr "beteuterd" - -#: ../../include/text.php:955 -msgid "puzzled" -msgstr "verward" - -#: ../../include/text.php:956 -msgid "interested" -msgstr "geïnteresseerd" - -#: ../../include/text.php:957 -msgid "bitter" -msgstr "verbitterd" - -#: ../../include/text.php:958 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:959 -msgid "alive" -msgstr "levendig" - -#: ../../include/text.php:960 -msgid "annoyed" -msgstr "geërgerd" - -#: ../../include/text.php:961 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:962 -msgid "cranky" -msgstr "humeurig" - -#: ../../include/text.php:963 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:964 -msgid "frustrated" -msgstr "gefrustreerd " - -#: ../../include/text.php:965 -msgid "depressed" -msgstr "gedeprimeerd" - -#: ../../include/text.php:966 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:967 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:968 -msgid "surprised" -msgstr "verrast" - -#: ../../include/text.php:1144 -msgid "May" -msgstr "mei" - -#: ../../include/text.php:1247 -msgid "unknown.???" -msgstr "onbekend.???" - -#: ../../include/text.php:1248 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1284 -msgid "remove category" -msgstr "categorie verwijderen" - -#: ../../include/text.php:1359 -msgid "remove from file" -msgstr "uit map verwijderen" - -#: ../../include/text.php:1443 ../../include/text.php:1454 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" - -#: ../../include/text.php:1609 ../../mod/events.php:497 -msgid "Link to Source" -msgstr "Originele locatie" - -#: ../../include/text.php:1630 ../../include/text.php:1701 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1638 -msgid "Page layout" -msgstr "Pagina-lay-out" - -#: ../../include/text.php:1638 -msgid "You can create your own with the layouts tool" -msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" - -#: ../../include/text.php:1679 -msgid "Page content type" -msgstr "Opmaaktype pagina" - -#: ../../include/text.php:1713 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1845 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:2140 -msgid "Design Tools" -msgstr "Ontwerp-hulpmiddelen" - -#: ../../include/text.php:2143 ../../mod/blocks.php:147 -msgid "Blocks" -msgstr "Blokken" - -#: ../../include/text.php:2144 ../../mod/menu.php:103 -msgid "Menus" -msgstr "Menu's" - -#: ../../include/text.php:2145 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "Lay-outs" - -#: ../../include/text.php:2146 -msgid "Pages" -msgstr "Pagina's" - #: ../../include/acl_selectors.php:239 msgid "Visible to your default audience" msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" @@ -2297,78 +1311,16 @@ msgid "Don't show" msgstr "Niet tonen" #: ../../include/acl_selectors.php:247 ../../mod/filestorage.php:147 -#: ../../mod/chat.php:207 ../../mod/photos.php:592 ../../mod/photos.php:962 +#: ../../mod/chat.php:207 ../../mod/photos.php:619 ../../mod/photos.php:989 #: ../../mod/events.php:708 ../../mod/thing.php:310 ../../mod/thing.php:356 msgid "Permissions" msgstr "Permissies" -#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:361 -#: ../../mod/photos.php:1179 +#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:371 +#: ../../mod/photos.php:1206 msgid "Close" msgstr "Sluiten" -#: ../../include/attach.php:243 ../../include/attach.php:329 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: ../../include/attach.php:471 -msgid "No source file." -msgstr "Geen bronbestand." - -#: ../../include/attach.php:489 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" - -#: ../../include/attach.php:507 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" - -#: ../../include/attach.php:632 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../include/attach.php:645 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." - -#: ../../include/attach.php:793 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." - -#: ../../include/attach.php:806 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." - -#: ../../include/attach.php:854 ../../include/attach.php:870 -msgid "Path not available." -msgstr "Pad niet beschikbaar." - -#: ../../include/attach.php:916 ../../include/attach.php:1069 -msgid "Empty pathname" -msgstr "Padnaam leeg" - -#: ../../include/attach.php:942 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" - -#: ../../include/attach.php:965 -msgid "Path not found." -msgstr "Pad niet gevonden" - -#: ../../include/attach.php:1023 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." - -#: ../../include/attach.php:1027 -msgid "database storage failed." -msgstr "opslag in database mislukt." - -#: ../../include/attach.php:1075 -msgid "Empty path" -msgstr "Ontbrekend bestandspad" - #: ../../include/import.php:23 msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." @@ -2400,6 +1352,14 @@ msgstr "Nieuwe pagina" msgid "View" msgstr "Weergeven" +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:693 +#: ../../include/conversation.php:1160 ../../mod/editpost.php:150 +#: ../../mod/editblock.php:171 ../../mod/photos.php:1037 +#: ../../mod/events.php:707 ../../mod/webpages.php:188 +#: ../../mod/editwebpage.php:212 +msgid "Preview" +msgstr "Voorvertoning" + #: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 msgid "Actions" msgstr "Acties" @@ -2423,7 +1383,7 @@ msgid "Edited" msgstr "Bewerkt" #: ../../include/photo/photo_driver.php:705 ../../mod/photos.php:94 -#: ../../mod/photos.php:660 ../../mod/profile_photo.php:146 +#: ../../mod/photos.php:687 ../../mod/profile_photo.php:146 #: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:376 msgid "Profile Photos" msgstr "Profielfoto's" @@ -2694,7 +1654,7 @@ msgid "Finishes:" msgstr "Einde:" #: ../../include/event.php:50 ../../include/bb2diaspora.php:481 -#: ../../include/identity.php:992 ../../mod/directory.php:302 +#: ../../include/identity.php:1016 ../../mod/directory.php:302 #: ../../mod/events.php:701 msgid "Location:" msgstr "Plaats:" @@ -2703,6 +1663,12 @@ msgstr "Plaats:" msgid "This event has been added to your calendar." msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../include/event.php:896 ../../include/text.php:1827 +#: ../../include/conversation.php:123 ../../mod/like.php:363 +#: ../../mod/tagger.php:47 ../../mod/events.php:245 +msgid "event" +msgstr "gebeurtenis" + #: ../../include/event.php:953 msgid "Not specified" msgstr "Niet aangegeven" @@ -2727,11 +1693,16 @@ msgstr "Geannuleerd" msgid "Site Admin" msgstr "Hubbeheerder" +#: ../../include/apps.php:129 ../../include/conversation.php:1639 +#: ../../include/nav.php:103 +msgid "Bookmarks" +msgstr "Bladwijzers" + #: ../../include/apps.php:130 msgid "Address Book" msgstr "Connecties" -#: ../../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 "Inloggen" @@ -2740,24 +1711,34 @@ msgstr "Inloggen" msgid "Channel Manager" msgstr "Kanaalbeheer" -#: ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" +#: ../../include/apps.php:133 ../../include/nav.php:174 +msgid "Grid" +msgstr "Grid" #: ../../include/apps.php:134 ../../include/widgets.php:553 #: ../../include/nav.php:202 ../../mod/admin.php:1033 ../../mod/admin.php:1233 msgid "Settings" msgstr "Instellingen" +#: ../../include/apps.php:136 ../../include/conversation.php:1649 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Webpagina's" + #: ../../include/apps.php:137 ../../include/nav.php:177 msgid "Channel Home" msgstr "Tijdlijn kanaal" -#: ../../include/apps.php:138 ../../include/identity.php:1226 -#: ../../include/identity.php:1343 ../../mod/profperm.php:112 +#: ../../include/apps.php:138 ../../include/identity.php:1250 +#: ../../include/identity.php:1367 ../../mod/profperm.php:112 msgid "Profile" msgstr "Profiel" +#: ../../include/apps.php:139 ../../include/conversation.php:1606 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto's" + #: ../../include/apps.php:140 ../../include/nav.php:196 #: ../../mod/events.php:526 msgid "Events" @@ -2780,10 +1761,20 @@ msgstr "Privéberichten" msgid "Mood" msgstr "Stemming" +#: ../../include/apps.php:145 ../../include/conversation.php:952 +msgid "Poke" +msgstr "Aanstoten" + #: ../../include/apps.php:146 ../../include/nav.php:97 msgid "Chat" msgstr "Chatten" +#: ../../include/apps.php:147 ../../include/text.php:857 +#: ../../include/text.php:869 ../../include/nav.php:159 +#: ../../mod/search.php:38 +msgid "Search" +msgstr "Zoeken" + #: ../../include/apps.php:148 msgid "Probe" msgstr "Onderzoeken" @@ -2830,6 +1821,277 @@ msgstr "Installeren" msgid "Purchase" msgstr "Aanschaffen" +#: ../../include/text.php:391 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:393 +msgid "first" +msgstr "eerste" + +#: ../../include/text.php:422 +msgid "last" +msgstr "laatste" + +#: ../../include/text.php:425 +msgid "next" +msgstr "volgende" + +#: ../../include/text.php:435 +msgid "older" +msgstr "ouder" + +#: ../../include/text.php:437 +msgid "newer" +msgstr "nieuwer" + +#: ../../include/text.php:775 +msgid "No connections" +msgstr "Geen connecties" + +#: ../../include/text.php:787 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d connectie" +msgstr[1] "%d connecties" + +#: ../../include/text.php:800 ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "Connecties weergeven" + +#: ../../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 "Opslaan" + +#: ../../include/text.php:933 +msgid "poke" +msgstr "aanstoten" + +#: ../../include/text.php:933 ../../include/conversation.php:243 +msgid "poked" +msgstr "aangestoten" + +#: ../../include/text.php:934 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:934 +msgid "pinged" +msgstr "gepingd" + +#: ../../include/text.php:935 +msgid "prod" +msgstr "por" + +#: ../../include/text.php:935 +msgid "prodded" +msgstr "gepord" + +#: ../../include/text.php:936 +msgid "slap" +msgstr "slaan" + +#: ../../include/text.php:936 +msgid "slapped" +msgstr "sloeg" + +#: ../../include/text.php:937 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:937 +msgid "fingered" +msgstr "gefingerd" + +#: ../../include/text.php:938 +msgid "rebuff" +msgstr "afpoeieren" + +#: ../../include/text.php:938 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: ../../include/text.php:948 +msgid "happy" +msgstr "gelukkig" + +#: ../../include/text.php:949 +msgid "sad" +msgstr "bedroefd" + +#: ../../include/text.php:950 +msgid "mellow" +msgstr "mellow" + +#: ../../include/text.php:951 +msgid "tired" +msgstr "moe" + +#: ../../include/text.php:952 +msgid "perky" +msgstr "parmantig" + +#: ../../include/text.php:953 +msgid "angry" +msgstr "boos" + +#: ../../include/text.php:954 +msgid "stupified" +msgstr "beteuterd" + +#: ../../include/text.php:955 +msgid "puzzled" +msgstr "verward" + +#: ../../include/text.php:956 +msgid "interested" +msgstr "geïnteresseerd" + +#: ../../include/text.php:957 +msgid "bitter" +msgstr "verbitterd" + +#: ../../include/text.php:958 +msgid "cheerful" +msgstr "vrolijk" + +#: ../../include/text.php:959 +msgid "alive" +msgstr "levendig" + +#: ../../include/text.php:960 +msgid "annoyed" +msgstr "geërgerd" + +#: ../../include/text.php:961 +msgid "anxious" +msgstr "bezorgd" + +#: ../../include/text.php:962 +msgid "cranky" +msgstr "humeurig" + +#: ../../include/text.php:963 +msgid "disturbed" +msgstr "verontrust" + +#: ../../include/text.php:964 +msgid "frustrated" +msgstr "gefrustreerd " + +#: ../../include/text.php:965 +msgid "depressed" +msgstr "gedeprimeerd" + +#: ../../include/text.php:966 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:967 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:968 +msgid "surprised" +msgstr "verrast" + +#: ../../include/text.php:1144 +msgid "May" +msgstr "mei" + +#: ../../include/text.php:1221 ../../include/text.php:1225 +msgid "Unknown Attachment" +msgstr "Onbekende bijlage" + +#: ../../include/text.php:1227 +msgid "Attachment" +msgstr "Bijlage" + +#: ../../include/text.php:1227 +msgid "Size Unknown" +msgstr "Onbekende grootte" + +#: ../../include/text.php:1263 +msgid "remove category" +msgstr "categorie verwijderen" + +#: ../../include/text.php:1340 +msgid "remove from file" +msgstr "uit map verwijderen" + +#: ../../include/text.php:1425 ../../include/text.php:1436 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" + +#: ../../include/text.php:1601 ../../mod/events.php:497 +msgid "Link to Source" +msgstr "Originele locatie" + +#: ../../include/text.php:1622 ../../include/text.php:1693 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1630 +msgid "Page layout" +msgstr "Pagina-lay-out" + +#: ../../include/text.php:1630 +msgid "You can create your own with the layouts tool" +msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" + +#: ../../include/text.php:1671 +msgid "Page content type" +msgstr "Opmaaktype pagina" + +#: ../../include/text.php:1705 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../include/text.php:1824 ../../include/conversation.php:120 +#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "photo" +msgstr "foto" + +#: ../../include/text.php:1830 ../../include/conversation.php:148 +#: ../../mod/like.php:361 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "status" +msgstr "bericht" + +#: ../../include/text.php:1832 ../../include/conversation.php:150 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "reactie" + +#: ../../include/text.php:1837 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:2132 +msgid "Design Tools" +msgstr "Ontwerp-hulpmiddelen" + +#: ../../include/text.php:2135 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Blokken" + +#: ../../include/text.php:2136 ../../mod/menu.php:103 +msgid "Menus" +msgstr "Menu's" + +#: ../../include/text.php:2137 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Lay-outs" + +#: ../../include/text.php:2138 +msgid "Pages" +msgstr "Pagina's" + #: ../../include/auth.php:131 msgid "Logged out." msgstr "Uitgelogd." @@ -2842,6 +2104,185 @@ msgstr "Mislukte authenticatie" msgid "Login failed." msgstr "Inloggen mislukt." +#: ../../include/enotify.php:96 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:100 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" + +#: ../../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 zond jou een nieuw privébericht om %3$s." + +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s zond jou %2$s." + +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "een privébericht" + +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." + +#: ../../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 gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" + +#: ../../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 gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" + +#: ../../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 gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Notificatie] Reactie op conversatie #%1$d door %2$s" + +#: ../../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 gaf een reactie op een bericht/conversatie die jij volgt." + +#: ../../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 "Bezoek %s om de conversatie te bekijken en/of er op te reageren." + +#: ../../include/enotify.php:196 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" + +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" + +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" + +#: ../../include/enotify.php:224 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Notificatie] %s heeft je genoemd" + +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s noemde jou op %3$s" + +#: ../../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]noemde jou[/zrl]." + +#: ../../include/enotify.php:238 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Notificatie] %1$s heeft je aangestoten" + +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s heeft je aangestoten op %3$s" + +#: ../../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]heeft je aangestoten[/zrl]." + +#: ../../include/enotify.php:256 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Notificatie] %s heeft jouw bericht getagd" + +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" + +#: ../../include/enotify.php:270 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Notificatie] Connectieverzoek ontvangen" + +#: ../../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, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" + +#: ../../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, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." + +#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Je kan het profiel bekijken op %s" + +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." + +#: ../../include/enotify.php:285 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen" + +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" + +#: ../../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, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." + +#: ../../include/enotify.php:293 +msgid "Name:" +msgstr "Naam:" + +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." + +#: ../../include/enotify.php:511 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Notificatie]" + #: ../../include/bb2diaspora.php:373 msgid "Attachments:" msgstr "Bijlagen:" @@ -2850,6 +2291,245 @@ msgstr "Bijlagen:" msgid "$Projectname event notification:" msgstr "Notificatie $Projectname-gebeurtenis:" +#: ../../include/ItemObject.php:89 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Privébericht" + +#: ../../include/ItemObject.php:126 ../../include/conversation.php:656 +msgid "Select" +msgstr "Kies" + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In map opslaan" + +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Aanwezig" + +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "Niet aanwezig" + +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Mogelijk aanwezig" + +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Eens" + +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "Oneens" + +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Onthouding" + +#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 +#: ../../include/conversation.php:1681 ../../mod/photos.php:1070 +#: ../../mod/photos.php:1082 +msgid "View all" +msgstr "Toon alles" + +#: ../../include/ItemObject.php:179 ../../include/identity.php:1276 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1705 +#: ../../mod/photos.php:1074 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" + +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1708 +#: ../../mod/photos.php:1079 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" + +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Ster toevoegen" + +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Ster verwijderen" + +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" + +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "met ster" + +#: ../../include/ItemObject.php:227 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Berichtkenmerk gevalideerd" + +#: ../../include/ItemObject.php:228 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Berichtkenmerk onjuist" + +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Tag toevoegen" + +#: ../../include/ItemObject.php:254 ../../mod/photos.php:1014 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:317 +msgid "like" +msgstr "vind dit leuk" + +#: ../../include/ItemObject.php:255 ../../mod/photos.php:1015 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:318 +msgid "dislike" +msgstr "vind dit niet leuk" + +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Delen" + +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "delen" + +#: ../../include/ItemObject.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" + +#: ../../include/ItemObject.php:303 ../../include/ItemObject.php:304 +#, php-format +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" + +#: ../../include/ItemObject.php:307 +msgid "to" +msgstr "aan" + +#: ../../include/ItemObject.php:308 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:309 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:310 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:313 +msgid "Delivery Report" +msgstr "Afleveringsrapport" + +#: ../../include/ItemObject.php:322 ../../include/conversation.php:718 +#, php-format +msgid "from %s" +msgstr "van %s" + +#: ../../include/ItemObject.php:325 ../../include/conversation.php:721 +#, php-format +msgid "last edited: %s" +msgstr "laatst bewerkt: %s" + +#: ../../include/ItemObject.php:326 ../../include/conversation.php:722 +#, php-format +msgid "Expires: %s" +msgstr "Verloopt: %s" + +#: ../../include/ItemObject.php:349 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" + +#: ../../include/ItemObject.php:350 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" + +#: ../../include/ItemObject.php:359 +msgid "Mark all seen" +msgstr "Markeer alles als bekeken" + +#: ../../include/ItemObject.php:365 ../../mod/photos.php:1200 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../include/ItemObject.php:366 ../../mod/photos.php:1201 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../include/ItemObject.php:376 ../../include/conversation.php:739 +#: ../../include/conversation.php:1214 ../../mod/editpost.php:130 +#: ../../mod/editblock.php:150 ../../mod/photos.php:1017 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:190 +msgid "Please wait" +msgstr "Even wachten" + +#: ../../include/ItemObject.php:681 ../../mod/photos.php:1033 +#: ../../mod/photos.php:1151 +msgid "This is you" +msgstr "Dit ben jij" + +#: ../../include/ItemObject.php:685 ../../include/conversation.php:1186 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 +msgid "Bold" +msgstr "Vet" + +#: ../../include/ItemObject.php:686 ../../include/conversation.php:1187 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:137 +#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 +msgid "Italic" +msgstr "Cursief" + +#: ../../include/ItemObject.php:687 ../../include/conversation.php:1188 +#: ../../mod/editpost.php:116 ../../mod/editblock.php:138 +#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 +msgid "Underline" +msgstr "Onderstrepen" + +#: ../../include/ItemObject.php:688 ../../include/conversation.php:1189 +#: ../../mod/editpost.php:117 ../../mod/editblock.php:139 +#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 +msgid "Quote" +msgstr "Citeren" + +#: ../../include/ItemObject.php:689 ../../include/conversation.php:1190 +#: ../../mod/editpost.php:118 ../../mod/editblock.php:140 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 +msgid "Code" +msgstr "Broncode" + +#: ../../include/ItemObject.php:690 +msgid "Image" +msgstr "Afbeelding" + +#: ../../include/ItemObject.php:691 +msgid "Insert Link" +msgstr "Link invoegen" + +#: ../../include/ItemObject.php:692 +msgid "Video" +msgstr "Video" + +#: ../../include/ItemObject.php:696 ../../include/conversation.php:1241 +#: ../../mod/mail.php:247 ../../mod/mail.php:376 ../../mod/editpost.php:158 +msgid "Encrypt text" +msgstr "Tekst versleutelen" + #: ../../include/bbcode.php:123 ../../include/bbcode.php:793 #: ../../include/bbcode.php:796 ../../include/bbcode.php:801 #: ../../include/bbcode.php:804 ../../include/bbcode.php:807 @@ -2941,47 +2621,47 @@ msgstr "Vul de vereiste informatie in." msgid "Failed to store account information." msgstr "Account-informatie kon niet opgeslagen worden." -#: ../../include/account.php:246 +#: ../../include/account.php:248 #, php-format msgid "Registration confirmation for %s" msgstr "Registratiebevestiging voor %s" -#: ../../include/account.php:312 +#: ../../include/account.php:314 #, php-format msgid "Registration request at %s" msgstr "Registratiebevestiging voor %s" -#: ../../include/account.php:336 +#: ../../include/account.php:338 msgid "your registration password" msgstr "jouw registratiewachtwoord" -#: ../../include/account.php:339 ../../include/account.php:399 +#: ../../include/account.php:341 ../../include/account.php:401 #, php-format msgid "Registration details for %s" msgstr "Registratiegegevens voor %s" -#: ../../include/account.php:408 +#: ../../include/account.php:410 msgid "Account approved." msgstr "Account goedgekeurd" -#: ../../include/account.php:447 +#: ../../include/account.php:449 #, php-format msgid "Registration revoked for %s" msgstr "Registratie ingetrokken voor %s" -#: ../../include/account.php:492 +#: ../../include/account.php:494 msgid "Account verified. Please login." msgstr "Account is geverifieerd. Je kan inloggen." -#: ../../include/account.php:705 ../../include/account.php:707 +#: ../../include/account.php:707 ../../include/account.php:709 msgid "Click here to upgrade." msgstr "Klik hier om te upgraden." -#: ../../include/account.php:713 +#: ../../include/account.php:715 msgid "This action exceeds the limits set by your subscription plan." msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." -#: ../../include/account.php:718 +#: ../../include/account.php:720 msgid "This action is not available under your subscription plan." msgstr "Deze handeling is niet mogelijk met jouw abonnement." @@ -3017,7 +2697,7 @@ msgstr "lokale account niet gevonden." msgid "Cannot connect to yourself." msgstr "Kan niet met jezelf verbinden" -#: ../../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." @@ -3132,84 +2812,21 @@ msgstr "Kanalen die zich in geen enkele collectie bevinden" msgid "add" msgstr "toevoegen" -#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 -msgid "Tags" -msgstr "Tags" +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." -#: ../../include/taxonomy.php:294 -msgid "Keywords" -msgstr "Trefwoorden" +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../include/taxonomy.php:315 -msgid "have" -msgstr "heb" +#: ../../include/message.php:43 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." -#: ../../include/taxonomy.php:315 -msgid "has" -msgstr "heeft" - -#: ../../include/taxonomy.php:316 -msgid "want" -msgstr "wil" - -#: ../../include/taxonomy.php:316 -msgid "wants" -msgstr "wil" - -#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 -msgid "like" -msgstr "vind dit leuk" - -#: ../../include/taxonomy.php:317 -msgid "likes" -msgstr "vindt dit leuk" - -#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 -msgid "dislike" -msgstr "vind dit niet leuk" - -#: ../../include/taxonomy.php:318 -msgid "dislikes" -msgstr "vindt dit niet leuk" - -#: ../../include/dir_fns.php:126 -msgid "Directory Options" -msgstr "Opties kanalengids" - -#: ../../include/dir_fns.php:128 -msgid "Safe Mode" -msgstr "Veilig zoeken" - -#: ../../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 "Nee" - -#: ../../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/dir_fns.php:129 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" - -#: ../../include/dir_fns.php:130 -msgid "This Website Only" -msgstr "Alleen deze hub" +#: ../../include/message.php:218 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." #: ../../include/identity.php:32 msgid "Unable to obtain identity information from database" @@ -3248,11 +2865,11 @@ msgstr "Niet in staat om aangemaakte identiteit te vinden" msgid "Default Profile" msgstr "Standaardprofiel" -#: ../../include/identity.php:745 +#: ../../include/identity.php:769 msgid "Requested channel is not available." msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../include/identity.php:791 ../../mod/achievements.php:11 +#: ../../include/identity.php:815 ../../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 @@ -3261,417 +2878,785 @@ msgstr "Opgevraagd kanaal is niet beschikbaar." msgid "Requested profile is not available." msgstr "Opgevraagd profiel is niet beschikbaar" -#: ../../include/identity.php:954 ../../mod/profiles.php:774 +#: ../../include/identity.php:978 ../../mod/profiles.php:774 msgid "Change profile photo" msgstr "Profielfoto veranderen" -#: ../../include/identity.php:960 +#: ../../include/identity.php:984 msgid "Profiles" msgstr "Profielen" -#: ../../include/identity.php:960 +#: ../../include/identity.php:984 msgid "Manage/edit profiles" msgstr "Profielen beheren/bewerken" -#: ../../include/identity.php:961 ../../mod/profiles.php:775 +#: ../../include/identity.php:985 ../../mod/profiles.php:775 msgid "Create New Profile" msgstr "Nieuw profiel aanmaken" -#: ../../include/identity.php:964 ../../include/nav.php:90 +#: ../../include/identity.php:988 ../../include/nav.php:90 msgid "Edit Profile" msgstr "Profiel bewerken" -#: ../../include/identity.php:976 ../../mod/profiles.php:786 +#: ../../include/identity.php:1000 ../../mod/profiles.php:786 msgid "Profile Image" msgstr "Profielfoto" -#: ../../include/identity.php:979 +#: ../../include/identity.php:1003 msgid "visible to everybody" msgstr "Voor iedereen zichtbaar" -#: ../../include/identity.php:980 ../../mod/profiles.php:669 +#: ../../include/identity.php:1004 ../../mod/profiles.php:669 #: ../../mod/profiles.php:790 msgid "Edit visibility" msgstr "Zichtbaarheid bewerken" -#: ../../include/identity.php:996 ../../include/identity.php:1236 +#: ../../include/identity.php:1020 ../../include/identity.php:1260 msgid "Gender:" msgstr "Geslacht:" -#: ../../include/identity.php:997 ../../include/identity.php:1280 +#: ../../include/identity.php:1021 ../../include/identity.php:1304 msgid "Status:" msgstr "Status:" -#: ../../include/identity.php:998 ../../include/identity.php:1291 +#: ../../include/identity.php:1022 ../../include/identity.php:1315 msgid "Homepage:" msgstr "Homepagina:" -#: ../../include/identity.php:999 +#: ../../include/identity.php:1023 msgid "Online Now" msgstr "Nu online" -#: ../../include/identity.php:1083 ../../include/identity.php:1161 +#: ../../include/identity.php:1107 ../../include/identity.php:1185 #: ../../mod/ping.php:318 msgid "g A l F d" msgstr "G:i, l d F" -#: ../../include/identity.php:1084 ../../include/identity.php:1162 +#: ../../include/identity.php:1108 ../../include/identity.php:1186 msgid "F d" msgstr "d F" -#: ../../include/identity.php:1129 ../../include/identity.php:1201 +#: ../../include/identity.php:1153 ../../include/identity.php:1225 #: ../../mod/ping.php:341 msgid "[today]" msgstr "[vandaag]" -#: ../../include/identity.php:1140 +#: ../../include/identity.php:1164 msgid "Birthday Reminders" msgstr "Verjaardagsherinneringen" -#: ../../include/identity.php:1141 +#: ../../include/identity.php:1165 msgid "Birthdays this week:" msgstr "Verjaardagen deze week:" -#: ../../include/identity.php:1194 +#: ../../include/identity.php:1218 msgid "[No description]" msgstr "[Geen omschrijving]" -#: ../../include/identity.php:1212 +#: ../../include/identity.php:1236 msgid "Event Reminders" msgstr "Herinneringen" -#: ../../include/identity.php:1213 +#: ../../include/identity.php:1237 msgid "Events this week:" msgstr "Gebeurtenissen deze week:" -#: ../../include/identity.php:1234 ../../mod/settings.php:1026 +#: ../../include/identity.php:1258 ../../mod/settings.php:1026 msgid "Full Name:" msgstr "Volledige naam:" -#: ../../include/identity.php:1241 +#: ../../include/identity.php:1265 msgid "Like this channel" msgstr "Vind dit kanaal leuk" -#: ../../include/identity.php:1265 +#: ../../include/identity.php:1289 msgid "j F, Y" msgstr "F j Y" -#: ../../include/identity.php:1266 +#: ../../include/identity.php:1290 msgid "j F" msgstr "F j" -#: ../../include/identity.php:1273 +#: ../../include/identity.php:1297 msgid "Birthday:" msgstr "Geboortedatum:" -#: ../../include/identity.php:1277 ../../mod/directory.php:297 +#: ../../include/identity.php:1301 ../../mod/directory.php:297 msgid "Age:" msgstr "Leeftijd:" -#: ../../include/identity.php:1286 +#: ../../include/identity.php:1310 #, php-format msgid "for %1$d %2$s" msgstr "voor %1$d %2$s" -#: ../../include/identity.php:1289 ../../mod/profiles.php:691 +#: ../../include/identity.php:1313 ../../mod/profiles.php:691 msgid "Sexual Preference:" msgstr "Seksuele voorkeur:" -#: ../../include/identity.php:1293 ../../mod/directory.php:313 +#: ../../include/identity.php:1317 ../../mod/directory.php:313 #: ../../mod/profiles.php:693 msgid "Hometown:" msgstr "Oorspronkelijk uit:" -#: ../../include/identity.php:1295 +#: ../../include/identity.php:1319 msgid "Tags:" msgstr "Tags:" -#: ../../include/identity.php:1297 ../../mod/profiles.php:694 +#: ../../include/identity.php:1321 ../../mod/profiles.php:694 msgid "Political Views:" msgstr "Politieke overtuigingen:" -#: ../../include/identity.php:1299 +#: ../../include/identity.php:1323 msgid "Religion:" msgstr "Religie:" -#: ../../include/identity.php:1301 ../../mod/directory.php:315 +#: ../../include/identity.php:1325 ../../mod/directory.php:315 msgid "About:" msgstr "Over:" -#: ../../include/identity.php:1303 +#: ../../include/identity.php:1327 msgid "Hobbies/Interests:" msgstr "Hobby's/interesses:" -#: ../../include/identity.php:1305 ../../mod/profiles.php:697 +#: ../../include/identity.php:1329 ../../mod/profiles.php:697 msgid "Likes:" msgstr "Houdt van:" -#: ../../include/identity.php:1307 ../../mod/profiles.php:698 +#: ../../include/identity.php:1331 ../../mod/profiles.php:698 msgid "Dislikes:" msgstr "Houdt niet van:" -#: ../../include/identity.php:1309 +#: ../../include/identity.php:1333 msgid "Contact information and Social Networks:" msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/identity.php:1311 +#: ../../include/identity.php:1335 msgid "My other channels:" msgstr "Mijn andere kanalen" -#: ../../include/identity.php:1313 +#: ../../include/identity.php:1337 msgid "Musical interests:" msgstr "Muzikale interesses:" -#: ../../include/identity.php:1315 +#: ../../include/identity.php:1339 msgid "Books, literature:" msgstr "Boeken, literatuur:" -#: ../../include/identity.php:1317 +#: ../../include/identity.php:1341 msgid "Television:" msgstr "Televisie:" -#: ../../include/identity.php:1319 +#: ../../include/identity.php:1343 msgid "Film/dance/culture/entertainment:" msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/identity.php:1321 +#: ../../include/identity.php:1345 msgid "Love/Romance:" msgstr "Liefde/romantiek:" -#: ../../include/identity.php:1323 +#: ../../include/identity.php:1347 msgid "Work/employment:" msgstr "Werk/beroep:" -#: ../../include/identity.php:1325 +#: ../../include/identity.php:1349 msgid "School/education:" msgstr "School/opleiding:" -#: ../../include/identity.php:1345 +#: ../../include/identity.php:1369 msgid "Like this thing" msgstr "Vind dit ding leuk" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" +msgstr "Tags" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[geen onderwerp]" +#: ../../include/taxonomy.php:294 +msgid "Keywords" +msgstr "Trefwoorden" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." +#: ../../include/taxonomy.php:315 +msgid "have" +msgstr "heb" -#: ../../include/message.php:203 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." +#: ../../include/taxonomy.php:315 +msgid "has" +msgstr "heeft" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In map opslaan" +#: ../../include/taxonomy.php:316 +msgid "want" +msgstr "wil" -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Aanwezig" +#: ../../include/taxonomy.php:316 +msgid "wants" +msgstr "wil" -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Niet aanwezig" +#: ../../include/taxonomy.php:317 +msgid "likes" +msgstr "vindt dit leuk" -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Mogelijk aanwezig" +#: ../../include/taxonomy.php:318 +msgid "dislikes" +msgstr "vindt dit niet leuk" -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Eens" +#: ../../include/zot.php:683 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Oneens" +#: ../../include/zot.php:699 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Onthouding" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Ster toevoegen" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Ster verwijderen" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "met ster" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Tag toevoegen" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:987 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:988 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Delen" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "delen" - -#: ../../include/ItemObject.php:276 +#: ../../include/zot.php:2235 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" -#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 +#: ../../include/zot.php:3549 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" + +#: ../../include/attach.php:243 ../../include/attach.php:329 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: ../../include/attach.php:493 +msgid "No source file." +msgstr "Geen bronbestand." + +#: ../../include/attach.php:511 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" + +#: ../../include/attach.php:529 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" + +#: ../../include/attach.php:664 #, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" -#: ../../include/ItemObject.php:299 -msgid "to" -msgstr "aan" +#: ../../include/attach.php:678 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." -#: ../../include/ItemObject.php:300 -msgid "via" -msgstr "via" +#: ../../include/attach.php:828 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." -#: ../../include/ItemObject.php:301 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" +#: ../../include/attach.php:841 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." -#: ../../include/ItemObject.php:302 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" +#: ../../include/attach.php:889 ../../include/attach.php:905 +msgid "Path not available." +msgstr "Pad niet beschikbaar." -#: ../../include/ItemObject.php:305 -msgid "Delivery Report" -msgstr "Afleveringsrapport" +#: ../../include/attach.php:951 ../../include/attach.php:1103 +msgid "Empty pathname" +msgstr "Padnaam leeg" -#: ../../include/ItemObject.php:339 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" +#: ../../include/attach.php:977 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" -#: ../../include/ItemObject.php:340 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" +#: ../../include/attach.php:999 +msgid "Path not found." +msgstr "Pad niet gevonden" -#: ../../include/ItemObject.php:349 -msgid "Mark all seen" -msgstr "Markeer alles als bekeken" +#: ../../include/attach.php:1057 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." -#: ../../include/ItemObject.php:355 ../../mod/photos.php:1173 -msgctxt "noun" +#: ../../include/attach.php:1061 +msgid "database storage failed." +msgstr "opslag in database mislukt." + +#: ../../include/attach.php:1109 +msgid "Empty path" +msgstr "Ontbrekend bestandspad" + +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "kanaal" + +#: ../../include/conversation.php:164 ../../mod/like.php:410 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" + +#: ../../include/conversation.php:167 ../../mod/like.php:412 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s is nu met %2$s verbonden" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" + +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" + +#: ../../include/conversation.php:574 ../../mod/photos.php:1051 +msgctxt "title" msgid "Likes" msgstr "vinden dit leuk" -#: ../../include/ItemObject.php:356 ../../mod/photos.php:1174 -msgctxt "noun" +#: ../../include/conversation.php:574 ../../mod/photos.php:1051 +msgctxt "title" msgid "Dislikes" msgstr "vinden dit niet leuk" -#: ../../include/ItemObject.php:671 ../../mod/photos.php:1006 -#: ../../mod/photos.php:1124 -msgid "This is you" -msgstr "Dit ben jij" +#: ../../include/conversation.php:575 ../../mod/photos.php:1052 +msgctxt "title" +msgid "Agree" +msgstr "eens" -#: ../../include/ItemObject.php:680 -msgid "Image" -msgstr "Afbeelding" +#: ../../include/conversation.php:575 ../../mod/photos.php:1052 +msgctxt "title" +msgid "Disagree" +msgstr "oneens" -#: ../../include/ItemObject.php:681 -msgid "Insert Link" -msgstr "Link invoegen" +#: ../../include/conversation.php:575 ../../mod/photos.php:1052 +msgctxt "title" +msgid "Abstain" +msgstr "onthoudingen" -#: ../../include/ItemObject.php:682 -msgid "Video" -msgstr "Video" +#: ../../include/conversation.php:576 ../../mod/photos.php:1053 +msgctxt "title" +msgid "Attending" +msgstr "aanwezig" -#: ../../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 "Toegang geweigerd" +#: ../../include/conversation.php:576 ../../mod/photos.php:1053 +msgctxt "title" +msgid "Not attending" +msgstr "niet aanwezig" -#: ../../include/items.php:1128 ../../include/items.php:1174 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/conversation.php:576 ../../mod/photos.php:1053 +msgctxt "title" +msgid "Might attend" +msgstr "mogelijk aanwezig" -#: ../../include/items.php:1371 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." - -#: ../../include/items.php:1373 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." - -#: ../../include/items.php:1375 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." - -#: ../../include/items.php:1377 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." - -#: ../../include/items.php:1379 +#: ../../include/conversation.php:692 #, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/items.php:1381 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../include/conversation.php:709 +msgid "Categories:" +msgstr "Categorieën:" -#: ../../include/items.php:1383 -msgid "Visible to approved connections." -msgstr "Voor alle goedgekeurde connecties zichtbaar." +#: ../../include/conversation.php:710 +msgid "Filed under:" +msgstr "Bewaard onder:" -#: ../../include/items.php:1385 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../include/conversation.php:737 +msgid "View in context" +msgstr "In context bekijken" -#: ../../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 "Item niet gevonden." +#: ../../include/conversation.php:850 +msgid "remove" +msgstr "verwijderen" -#: ../../include/items.php:4772 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Collection not found." -msgstr "Collectie niet gevonden." +#: ../../include/conversation.php:854 ../../include/nav.php:241 +msgid "Loading..." +msgstr "Aan het laden..." -#: ../../include/items.php:4788 -msgid "Collection is empty." -msgstr "Collectie is leeg" +#: ../../include/conversation.php:855 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" -#: ../../include/items.php:4795 +#: ../../include/conversation.php:943 +msgid "View Source" +msgstr "Bron weergeven" + +#: ../../include/conversation.php:944 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: ../../include/conversation.php:945 +msgid "View Status" +msgstr "Status weergeven" + +#: ../../include/conversation.php:946 ../../include/nav.php:86 +#: ../../mod/connedit.php:494 +msgid "View Profile" +msgstr "Profiel weergeven" + +#: ../../include/conversation.php:947 +msgid "View Photos" +msgstr "Foto's weergeven" + +#: ../../include/conversation.php:948 +msgid "Activity/Posts" +msgstr "Kanaal-activiteit" + +#: ../../include/conversation.php:950 +msgid "Edit Connection" +msgstr "Connectie bewerken" + +#: ../../include/conversation.php:951 +msgid "Send PM" +msgstr "Privébericht verzenden" + +#: ../../include/conversation.php:1066 #, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" +msgid "%s likes this." +msgstr "%s vindt dit leuk." -#: ../../include/items.php:4805 ../../mod/connedit.php:658 +#: ../../include/conversation.php:1066 #, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." -#: ../../include/items.php:4807 -msgid "Connection not found." -msgstr "Connectie niet gevonden." +#: ../../include/conversation.php:1070 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d persoon vindt dit leuk." +msgstr[1] "%2$d personen vinden dit leuk." + +#: ../../include/conversation.php:1072 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d persoon vindt dit niet leuk." +msgstr[1] "%2$d personen vinden dit niet leuk." + +#: ../../include/conversation.php:1078 +msgid "and" +msgstr "en" + +#: ../../include/conversation.php:1081 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", en %d ander persoon" +msgstr[1] ", en %d andere personen" + +#: ../../include/conversation.php:1082 +#, php-format +msgid "%s like this." +msgstr "%s vinden dit leuk." + +#: ../../include/conversation.php:1082 +#, php-format +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." + +#: ../../include/conversation.php:1145 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" + +#: ../../include/conversation.php:1146 ../../mod/mail.php:194 +#: ../../mod/mail.php:308 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: ../../include/conversation.php:1147 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: ../../include/conversation.php:1148 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: ../../include/conversation.php:1149 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1150 ../../mod/filer.php:48 +msgid "Save to Folder:" +msgstr "Bewaar in map: " + +#: ../../include/conversation.php:1151 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" + +#: ../../include/conversation.php:1152 ../../mod/mail.php:195 +#: ../../mod/mail.php:309 ../../mod/editpost.php:54 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" + +#: ../../include/conversation.php:1179 ../../mod/layouts.php:184 +#: ../../mod/photos.php:1016 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 +msgid "Share" +msgstr "Delen" + +#: ../../include/conversation.php:1181 +msgid "Page link name" +msgstr "Linknaam pagina" + +#: ../../include/conversation.php:1184 +msgid "Post as" +msgstr "Bericht plaatsen als" + +#: ../../include/conversation.php:1191 ../../mod/editpost.php:119 +#: ../../mod/editblock.php:142 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:182 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: ../../include/conversation.php:1192 +msgid "upload photo" +msgstr "foto uploaden" + +#: ../../include/conversation.php:1193 ../../mod/mail.php:240 +#: ../../mod/mail.php:369 ../../mod/editpost.php:120 +#: ../../mod/editblock.php:143 ../../mod/editlayout.php:141 +#: ../../mod/editwebpage.php:183 +msgid "Attach file" +msgstr "Bestand toevoegen" + +#: ../../include/conversation.php:1194 +msgid "attach file" +msgstr "bestand toevoegen" + +#: ../../include/conversation.php:1195 ../../mod/mail.php:241 +#: ../../mod/mail.php:370 ../../mod/editpost.php:121 +#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 +#: ../../mod/editwebpage.php:184 +msgid "Insert web link" +msgstr "Weblink invoegen" + +#: ../../include/conversation.php:1196 +msgid "web link" +msgstr "Weblink" + +#: ../../include/conversation.php:1197 +msgid "Insert video link" +msgstr "Videolink invoegen" + +#: ../../include/conversation.php:1198 +msgid "video link" +msgstr "videolink" + +#: ../../include/conversation.php:1199 +msgid "Insert audio link" +msgstr "Audiolink invoegen" + +#: ../../include/conversation.php:1200 +msgid "audio link" +msgstr "audiolink" + +#: ../../include/conversation.php:1201 ../../mod/editpost.php:125 +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:188 +msgid "Set your location" +msgstr "Locatie instellen" + +#: ../../include/conversation.php:1202 +msgid "set location" +msgstr "locatie instellen" + +#: ../../include/conversation.php:1203 ../../mod/editpost.php:127 +msgid "Toggle voting" +msgstr "Stemmen in- of uitschakelen" + +#: ../../include/conversation.php:1206 ../../mod/editpost.php:126 +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:189 +msgid "Clear browser location" +msgstr "Locatie van webbrowser wissen" + +#: ../../include/conversation.php:1207 +msgid "clear location" +msgstr "locatie wissen" + +#: ../../include/conversation.php:1209 ../../mod/editpost.php:142 +#: ../../mod/editblock.php:162 ../../mod/editwebpage.php:205 +msgid "Title (optional)" +msgstr "Titel (optioneel)" + +#: ../../include/conversation.php:1213 ../../mod/editpost.php:144 +#: ../../mod/editblock.php:165 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:207 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" + +#: ../../include/conversation.php:1215 ../../mod/editpost.php:131 +#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:191 +msgid "Permission settings" +msgstr "Permissies" + +#: ../../include/conversation.php:1216 +msgid "permissions" +msgstr "permissies" + +#: ../../include/conversation.php:1224 ../../mod/editpost.php:139 +#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:200 +msgid "Public post" +msgstr "Openbaar bericht" + +#: ../../include/conversation.php:1226 ../../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 "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" + +#: ../../include/conversation.php:1239 ../../mod/mail.php:245 +#: ../../mod/mail.php:374 ../../mod/editpost.php:156 +#: ../../mod/editblock.php:176 ../../mod/editlayout.php:173 +#: ../../mod/editwebpage.php:217 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" + +#: ../../include/conversation.php:1243 ../../mod/editpost.php:160 +#: ../../mod/events.php:691 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1244 ../../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 "Annuleren" + +#: ../../include/conversation.php:1487 +msgid "Discover" +msgstr "Ontdekken" + +#: ../../include/conversation.php:1490 +msgid "Imported public streams" +msgstr "Openbare streams importeren" + +#: ../../include/conversation.php:1495 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" + +#: ../../include/conversation.php:1498 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" + +#: ../../include/conversation.php:1502 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" + +#: ../../include/conversation.php:1505 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" + +#: ../../include/conversation.php:1510 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Persoonlijk" + +#: ../../include/conversation.php:1513 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" + +#: ../../include/conversation.php:1519 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" +msgstr "Nieuw" + +#: ../../include/conversation.php:1522 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" + +#: ../../include/conversation.php:1528 +msgid "Starred" +msgstr "Met ster" + +#: ../../include/conversation.php:1531 +msgid "Favourite Posts" +msgstr "Favoriete berichten" + +#: ../../include/conversation.php:1538 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1541 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" + +#: ../../include/conversation.php:1585 ../../mod/admin.php:947 +msgid "Channel" +msgstr "Kanaal" + +#: ../../include/conversation.php:1588 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" + +#: ../../include/conversation.php:1597 +msgid "About" +msgstr "Over" + +#: ../../include/conversation.php:1600 +msgid "Profile Details" +msgstr "Profiel" + +#: ../../include/conversation.php:1616 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" + +#: ../../include/conversation.php:1626 ../../include/conversation.php:1629 +msgid "Chatrooms" +msgstr "Chatkanalen" + +#: ../../include/conversation.php:1642 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" + +#: ../../include/conversation.php:1652 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" + +#: ../../include/conversation.php:1711 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "aanwezig" +msgstr[1] "aanwezig" + +#: ../../include/conversation.php:1714 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "niet aanwezig" +msgstr[1] "niet aanwezig" + +#: ../../include/conversation.php:1717 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "nog niet beslist" +msgstr[1] "nog niet beslist" + +#: ../../include/conversation.php:1720 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "eens" +msgstr[1] "eens" + +#: ../../include/conversation.php:1723 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "oneens" +msgstr[1] "oneens" + +#: ../../include/conversation.php:1726 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "onthouding" +msgstr[1] "onthoudingen" #: ../../include/widgets.php:91 ../../include/nav.php:157 #: ../../mod/apps.php:36 @@ -3793,174 +3778,153 @@ msgid "Private Mail Menu" msgstr "Privéberichten" #: ../../include/widgets.php:569 -msgid "Check Mail" -msgstr "Controleer op nieuwe berichten" - -#: ../../include/widgets.php:575 msgid "Combined View" msgstr "Gecombineerd postvak" -#: ../../include/widgets.php:580 ../../include/nav.php:191 +#: ../../include/widgets.php:574 ../../include/nav.php:191 msgid "Inbox" msgstr "Postvak IN" -#: ../../include/widgets.php:585 ../../include/nav.php:192 +#: ../../include/widgets.php:579 ../../include/nav.php:192 msgid "Outbox" msgstr "Postvak UIT" -#: ../../include/widgets.php:590 ../../include/nav.php:193 +#: ../../include/widgets.php:584 ../../include/nav.php:193 msgid "New Message" msgstr "Nieuw bericht" -#: ../../include/widgets.php:609 ../../include/widgets.php:621 +#: ../../include/widgets.php:603 ../../include/widgets.php:615 msgid "Conversations" msgstr "Conversaties" -#: ../../include/widgets.php:613 +#: ../../include/widgets.php:607 msgid "Received Messages" msgstr "Ontvangen berichten" -#: ../../include/widgets.php:617 +#: ../../include/widgets.php:611 msgid "Sent Messages" msgstr "Verzonden berichten" -#: ../../include/widgets.php:631 +#: ../../include/widgets.php:625 msgid "No messages." msgstr "Geen berichten" -#: ../../include/widgets.php:648 +#: ../../include/widgets.php:643 msgid "Delete conversation" msgstr "Verwijder conversatie" -#: ../../include/widgets.php:650 +#: ../../include/widgets.php:645 msgid "D, d M Y - g:i A" msgstr "D, j M Y - G:i" -#: ../../include/widgets.php:738 +#: ../../include/widgets.php:734 msgid "Chat Rooms" msgstr "Chatkanalen" -#: ../../include/widgets.php:758 +#: ../../include/widgets.php:754 msgid "Bookmarked Chatrooms" msgstr "Bladwijzers van chatkanalen" -#: ../../include/widgets.php:778 +#: ../../include/widgets.php:774 msgid "Suggested Chatrooms" msgstr "Voorgestelde chatkanalen" -#: ../../include/widgets.php:905 ../../include/widgets.php:963 +#: ../../include/widgets.php:901 ../../include/widgets.php:959 msgid "photo/image" msgstr "foto/afbeelding" -#: ../../include/widgets.php:1058 ../../include/widgets.php:1060 +#: ../../include/widgets.php:1054 ../../include/widgets.php:1056 msgid "Rate Me" msgstr "Beoordeel mij" -#: ../../include/widgets.php:1064 +#: ../../include/widgets.php:1060 msgid "View Ratings" msgstr "Bekijk beoordelingen" -#: ../../include/widgets.php:1075 +#: ../../include/widgets.php:1071 msgid "Public Hubs" msgstr "Openbare hubs" -#: ../../include/widgets.php:1123 +#: ../../include/widgets.php:1119 msgid "Forums" msgstr "Forums" -#: ../../include/widgets.php:1150 +#: ../../include/widgets.php:1146 msgid "Tasks" msgstr "Taken" -#: ../../include/widgets.php:1159 +#: ../../include/widgets.php:1155 msgid "Documentation" msgstr "Documentatie" -#: ../../include/widgets.php:1161 +#: ../../include/widgets.php:1157 msgid "Project/Site Information" msgstr "Project- en hub-informatie" -#: ../../include/widgets.php:1162 +#: ../../include/widgets.php:1158 msgid "For Members" msgstr "Voor leden" -#: ../../include/widgets.php:1163 +#: ../../include/widgets.php:1159 msgid "For Administrators" msgstr "Voor beheerders" -#: ../../include/widgets.php:1164 +#: ../../include/widgets.php:1160 msgid "For Developers" msgstr "Voor ontwikkelaars" -#: ../../include/widgets.php:1189 ../../mod/admin.php:410 +#: ../../include/widgets.php:1185 ../../mod/admin.php:410 msgid "Site" msgstr "Hub-instellingen" -#: ../../include/widgets.php:1190 +#: ../../include/widgets.php:1186 msgid "Accounts" msgstr "Accounts" -#: ../../include/widgets.php:1191 ../../mod/admin.php:939 +#: ../../include/widgets.php:1187 ../../mod/admin.php:939 msgid "Channels" msgstr "Kanalen" -#: ../../include/widgets.php:1192 ../../mod/admin.php:1031 +#: ../../include/widgets.php:1188 ../../mod/admin.php:1031 #: ../../mod/admin.php:1071 msgid "Plugins" msgstr "Plug-ins" -#: ../../include/widgets.php:1193 ../../mod/admin.php:1231 +#: ../../include/widgets.php:1189 ../../mod/admin.php:1231 #: ../../mod/admin.php:1265 msgid "Themes" msgstr "Thema's" -#: ../../include/widgets.php:1194 +#: ../../include/widgets.php:1190 msgid "Inspect queue" msgstr "Inspecteer berichtenwachtrij" -#: ../../include/widgets.php:1195 +#: ../../include/widgets.php:1191 msgid "Profile Config" msgstr "Profielconfiguratie" -#: ../../include/widgets.php:1196 +#: ../../include/widgets.php:1192 msgid "DB updates" msgstr "Database-updates" -#: ../../include/widgets.php:1214 ../../include/widgets.php:1220 +#: ../../include/widgets.php:1210 ../../include/widgets.php:1216 #: ../../mod/admin.php:1350 msgid "Logs" msgstr "Logboeken" -#: ../../include/widgets.php:1218 ../../include/nav.php:210 +#: ../../include/widgets.php:1214 ../../include/nav.php:210 msgid "Admin" msgstr "Beheer" -#: ../../include/widgets.php:1219 +#: ../../include/widgets.php:1215 msgid "Plugin Features" msgstr "Plug-in-opties" -#: ../../include/widgets.php:1221 +#: ../../include/widgets.php:1217 msgid "User registrations waiting for confirmation" msgstr "Accounts die op goedkeuring wachten" -#: ../../include/zot.php:677 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" - -#: ../../include/zot.php:693 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " - -#: ../../include/zot.php:2213 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" - -#: ../../include/zot.php:3511 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" - -#: ../../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 "Uitloggen" @@ -4033,7 +3997,7 @@ msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" msgid "Home Page" msgstr "Homepage" -#: ../../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 "Registreren" @@ -4057,10 +4021,6 @@ msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?d msgid "Channel Directory" msgstr "Kanalengids" -#: ../../include/nav.php:174 -msgid "Grid" -msgstr "Grid" - #: ../../include/nav.php:174 msgid "Your grid" msgstr "Jouw grid" @@ -4141,6 +4101,45 @@ msgstr "@kanaal, #tag, inhoud, ?hulp" msgid "Please wait..." msgstr "Wachten aub..." +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Opties kanalengids" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Veilig zoeken" + +#: ../../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:616 ../../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 "Nee" + +#: ../../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:616 ../../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 "Ja" + +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Alleen deze hub" + #: ../../mod/achievements.php:34 msgid "Some blurb about what to do when you're new here" msgstr "Welkom op $Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van $Projectname kunt vinden. Voor hulp met $Projectname klik je op het vraagteken." @@ -4163,7 +4162,7 @@ msgid "Suggest a friend for %s" msgstr "Stel een kanaal voor aan %s" #: ../../mod/directory.php:59 ../../mod/display.php:13 ../../mod/search.php:13 -#: ../../mod/photos.php:453 ../../mod/ratings.php:82 +#: ../../mod/photos.php:480 ../../mod/ratings.php:82 #: ../../mod/viewconnections.php:17 msgid "Public access denied." msgstr "Openbare toegang geweigerd." @@ -5073,6 +5072,10 @@ msgstr "Toon URL van dit bestand" msgid "Notify your contacts about this file" msgstr "Jouw connecties over dit bestand berichten" +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" + #: ../../mod/layouts.php:121 ../../mod/layouts.php:179 #: ../../mod/editlayout.php:161 msgid "Layout Name" @@ -5193,13 +5196,109 @@ msgstr "Items getagd met %s" msgid "Search results for: %s" msgstr "Zoekresultaten voor %s" -#: ../../mod/message.php:34 +#: ../../mod/rate.php:158 +msgid "Website:" +msgstr "Website:" + +#: ../../mod/rate.php:161 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" + +#: ../../mod/rate.php:162 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" + +#: ../../mod/rate.php:163 +msgid "Optionally explain your rating (this information is public)" +msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." + +#: ../../mod/mail.php:132 +msgid "Messages" +msgstr "Berichten" + +#: ../../mod/mail.php:167 +msgid "Message recalled." +msgstr "Bericht ingetrokken." + +#: ../../mod/mail.php:180 msgid "Conversation removed." msgstr "Conversatie verwijderd" -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." +#: ../../mod/mail.php:223 +msgid "Requested channel is not in this network" +msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" + +#: ../../mod/mail.php:231 +msgid "Send Private Message" +msgstr "Privébericht versturen" + +#: ../../mod/mail.php:232 ../../mod/mail.php:361 +msgid "To:" +msgstr "Aan:" + +#: ../../mod/mail.php:235 ../../mod/mail.php:363 +msgid "Subject:" +msgstr "Onderwerp:" + +#: ../../mod/mail.php:238 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: ../../mod/mail.php:242 +msgid "Send" +msgstr "Verzenden" + +#: ../../mod/mail.php:333 +msgid "Delete message" +msgstr "Bericht verwijderen" + +#: ../../mod/mail.php:334 +msgid "Delivery report" +msgstr "Afleveringsrapport" + +#: ../../mod/mail.php:335 +msgid "Recall message" +msgstr "Bericht intrekken" + +#: ../../mod/mail.php:337 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." + +#: ../../mod/mail.php:354 +msgid "Delete Conversation" +msgstr "Verwijder conversatie" + +#: ../../mod/mail.php:356 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." + +#: ../../mod/mail.php:360 +msgid "Send Reply" +msgstr "Antwoord versturen" + +#: ../../mod/mail.php:365 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Jouw privébericht aan %s (%s):" #: ../../mod/editpost.php:20 ../../mod/editblock.php:78 #: ../../mod/editblock.php:94 ../../mod/editlayout.php:76 @@ -5234,47 +5333,63 @@ msgstr "Vorbis-audio [.ogg] invoegen" msgid "Edit post" msgstr "Bericht bewerken" -#: ../../mod/dreport.php:15 +#: ../../mod/dreport.php:23 msgid "Invalid message" msgstr "Ongeldig bericht" -#: ../../mod/dreport.php:25 +#: ../../mod/dreport.php:55 msgid "no results" msgstr "geen resultaten" -#: ../../mod/dreport.php:30 +#: ../../mod/dreport.php:60 #, php-format msgid "Delivery report for %1$s" msgstr "Afleveringsrapport voor %1$s" -#: ../../mod/dreport.php:39 +#: ../../mod/dreport.php:74 msgid "channel sync processed" msgstr "kanaalsync verwerkt" -#: ../../mod/dreport.php:43 +#: ../../mod/dreport.php:78 msgid "queued" msgstr "in wachtrij" -#: ../../mod/dreport.php:47 +#: ../../mod/dreport.php:82 msgid "posted" msgstr "verstuurd" -#: ../../mod/dreport.php:51 +#: ../../mod/dreport.php:86 msgid "accepted for delivery" msgstr "geaccepteerd om afgeleverd te worden" -#: ../../mod/dreport.php:55 +#: ../../mod/dreport.php:90 msgid "updated" msgstr "geüpdatet" -#: ../../mod/dreport.php:58 +#: ../../mod/dreport.php:93 msgid "update ignored" msgstr "update genegeerd" -#: ../../mod/dreport.php:61 +#: ../../mod/dreport.php:96 msgid "permission denied" msgstr "toegang geweigerd" +#: ../../mod/dreport.php:100 +msgid "recipient not found" +msgstr "ontvanger niet gevonden" + +#: ../../mod/dreport.php:103 +msgid "mail recalled" +msgstr "Privébericht ingetrokken" + +#: ../../mod/dreport.php:106 +msgid "duplicate mail received" +msgstr "dubbel privébericht ontvangen" + +#: ../../mod/dreport.php:109 +msgid "mail delivered" +msgstr "privébericht afgeleverd" + #: ../../mod/editblock.php:118 msgid "Delete block?" msgstr "Blok verwijderen" @@ -5296,28 +5411,28 @@ msgstr "Welkom op %s" msgid "Unable to locate original post." msgstr "Niet in staat om de originele locatie van het bericht te vinden. " -#: ../../mod/item.php:407 +#: ../../mod/item.php:418 msgid "Empty post discarded." msgstr "Leeg bericht geannuleerd" -#: ../../mod/item.php:447 +#: ../../mod/item.php:458 msgid "Executable content type not permitted to this channel." msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../mod/item.php:896 +#: ../../mod/item.php:907 msgid "System error. Post not saved." msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../mod/item.php:1163 +#: ../../mod/item.php:1174 msgid "Unable to obtain post information from database." msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." -#: ../../mod/item.php:1170 +#: ../../mod/item.php:1181 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." -#: ../../mod/item.php:1177 +#: ../../mod/item.php:1188 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." @@ -6332,7 +6447,7 @@ msgid "" "Password reset failed." msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." -#: ../../mod/lostpass.php:86 ../../boot.php:1505 +#: ../../mod/lostpass.php:86 ../../boot.php:1511 msgid "Password Reset" msgstr "Wachtwoord vergeten?" @@ -6393,150 +6508,150 @@ msgstr "Album niet gevonden." msgid "Delete Album" msgstr "Verwijder album" -#: ../../mod/photos.php:170 ../../mod/photos.php:970 +#: ../../mod/photos.php:171 ../../mod/photos.php:997 msgid "Delete Photo" msgstr "Verwijder foto" -#: ../../mod/photos.php:464 +#: ../../mod/photos.php:491 msgid "No photos selected" msgstr "Geen foto's geselecteerd" -#: ../../mod/photos.php:513 +#: ../../mod/photos.php:540 msgid "Access to this item is restricted." msgstr "Toegang tot dit item is beperkt." -#: ../../mod/photos.php:552 +#: ../../mod/photos.php:579 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." -#: ../../mod/photos.php:555 +#: ../../mod/photos.php:582 #, php-format msgid "%1$.2f MB photo storage used." msgstr "%1$.2f MB aan foto-opslag gebruikt." -#: ../../mod/photos.php:583 +#: ../../mod/photos.php:610 msgid "Upload Photos" msgstr "Foto's uploaden" -#: ../../mod/photos.php:587 +#: ../../mod/photos.php:614 msgid "Enter an album name" msgstr "Vul een albumnaam in" -#: ../../mod/photos.php:588 +#: ../../mod/photos.php:615 msgid "or select an existing album (doubleclick)" msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../mod/photos.php:589 +#: ../../mod/photos.php:616 msgid "Create a status post for this upload" msgstr "Plaats een bericht voor deze upload." -#: ../../mod/photos.php:616 +#: ../../mod/photos.php:643 msgid "Album name could not be decoded" msgstr "Albumnaam kon niet gedecodeerd worden" -#: ../../mod/photos.php:660 ../../mod/photos.php:1197 -#: ../../mod/photos.php:1214 +#: ../../mod/photos.php:687 ../../mod/photos.php:1224 +#: ../../mod/photos.php:1241 msgid "Contact Photos" msgstr "Connectiefoto's" -#: ../../mod/photos.php:688 +#: ../../mod/photos.php:715 msgid "Show Newest First" msgstr "Nieuwste eerst weergeven" -#: ../../mod/photos.php:690 +#: ../../mod/photos.php:717 msgid "Show Oldest First" msgstr "Oudste eerst weergeven" -#: ../../mod/photos.php:714 ../../mod/photos.php:1247 +#: ../../mod/photos.php:741 ../../mod/photos.php:1274 msgid "View Photo" msgstr "Foto weergeven" -#: ../../mod/photos.php:743 +#: ../../mod/photos.php:770 msgid "Edit Album" msgstr "Album bewerken" -#: ../../mod/photos.php:788 +#: ../../mod/photos.php:815 msgid "Permission denied. Access to this item may be restricted." msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." -#: ../../mod/photos.php:790 +#: ../../mod/photos.php:817 msgid "Photo not available" msgstr "Foto niet aanwezig" -#: ../../mod/photos.php:848 +#: ../../mod/photos.php:875 msgid "Use as profile photo" msgstr "Als profielfoto gebruiken" -#: ../../mod/photos.php:855 +#: ../../mod/photos.php:882 msgid "Private Photo" msgstr "Privéfoto" -#: ../../mod/photos.php:866 ../../mod/events.php:528 +#: ../../mod/photos.php:893 ../../mod/events.php:528 msgid "Previous" msgstr "Vorige" -#: ../../mod/photos.php:870 +#: ../../mod/photos.php:897 msgid "View Full Size" msgstr "Volledige grootte weergeven" -#: ../../mod/photos.php:875 ../../mod/events.php:529 ../../mod/setup.php:285 +#: ../../mod/photos.php:902 ../../mod/events.php:529 ../../mod/setup.php:285 msgid "Next" msgstr "Volgende" -#: ../../mod/photos.php:915 ../../mod/tagrm.php:133 +#: ../../mod/photos.php:942 ../../mod/tagrm.php:133 msgid "Remove" msgstr "Verwijderen" -#: ../../mod/photos.php:949 +#: ../../mod/photos.php:976 msgid "Edit photo" msgstr "Foto bewerken" -#: ../../mod/photos.php:951 +#: ../../mod/photos.php:978 msgid "Rotate CW (right)" msgstr "Draai met de klok mee (naar rechts)" -#: ../../mod/photos.php:952 +#: ../../mod/photos.php:979 msgid "Rotate CCW (left)" msgstr "Draai tegen de klok in (naar links)" -#: ../../mod/photos.php:955 +#: ../../mod/photos.php:982 msgid "Enter a new album name" msgstr "Vul een nieuwe albumnaam in" -#: ../../mod/photos.php:956 +#: ../../mod/photos.php:983 msgid "or select an existing one (doubleclick)" msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../mod/photos.php:959 +#: ../../mod/photos.php:986 msgid "Caption" msgstr "Bijschrift" -#: ../../mod/photos.php:961 +#: ../../mod/photos.php:988 msgid "Add a Tag" msgstr "Tag toevoegen" -#: ../../mod/photos.php:965 +#: ../../mod/photos.php:992 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" -#: ../../mod/photos.php:968 +#: ../../mod/photos.php:995 msgid "Flag as adult in album view" msgstr "Markeer als voor volwassenen in albumweergave" -#: ../../mod/photos.php:1160 +#: ../../mod/photos.php:1187 msgid "In This Photo:" msgstr "Op deze foto:" -#: ../../mod/photos.php:1165 +#: ../../mod/photos.php:1192 msgid "Map" msgstr "Kaart" -#: ../../mod/photos.php:1253 +#: ../../mod/photos.php:1280 msgid "View Album" msgstr "Album weergeven" -#: ../../mod/photos.php:1276 +#: ../../mod/photos.php:1303 msgid "Recent Photos" msgstr "Recente foto's" @@ -6544,23 +6659,6 @@ msgstr "Recente foto's" msgid "$Projectname channel" msgstr "$Projectname-kanaal" -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Website:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" - -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Beoordeling (deze informatie is openbaar)" - -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" - #: ../../mod/events.php:21 msgid "Calendar entries imported." msgstr "Agenda-items geïmporteerd." @@ -6819,84 +6917,6 @@ msgstr "Website: " msgid "Description: " msgstr "Omschrijving: " -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." - -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Berichten" - -#: ../../mod/mail.php:138 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: ../../mod/mail.php:154 -msgid "Message recalled." -msgstr "Bericht ingetrokken." - -#: ../../mod/mail.php:221 -msgid "Send Private Message" -msgstr "Privébericht versturen" - -#: ../../mod/mail.php:222 ../../mod/mail.php:352 -msgid "To:" -msgstr "Aan:" - -#: ../../mod/mail.php:227 ../../mod/mail.php:341 ../../mod/mail.php:354 -msgid "Subject:" -msgstr "Onderwerp:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:357 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: ../../mod/mail.php:238 -msgid "Send" -msgstr "Verzenden" - -#: ../../mod/mail.php:322 -msgid "Delete message" -msgstr "Bericht verwijderen" - -#: ../../mod/mail.php:323 -msgid "Recall message" -msgstr "Bericht intrekken" - -#: ../../mod/mail.php:325 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." - -#: ../../mod/mail.php:345 -msgid "Delete Conversation" -msgstr "Verwijder conversatie" - -#: ../../mod/mail.php:347 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." - -#: ../../mod/mail.php:351 -msgid "Send Reply" -msgstr "Antwoord versturen" - #: ../../mod/webpages.php:191 msgid "Page Title" msgstr "Paginatitel" @@ -7024,6 +7044,10 @@ msgstr "Geen abonnementsbeperkingen gevonden." msgid "Item not available." msgstr "Item is niet aanwezig." +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" + #: ../../mod/sources.php:32 msgid "Failed to create source. No channel selected." msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." @@ -7128,9 +7152,9 @@ msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" msgid "Authenticate" msgstr "Authenticeren" -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." #: ../../mod/siteinfo.php:111 #, php-format @@ -7169,9 +7193,9 @@ msgstr "Draaiend op weblocatie" #: ../../mod/siteinfo.php:168 msgid "" -"Please visit redmatrix.me to learn more" -" about $Projectname." -msgstr "Bezoek redmatrix.me om meer over $Projectname te leren." +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bezoek hubzilla.org " #: ../../mod/siteinfo.php:169 msgid "Bug reports and issues: please visit" @@ -7217,42 +7241,42 @@ msgstr "Waarschuwing: database-versies lopen %1$d updates achter." msgid "No channel. Import failed." msgstr "Geen kanaal. Importeren mislukt." -#: ../../mod/import.php:493 +#: ../../mod/import.php:499 msgid "You must be logged in to use this feature." msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." -#: ../../mod/import.php:498 +#: ../../mod/import.php:504 msgid "Import Channel" msgstr "Kanaal importeren" -#: ../../mod/import.php:499 +#: ../../mod/import.php:505 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 "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." -#: ../../mod/import.php:500 ../../mod/import_items.php:121 +#: ../../mod/import.php:506 ../../mod/import_items.php:121 msgid "File to Upload" msgstr "Bestand om te uploaden" -#: ../../mod/import.php:501 +#: ../../mod/import.php:507 msgid "Or provide the old server/hub details" msgstr "Of vul de gegevens van de oude hub in" -#: ../../mod/import.php:502 +#: ../../mod/import.php:508 msgid "Your old identity address (xyz@example.com)" msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../mod/import.php:503 +#: ../../mod/import.php:509 msgid "Your old login email address" msgstr "Het e-mailadres van je oude account" -#: ../../mod/import.php:504 +#: ../../mod/import.php:510 msgid "Your old login password" msgstr "Wachtwoord van jouw oude account" -#: ../../mod/import.php:505 +#: ../../mod/import.php:511 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" @@ -7260,17 +7284,17 @@ msgid "" "primary location for files, photos, and media." msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." -#: ../../mod/import.php:506 +#: ../../mod/import.php:512 msgid "Make this hub my primary location" msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../mod/import.php:507 +#: ../../mod/import.php:513 msgid "" "Import existing posts if possible (experimental - limited by available " "memory" msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" -#: ../../mod/import.php:508 +#: ../../mod/import.php:514 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." @@ -9129,51 +9153,51 @@ msgstr "Grootte profielfoto's van berichten instellen" msgid "Set size of followup author photos" msgstr "Grootte profielfoto's van reacties instellen" -#: ../../boot.php:1302 +#: ../../boot.php:1308 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1305 +#: ../../boot.php:1311 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1472 +#: ../../boot.php:1478 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla" -#: ../../boot.php:1500 +#: ../../boot.php:1506 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1501 +#: ../../boot.php:1507 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1504 +#: ../../boot.php:1510 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2130 +#: ../../boot.php:2136 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2265 +#: ../../boot.php:2271 msgid "Website SSL certificate is not valid. Please correct." msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." -#: ../../boot.php:2268 +#: ../../boot.php:2274 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2305 +#: ../../boot.php:2311 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2309 +#: ../../boot.php:2315 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-taken zijn niet actief op %s" diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index 422c65f3c..2fe450586 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -5,6 +5,13 @@ function string_plural_select_nl($n){ return ($n != 1);; }} ; +$a->strings["Permission denied."] = "Toegang geweigerd"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; +$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; $a->strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; $a->strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; $a->strings["Import completed."] = "Import voltooid."; @@ -66,7 +73,6 @@ $a->strings["Missing room name"] = "Naam chatkanaal ontbreekt"; $a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; $a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; $a->strings["Room not found."] = "Chatkanaal niet gevonden"; -$a->strings["Permission denied."] = "Toegang geweigerd"; $a->strings["Room is full"] = "Chatkanaal is vol"; $a->strings["Miscellaneous"] = "Diversen"; $a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; @@ -259,301 +265,36 @@ $a->strings["New window"] = "Nieuw venster"; $a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; $a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; -$a->strings["photo"] = "foto"; -$a->strings["event"] = "gebeurtenis"; -$a->strings["channel"] = "kanaal"; -$a->strings["status"] = "bericht"; -$a->strings["comment"] = "reactie"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; -$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; -$a->strings["poked"] = "aangestoten"; -$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; -$a->strings["__ctx:title__ Likes"] = "vinden dit leuk"; -$a->strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; -$a->strings["__ctx:title__ Agree"] = "eens"; -$a->strings["__ctx:title__ Disagree"] = "oneens"; -$a->strings["__ctx:title__ Abstain"] = "onthoudingen"; -$a->strings["__ctx:title__ Attending"] = "aanwezig"; -$a->strings["__ctx:title__ Not attending"] = "niet aanwezig"; -$a->strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; -$a->strings["Select"] = "Kies"; -$a->strings["Private Message"] = "Privébericht"; -$a->strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; -$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; -$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -$a->strings["Categories:"] = "Categorieën:"; -$a->strings["Filed under:"] = "Bewaard onder:"; -$a->strings["from %s"] = "van %s"; -$a->strings["last edited: %s"] = "laatst bewerkt: %s"; -$a->strings["Expires: %s"] = "Verloopt: %s"; -$a->strings["View in context"] = "In context bekijken"; -$a->strings["Please wait"] = "Even wachten"; -$a->strings["remove"] = "verwijderen"; -$a->strings["Loading..."] = "Aan het laden..."; -$a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; -$a->strings["View Source"] = "Bron weergeven"; -$a->strings["Follow Thread"] = "Conversatie volgen"; -$a->strings["View Status"] = "Status weergeven"; -$a->strings["View Profile"] = "Profiel weergeven"; -$a->strings["View Photos"] = "Foto's weergeven"; -$a->strings["Activity/Posts"] = "Kanaal-activiteit"; -$a->strings["Edit Connection"] = "Connectie bewerken"; -$a->strings["Send PM"] = "Privébericht verzenden"; -$a->strings["Poke"] = "Aanstoten"; -$a->strings["%s likes this."] = "%s vindt dit leuk."; -$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -$a->strings["%2\$d people like this."] = array( - 0 => "%2\$d persoon vindt dit leuk.", - 1 => "%2\$d personen vinden dit leuk.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "%2\$d persoon vindt dit niet leuk.", - 1 => "%2\$d personen vinden dit niet leuk.", -); -$a->strings["and"] = "en"; -$a->strings[", and %d other people"] = array( - 0 => ", en %d ander persoon", - 1 => ", en %d andere personen", -); -$a->strings["%s like this."] = "%s vinden dit leuk."; -$a->strings["%s don't like this."] = "%s vinden dit niet leuk."; -$a->strings["Visible to everybody"] = "Voor iedereen zichtbaar"; -$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; -$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; -$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Save to Folder:"] = "Bewaar in map: "; -$a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; -$a->strings["Preview"] = "Voorvertoning"; -$a->strings["Share"] = "Delen"; -$a->strings["Page link name"] = "Linknaam pagina"; -$a->strings["Post as"] = "Bericht plaatsen als"; -$a->strings["Bold"] = "Vet"; -$a->strings["Italic"] = "Cursief"; -$a->strings["Underline"] = "Onderstrepen"; -$a->strings["Quote"] = "Citeren"; -$a->strings["Code"] = "Broncode"; -$a->strings["Upload photo"] = "Foto uploaden"; -$a->strings["upload photo"] = "foto uploaden"; -$a->strings["Attach file"] = "Bestand toevoegen"; -$a->strings["attach file"] = "bestand toevoegen"; -$a->strings["Insert web link"] = "Weblink invoegen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Videolink invoegen"; -$a->strings["video link"] = "videolink"; -$a->strings["Insert audio link"] = "Audiolink invoegen"; -$a->strings["audio link"] = "audiolink"; -$a->strings["Set your location"] = "Locatie instellen"; -$a->strings["set location"] = "locatie instellen"; -$a->strings["Toggle voting"] = "Stemmen in- of uitschakelen"; -$a->strings["Clear browser location"] = "Locatie van webbrowser wissen"; -$a->strings["clear location"] = "locatie wissen"; -$a->strings["Title (optional)"] = "Titel (optioneel)"; -$a->strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -$a->strings["Permission settings"] = "Permissies"; -$a->strings["permissions"] = "permissies"; -$a->strings["Public post"] = "Openbaar bericht"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be"; -$a->strings["Set expiration date"] = "Verloopdatum instellen"; -$a->strings["Encrypt text"] = "Tekst versleutelen"; -$a->strings["OK"] = "OK"; -$a->strings["Cancel"] = "Annuleren"; -$a->strings["Discover"] = "Ontdekken"; -$a->strings["Imported public streams"] = "Openbare streams importeren"; -$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; -$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; -$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -$a->strings["Personal"] = "Persoonlijk"; -$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; -$a->strings["New"] = "Nieuw"; -$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -$a->strings["Starred"] = "Met ster"; -$a->strings["Favourite Posts"] = "Favoriete berichten"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; -$a->strings["Channel"] = "Kanaal"; -$a->strings["Status Messages and Posts"] = "Berichten in dit kanaal"; -$a->strings["About"] = "Over"; -$a->strings["Profile Details"] = "Profiel"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Photo Albums"] = "Fotoalbums"; -$a->strings["Files and Storage"] = "Bestanden en opslagruimte"; -$a->strings["Chatrooms"] = "Chatkanalen"; -$a->strings["Bookmarks"] = "Bladwijzers"; -$a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; -$a->strings["Webpages"] = "Webpagina's"; -$a->strings["Manage Webpages"] = "Webpagina's beheren"; -$a->strings["View all"] = "Toon alles"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "vindt dit niet leuk", - 1 => "vinden dit niet leuk", -); -$a->strings["__ctx:noun__ Attending"] = array( - 0 => "aanwezig", - 1 => "aanwezig", -); -$a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "niet aanwezig", - 1 => "niet aanwezig", -); -$a->strings["__ctx:noun__ Undecided"] = array( - 0 => "nog niet beslist", - 1 => "nog niet beslist", -); -$a->strings["__ctx:noun__ Agree"] = array( - 0 => "eens", - 1 => "eens", -); -$a->strings["__ctx:noun__ Disagree"] = array( - 0 => "oneens", - 1 => "oneens", -); -$a->strings["__ctx:noun__ Abstain"] = array( - 0 => "onthouding", - 1 => "onthoudingen", -); +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["(Unknown)"] = "(Onbekend)"; +$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; +$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["Collection not found."] = "Collectie niet gevonden."; +$a->strings["Collection is empty."] = "Collectie is leeg"; +$a->strings["Collection: %s"] = "Collectie: %s"; +$a->strings["Connection: %s"] = "Connectie: %s"; +$a->strings["Connection not found."] = "Connectie niet gevonden."; $a->strings["Public Timeline"] = "Openbare tijdlijn"; -$a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; -$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; -$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; -$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["view full size"] = "volledige grootte tonen"; $a->strings["\$Projectname Notification"] = "\$Projectname-notificatie"; $a->strings["\$projectname"] = "\$projectname"; $a->strings["Thank You,"] = "Bedankt,"; $a->strings["%s Administrator"] = "Beheerder %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notificatie] Nieuw privébericht ontvangen op %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; -$a->strings["a private message"] = "een privébericht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notificatie] %s heeft je genoemd"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notificatie] %1\$s heeft je aangestoten"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notificatie] %s heeft jouw bericht getagd"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Notificatie] Connectieverzoek ontvangen"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; -$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificatie] Kanaalvoorstel ontvangen"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; -$a->strings["Name:"] = "Naam:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; -$a->strings["[Red:Notify]"] = "[Red:Notificatie]"; -$a->strings["view full size"] = "volledige grootte tonen"; $a->strings["Administrator"] = "Beheerder"; $a->strings["No Subject"] = "Geen onderwerp"; $a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -$a->strings["prev"] = "vorige"; -$a->strings["first"] = "eerste"; -$a->strings["last"] = "laatste"; -$a->strings["next"] = "volgende"; -$a->strings["older"] = "ouder"; -$a->strings["newer"] = "nieuwer"; -$a->strings["No connections"] = "Geen connecties"; -$a->strings["%d Connection"] = array( - 0 => "%d connectie", - 1 => "%d connecties", -); -$a->strings["View Connections"] = "Connecties weergeven"; -$a->strings["Search"] = "Zoeken"; -$a->strings["Save"] = "Opslaan"; -$a->strings["poke"] = "aanstoten"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = "gepingd"; -$a->strings["prod"] = "por"; -$a->strings["prodded"] = "gepord"; -$a->strings["slap"] = "slaan"; -$a->strings["slapped"] = "sloeg"; -$a->strings["finger"] = "finger"; -$a->strings["fingered"] = "gefingerd"; -$a->strings["rebuff"] = "afpoeieren"; -$a->strings["rebuffed"] = "afgepoeierd"; -$a->strings["happy"] = "gelukkig"; -$a->strings["sad"] = "bedroefd"; -$a->strings["mellow"] = "mellow"; -$a->strings["tired"] = "moe"; -$a->strings["perky"] = "parmantig"; -$a->strings["angry"] = "boos"; -$a->strings["stupified"] = "beteuterd"; -$a->strings["puzzled"] = "verward"; -$a->strings["interested"] = "geïnteresseerd"; -$a->strings["bitter"] = "verbitterd"; -$a->strings["cheerful"] = "vrolijk"; -$a->strings["alive"] = "levendig"; -$a->strings["annoyed"] = "geërgerd"; -$a->strings["anxious"] = "bezorgd"; -$a->strings["cranky"] = "humeurig"; -$a->strings["disturbed"] = "verontrust"; -$a->strings["frustrated"] = "gefrustreerd "; -$a->strings["depressed"] = "gedeprimeerd"; -$a->strings["motivated"] = "gemotiveerd"; -$a->strings["relaxed"] = "ontspannen"; -$a->strings["surprised"] = "verrast"; -$a->strings["May"] = "mei"; -$a->strings["unknown.???"] = "onbekend.???"; -$a->strings["bytes"] = "bytes"; -$a->strings["remove category"] = "categorie verwijderen"; -$a->strings["remove from file"] = "uit map verwijderen"; -$a->strings["Click to open/close"] = "Klik om te openen of te sluiten"; -$a->strings["Link to Source"] = "Originele locatie"; -$a->strings["default"] = "standaard"; -$a->strings["Page layout"] = "Pagina-lay-out"; -$a->strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs"; -$a->strings["Page content type"] = "Opmaaktype pagina"; -$a->strings["Select an alternate language"] = "Kies een andere taal"; -$a->strings["activity"] = "activiteit"; -$a->strings["Design Tools"] = "Ontwerp-hulpmiddelen"; -$a->strings["Blocks"] = "Blokken"; -$a->strings["Menus"] = "Menu's"; -$a->strings["Layouts"] = "Lay-outs"; -$a->strings["Pages"] = "Pagina's"; $a->strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; $a->strings["Show"] = "Tonen"; $a->strings["Don't show"] = "Niet tonen"; $a->strings["Permissions"] = "Permissies"; $a->strings["Close"] = "Sluiten"; -$a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["No source file."] = "Geen bronbestand."; -$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -$a->strings["Path not available."] = "Pad niet beschikbaar."; -$a->strings["Empty pathname"] = "Padnaam leeg"; -$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -$a->strings["Path not found."] = "Pad niet gevonden"; -$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -$a->strings["database storage failed."] = "opslag in database mislukt."; -$a->strings["Empty path"] = "Ontbrekend bestandspad"; $a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; $a->strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; $a->strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; @@ -561,6 +302,7 @@ $a->strings["created a new post"] = "maakte een nieuw bericht aan"; $a->strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; $a->strings["New Page"] = "Nieuwe pagina"; $a->strings["View"] = "Weergeven"; +$a->strings["Preview"] = "Voorvertoning"; $a->strings["Actions"] = "Acties"; $a->strings["Page Link"] = "Paginalink"; $a->strings["Title"] = "Titel"; @@ -631,25 +373,31 @@ $a->strings["Starts:"] = "Start:"; $a->strings["Finishes:"] = "Einde:"; $a->strings["Location:"] = "Plaats:"; $a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +$a->strings["event"] = "gebeurtenis"; $a->strings["Not specified"] = "Niet aangegeven"; $a->strings["Needs Action"] = "Actie vereist"; $a->strings["Completed"] = "Voltooid"; $a->strings["In Process"] = "In behandeling"; $a->strings["Cancelled"] = "Geannuleerd"; $a->strings["Site Admin"] = "Hubbeheerder"; +$a->strings["Bookmarks"] = "Bladwijzers"; $a->strings["Address Book"] = "Connecties"; $a->strings["Login"] = "Inloggen"; $a->strings["Channel Manager"] = "Kanaalbeheer"; -$a->strings["Matrix"] = "Matrix"; +$a->strings["Grid"] = "Grid"; $a->strings["Settings"] = "Instellingen"; +$a->strings["Webpages"] = "Webpagina's"; $a->strings["Channel Home"] = "Tijdlijn kanaal"; $a->strings["Profile"] = "Profiel"; +$a->strings["Photos"] = "Foto's"; $a->strings["Events"] = "Agenda"; $a->strings["Directory"] = "Kanalengids"; $a->strings["Help"] = "Hulp"; $a->strings["Mail"] = "Privéberichten"; $a->strings["Mood"] = "Stemming"; +$a->strings["Poke"] = "Aanstoten"; $a->strings["Chat"] = "Chatten"; +$a->strings["Search"] = "Zoeken"; $a->strings["Probe"] = "Onderzoeken"; $a->strings["Suggest"] = "Voorstellen"; $a->strings["Random Channel"] = "Willekeurig kanaal"; @@ -661,11 +409,175 @@ $a->strings["Profile Photo"] = "Profielfoto"; $a->strings["Update"] = "Bijwerken"; $a->strings["Install"] = "Installeren"; $a->strings["Purchase"] = "Aanschaffen"; +$a->strings["prev"] = "vorige"; +$a->strings["first"] = "eerste"; +$a->strings["last"] = "laatste"; +$a->strings["next"] = "volgende"; +$a->strings["older"] = "ouder"; +$a->strings["newer"] = "nieuwer"; +$a->strings["No connections"] = "Geen connecties"; +$a->strings["%d Connection"] = array( + 0 => "%d connectie", + 1 => "%d connecties", +); +$a->strings["View Connections"] = "Connecties weergeven"; +$a->strings["Save"] = "Opslaan"; +$a->strings["poke"] = "aanstoten"; +$a->strings["poked"] = "aangestoten"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "gepingd"; +$a->strings["prod"] = "por"; +$a->strings["prodded"] = "gepord"; +$a->strings["slap"] = "slaan"; +$a->strings["slapped"] = "sloeg"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "gefingerd"; +$a->strings["rebuff"] = "afpoeieren"; +$a->strings["rebuffed"] = "afgepoeierd"; +$a->strings["happy"] = "gelukkig"; +$a->strings["sad"] = "bedroefd"; +$a->strings["mellow"] = "mellow"; +$a->strings["tired"] = "moe"; +$a->strings["perky"] = "parmantig"; +$a->strings["angry"] = "boos"; +$a->strings["stupified"] = "beteuterd"; +$a->strings["puzzled"] = "verward"; +$a->strings["interested"] = "geïnteresseerd"; +$a->strings["bitter"] = "verbitterd"; +$a->strings["cheerful"] = "vrolijk"; +$a->strings["alive"] = "levendig"; +$a->strings["annoyed"] = "geërgerd"; +$a->strings["anxious"] = "bezorgd"; +$a->strings["cranky"] = "humeurig"; +$a->strings["disturbed"] = "verontrust"; +$a->strings["frustrated"] = "gefrustreerd "; +$a->strings["depressed"] = "gedeprimeerd"; +$a->strings["motivated"] = "gemotiveerd"; +$a->strings["relaxed"] = "ontspannen"; +$a->strings["surprised"] = "verrast"; +$a->strings["May"] = "mei"; +$a->strings["Unknown Attachment"] = "Onbekende bijlage"; +$a->strings["Attachment"] = "Bijlage"; +$a->strings["Size Unknown"] = "Onbekende grootte"; +$a->strings["remove category"] = "categorie verwijderen"; +$a->strings["remove from file"] = "uit map verwijderen"; +$a->strings["Click to open/close"] = "Klik om te openen of te sluiten"; +$a->strings["Link to Source"] = "Originele locatie"; +$a->strings["default"] = "standaard"; +$a->strings["Page layout"] = "Pagina-lay-out"; +$a->strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs"; +$a->strings["Page content type"] = "Opmaaktype pagina"; +$a->strings["Select an alternate language"] = "Kies een andere taal"; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "bericht"; +$a->strings["comment"] = "reactie"; +$a->strings["activity"] = "activiteit"; +$a->strings["Design Tools"] = "Ontwerp-hulpmiddelen"; +$a->strings["Blocks"] = "Blokken"; +$a->strings["Menus"] = "Menu's"; +$a->strings["Layouts"] = "Lay-outs"; +$a->strings["Pages"] = "Pagina's"; $a->strings["Logged out."] = "Uitgelogd."; $a->strings["Failed authentication"] = "Mislukte authenticatie"; $a->strings["Login failed."] = "Inloggen mislukt."; +$a->strings["%s "] = "%s "; +$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; +$a->strings["a private message"] = "een privébericht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; +$a->strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; +$a->strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; +$a->strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notificatie] %s heeft je genoemd"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; +$a->strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notificatie] %1\$s heeft je aangestoten"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; +$a->strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notificatie] %s heeft jouw bericht getagd"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; +$a->strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notificatie] Connectieverzoek ontvangen"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; +$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; +$a->strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; +$a->strings["Name:"] = "Naam:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; +$a->strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; $a->strings["Attachments:"] = "Bijlagen:"; $a->strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; +$a->strings["Private Message"] = "Privébericht"; +$a->strings["Select"] = "Kies"; +$a->strings["Save to Folder"] = "In map opslaan"; +$a->strings["I will attend"] = "Aanwezig"; +$a->strings["I will not attend"] = "Niet aanwezig"; +$a->strings["I might attend"] = "Mogelijk aanwezig"; +$a->strings["I agree"] = "Eens"; +$a->strings["I disagree"] = "Oneens"; +$a->strings["I abstain"] = "Onthouding"; +$a->strings["View all"] = "Toon alles"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "vindt dit niet leuk", + 1 => "vinden dit niet leuk", +); +$a->strings["Add Star"] = "Ster toevoegen"; +$a->strings["Remove Star"] = "Ster verwijderen"; +$a->strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; +$a->strings["starred"] = "met ster"; +$a->strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; +$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; +$a->strings["Add Tag"] = "Tag toevoegen"; +$a->strings["I like this (toggle)"] = "Vind ik leuk"; +$a->strings["like"] = "vind dit leuk"; +$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +$a->strings["dislike"] = "vind dit niet leuk"; +$a->strings["Share This"] = "Delen"; +$a->strings["share"] = "delen"; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties weergeven", +); +$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; +$a->strings["to"] = "aan"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; +$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; +$a->strings["Delivery Report"] = "Afleveringsrapport"; +$a->strings["from %s"] = "van %s"; +$a->strings["last edited: %s"] = "laatst bewerkt: %s"; +$a->strings["Expires: %s"] = "Verloopt: %s"; +$a->strings["Save Bookmarks"] = "Bladwijzers opslaan"; +$a->strings["Add to Calendar"] = "Aan agenda toevoegen"; +$a->strings["Mark all seen"] = "Markeer alles als bekeken"; +$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk"; +$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +$a->strings["Please wait"] = "Even wachten"; +$a->strings["This is you"] = "Dit ben jij"; +$a->strings["Bold"] = "Vet"; +$a->strings["Italic"] = "Cursief"; +$a->strings["Underline"] = "Onderstrepen"; +$a->strings["Quote"] = "Citeren"; +$a->strings["Code"] = "Broncode"; +$a->strings["Image"] = "Afbeelding"; +$a->strings["Insert Link"] = "Link invoegen"; +$a->strings["Video"] = "Video"; +$a->strings["Encrypt text"] = "Tekst versleutelen"; $a->strings["Image/photo"] = "Afbeelding/foto"; $a->strings["Encrypted content"] = "Versleutelde inhoud"; $a->strings["Install %s element: "] = "Installeer %s-element: "; @@ -735,22 +647,10 @@ $a->strings["Edit collection"] = "Collectie bewerken"; $a->strings["Add new collection"] = "Nieuwe collectie toevoegen"; $a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; $a->strings["add"] = "toevoegen"; -$a->strings["Tags"] = "Tags"; -$a->strings["Keywords"] = "Trefwoorden"; -$a->strings["have"] = "heb"; -$a->strings["has"] = "heeft"; -$a->strings["want"] = "wil"; -$a->strings["wants"] = "wil"; -$a->strings["like"] = "vind dit leuk"; -$a->strings["likes"] = "vindt dit leuk"; -$a->strings["dislike"] = "vind dit niet leuk"; -$a->strings["dislikes"] = "vindt dit niet leuk"; -$a->strings["Directory Options"] = "Opties kanalengids"; -$a->strings["Safe Mode"] = "Veilig zoeken"; -$a->strings["No"] = "Nee"; -$a->strings["Yes"] = "Ja"; -$a->strings["Public Forums Only"] = "Alleen openbare forums"; -$a->strings["This Website Only"] = "Alleen deze hub"; +$a->strings["No recipient provided."] = "Geen ontvanger opgegeven."; +$a->strings["[no subject]"] = "[geen onderwerp]"; +$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +$a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; $a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; $a->strings["Empty name"] = "Ontbrekende naam"; $a->strings["Name too long"] = "Naam te lang"; @@ -808,61 +708,160 @@ $a->strings["Love/Romance:"] = "Liefde/romantiek:"; $a->strings["Work/employment:"] = "Werk/beroep:"; $a->strings["School/education:"] = "School/opleiding:"; $a->strings["Like this thing"] = "Vind dit ding leuk"; -$a->strings["No recipient provided."] = "Geen ontvanger opgegeven."; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -$a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; -$a->strings["Save to Folder"] = "In map opslaan"; -$a->strings["I will attend"] = "Aanwezig"; -$a->strings["I will not attend"] = "Niet aanwezig"; -$a->strings["I might attend"] = "Mogelijk aanwezig"; -$a->strings["I agree"] = "Eens"; -$a->strings["I disagree"] = "Oneens"; -$a->strings["I abstain"] = "Onthouding"; -$a->strings["Add Star"] = "Ster toevoegen"; -$a->strings["Remove Star"] = "Ster verwijderen"; -$a->strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; -$a->strings["starred"] = "met ster"; -$a->strings["Add Tag"] = "Tag toevoegen"; -$a->strings["I like this (toggle)"] = "Vind ik leuk"; -$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -$a->strings["Share This"] = "Delen"; -$a->strings["share"] = "delen"; -$a->strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties weergeven", +$a->strings["Tags"] = "Tags"; +$a->strings["Keywords"] = "Trefwoorden"; +$a->strings["have"] = "heb"; +$a->strings["has"] = "heeft"; +$a->strings["want"] = "wil"; +$a->strings["wants"] = "wil"; +$a->strings["likes"] = "vindt dit leuk"; +$a->strings["dislikes"] = "vindt dit niet leuk"; +$a->strings["Invalid data packet"] = "Datapakket ongeldig"; +$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; +$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; +$a->strings["invalid target signature"] = "ongeldig doelkenmerk"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["No source file."] = "Geen bronbestand."; +$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +$a->strings["Path not available."] = "Pad niet beschikbaar."; +$a->strings["Empty pathname"] = "Padnaam leeg"; +$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; +$a->strings["Path not found."] = "Pad niet gevonden"; +$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +$a->strings["database storage failed."] = "opslag in database mislukt."; +$a->strings["Empty path"] = "Ontbrekend bestandspad"; +$a->strings["channel"] = "kanaal"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; +$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; +$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; +$a->strings["__ctx:title__ Likes"] = "vinden dit leuk"; +$a->strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; +$a->strings["__ctx:title__ Agree"] = "eens"; +$a->strings["__ctx:title__ Disagree"] = "oneens"; +$a->strings["__ctx:title__ Abstain"] = "onthoudingen"; +$a->strings["__ctx:title__ Attending"] = "aanwezig"; +$a->strings["__ctx:title__ Not attending"] = "niet aanwezig"; +$a->strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; +$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +$a->strings["Categories:"] = "Categorieën:"; +$a->strings["Filed under:"] = "Bewaard onder:"; +$a->strings["View in context"] = "In context bekijken"; +$a->strings["remove"] = "verwijderen"; +$a->strings["Loading..."] = "Aan het laden..."; +$a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; +$a->strings["View Source"] = "Bron weergeven"; +$a->strings["Follow Thread"] = "Conversatie volgen"; +$a->strings["View Status"] = "Status weergeven"; +$a->strings["View Profile"] = "Profiel weergeven"; +$a->strings["View Photos"] = "Foto's weergeven"; +$a->strings["Activity/Posts"] = "Kanaal-activiteit"; +$a->strings["Edit Connection"] = "Connectie bewerken"; +$a->strings["Send PM"] = "Privébericht verzenden"; +$a->strings["%s likes this."] = "%s vindt dit leuk."; +$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +$a->strings["%2\$d people like this."] = array( + 0 => "%2\$d persoon vindt dit leuk.", + 1 => "%2\$d personen vinden dit leuk.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "%2\$d persoon vindt dit niet leuk.", + 1 => "%2\$d personen vinden dit niet leuk.", +); +$a->strings["and"] = "en"; +$a->strings[", and %d other people"] = array( + 0 => ", en %d ander persoon", + 1 => ", en %d andere personen", +); +$a->strings["%s like this."] = "%s vinden dit leuk."; +$a->strings["%s don't like this."] = "%s vinden dit niet leuk."; +$a->strings["Visible to everybody"] = "Voor iedereen zichtbaar"; +$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; +$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; +$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Save to Folder:"] = "Bewaar in map: "; +$a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; +$a->strings["Share"] = "Delen"; +$a->strings["Page link name"] = "Linknaam pagina"; +$a->strings["Post as"] = "Bericht plaatsen als"; +$a->strings["Upload photo"] = "Foto uploaden"; +$a->strings["upload photo"] = "foto uploaden"; +$a->strings["Attach file"] = "Bestand toevoegen"; +$a->strings["attach file"] = "bestand toevoegen"; +$a->strings["Insert web link"] = "Weblink invoegen"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Videolink invoegen"; +$a->strings["video link"] = "videolink"; +$a->strings["Insert audio link"] = "Audiolink invoegen"; +$a->strings["audio link"] = "audiolink"; +$a->strings["Set your location"] = "Locatie instellen"; +$a->strings["set location"] = "locatie instellen"; +$a->strings["Toggle voting"] = "Stemmen in- of uitschakelen"; +$a->strings["Clear browser location"] = "Locatie van webbrowser wissen"; +$a->strings["clear location"] = "locatie wissen"; +$a->strings["Title (optional)"] = "Titel (optioneel)"; +$a->strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +$a->strings["Permission settings"] = "Permissies"; +$a->strings["permissions"] = "permissies"; +$a->strings["Public post"] = "Openbaar bericht"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be"; +$a->strings["Set expiration date"] = "Verloopdatum instellen"; +$a->strings["OK"] = "OK"; +$a->strings["Cancel"] = "Annuleren"; +$a->strings["Discover"] = "Ontdekken"; +$a->strings["Imported public streams"] = "Openbare streams importeren"; +$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; +$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; +$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +$a->strings["Personal"] = "Persoonlijk"; +$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; +$a->strings["New"] = "Nieuw"; +$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +$a->strings["Starred"] = "Met ster"; +$a->strings["Favourite Posts"] = "Favoriete berichten"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; +$a->strings["Channel"] = "Kanaal"; +$a->strings["Status Messages and Posts"] = "Berichten in dit kanaal"; +$a->strings["About"] = "Over"; +$a->strings["Profile Details"] = "Profiel"; +$a->strings["Files and Storage"] = "Bestanden en opslagruimte"; +$a->strings["Chatrooms"] = "Chatkanalen"; +$a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +$a->strings["Manage Webpages"] = "Webpagina's beheren"; +$a->strings["__ctx:noun__ Attending"] = array( + 0 => "aanwezig", + 1 => "aanwezig", +); +$a->strings["__ctx:noun__ Not Attending"] = array( + 0 => "niet aanwezig", + 1 => "niet aanwezig", +); +$a->strings["__ctx:noun__ Undecided"] = array( + 0 => "nog niet beslist", + 1 => "nog niet beslist", +); +$a->strings["__ctx:noun__ Agree"] = array( + 0 => "eens", + 1 => "eens", +); +$a->strings["__ctx:noun__ Disagree"] = array( + 0 => "oneens", + 1 => "oneens", +); +$a->strings["__ctx:noun__ Abstain"] = array( + 0 => "onthouding", + 1 => "onthoudingen", ); -$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; -$a->strings["to"] = "aan"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; -$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; -$a->strings["Delivery Report"] = "Afleveringsrapport"; -$a->strings["Save Bookmarks"] = "Bladwijzers opslaan"; -$a->strings["Add to Calendar"] = "Aan agenda toevoegen"; -$a->strings["Mark all seen"] = "Markeer alles als bekeken"; -$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk"; -$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -$a->strings["This is you"] = "Dit ben jij"; -$a->strings["Image"] = "Afbeelding"; -$a->strings["Insert Link"] = "Link invoegen"; -$a->strings["Video"] = "Video"; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["(Unknown)"] = "(Onbekend)"; -$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; -$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Collection not found."] = "Collectie niet gevonden."; -$a->strings["Collection is empty."] = "Collectie is leeg"; -$a->strings["Collection: %s"] = "Collectie: %s"; -$a->strings["Connection: %s"] = "Connectie: %s"; -$a->strings["Connection not found."] = "Connectie niet gevonden."; $a->strings["Apps"] = "Apps"; $a->strings["System"] = "Systeem"; $a->strings["Create Personal App"] = "Persoonlijke app maken"; @@ -892,7 +891,6 @@ $a->strings["Export channel"] = "Kanaal exporteren"; $a->strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; $a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; $a->strings["Private Mail Menu"] = "Privéberichten"; -$a->strings["Check Mail"] = "Controleer op nieuwe berichten"; $a->strings["Combined View"] = "Gecombineerd postvak"; $a->strings["Inbox"] = "Postvak IN"; $a->strings["Outbox"] = "Postvak UIT"; @@ -929,10 +927,6 @@ $a->strings["Logs"] = "Logboeken"; $a->strings["Admin"] = "Beheer"; $a->strings["Plugin Features"] = "Plug-in-opties"; $a->strings["User registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; -$a->strings["Invalid data packet"] = "Datapakket ongeldig"; -$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; -$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; -$a->strings["invalid target signature"] = "ongeldig doelkenmerk"; $a->strings["Logout"] = "Uitloggen"; $a->strings["End this session"] = "Beëindig deze sessie"; $a->strings["Home"] = "Home"; @@ -957,7 +951,6 @@ $a->strings["Help and documentation"] = "Hulp en documentatie"; $a->strings["Applications, utilities, links, games"] = "Apps"; $a->strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; $a->strings["Channel Directory"] = "Kanalengids"; -$a->strings["Grid"] = "Grid"; $a->strings["Your grid"] = "Jouw grid"; $a->strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; $a->strings["Channel home"] = "Tijdlijn kanaal"; @@ -978,6 +971,12 @@ $a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; $a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; $a->strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; $a->strings["Please wait..."] = "Wachten aub..."; +$a->strings["Directory Options"] = "Opties kanalengids"; +$a->strings["Safe Mode"] = "Veilig zoeken"; +$a->strings["No"] = "Nee"; +$a->strings["Yes"] = "Ja"; +$a->strings["Public Forums Only"] = "Alleen openbare forums"; +$a->strings["This Website Only"] = "Alleen deze hub"; $a->strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; $a->strings["Contact not found."] = "Contact niet gevonden"; $a->strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; @@ -1196,6 +1195,7 @@ $a->strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak $a->strings["Share this file"] = "Dit bestand delen"; $a->strings["Show URL to this file"] = "Toon URL van dit bestand"; $a->strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; +$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; $a->strings["Layout Name"] = "Naam lay-out"; $a->strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; $a->strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; @@ -1225,8 +1225,31 @@ $a->strings["Chatroom Name"] = "Naam chatkanaal"; $a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; $a->strings["Items tagged with: %s"] = "Items getagd met %s"; $a->strings["Search results for: %s"] = "Zoekresultaten voor %s"; +$a->strings["Website:"] = "Website:"; +$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; +$a->strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; +$a->strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; +$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +$a->strings["Messages"] = "Berichten"; +$a->strings["Message recalled."] = "Bericht ingetrokken."; $a->strings["Conversation removed."] = "Conversatie verwijderd"; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +$a->strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; +$a->strings["Send Private Message"] = "Privébericht versturen"; +$a->strings["To:"] = "Aan:"; +$a->strings["Subject:"] = "Onderwerp:"; +$a->strings["Your message:"] = "Jouw bericht:"; +$a->strings["Send"] = "Verzenden"; +$a->strings["Delete message"] = "Bericht verwijderen"; +$a->strings["Delivery report"] = "Afleveringsrapport"; +$a->strings["Recall message"] = "Bericht intrekken"; +$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; +$a->strings["Delete Conversation"] = "Verwijder conversatie"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +$a->strings["Send Reply"] = "Antwoord versturen"; +$a->strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; $a->strings["Item not found"] = "Item niet gevonden"; $a->strings["Item is not editable"] = "Item is niet te bewerken"; $a->strings["Delete item?"] = "Item verwijderen?"; @@ -1244,6 +1267,10 @@ $a->strings["accepted for delivery"] = "geaccepteerd om afgeleverd te worden"; $a->strings["updated"] = "geüpdatet"; $a->strings["update ignored"] = "update genegeerd"; $a->strings["permission denied"] = "toegang geweigerd"; +$a->strings["recipient not found"] = "ontvanger niet gevonden"; +$a->strings["mail recalled"] = "Privébericht ingetrokken"; +$a->strings["duplicate mail received"] = "dubbel privébericht ontvangen"; +$a->strings["mail delivered"] = "privébericht afgeleverd"; $a->strings["Delete block?"] = "Blok verwijderen"; $a->strings["Edit Block"] = "Blok bewerken"; $a->strings["\$Projectname"] = "\$Projectname"; @@ -1549,10 +1576,6 @@ $a->strings["Map"] = "Kaart"; $a->strings["View Album"] = "Album weergeven"; $a->strings["Recent Photos"] = "Recente foto's"; $a->strings["\$Projectname channel"] = "\$Projectname-kanaal"; -$a->strings["Website:"] = "Website:"; -$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; -$a->strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; -$a->strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; $a->strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; $a->strings["No calendar entries found."] = "Geen agenda-items gevonden."; $a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; @@ -1615,25 +1638,6 @@ $a->strings["Ratings"] = "Waarderingen"; $a->strings["Rating: "] = "Waardering: "; $a->strings["Website: "] = "Website: "; $a->strings["Description: "] = "Omschrijving: "; -$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; -$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -$a->strings["Messages"] = "Berichten"; -$a->strings["Message deleted."] = "Bericht verwijderd."; -$a->strings["Message recalled."] = "Bericht ingetrokken."; -$a->strings["Send Private Message"] = "Privébericht versturen"; -$a->strings["To:"] = "Aan:"; -$a->strings["Subject:"] = "Onderwerp:"; -$a->strings["Your message:"] = "Jouw bericht:"; -$a->strings["Send"] = "Verzenden"; -$a->strings["Delete message"] = "Bericht verwijderen"; -$a->strings["Recall message"] = "Bericht intrekken"; -$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; -$a->strings["Delete Conversation"] = "Verwijder conversatie"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -$a->strings["Send Reply"] = "Antwoord versturen"; $a->strings["Page Title"] = "Paginatitel"; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; @@ -1662,6 +1666,7 @@ $a->strings["By default only the instances of the channels located on this hub w $a->strings["Remove Account"] = "Account verwijderen"; $a->strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; $a->strings["Item not available."] = "Item is niet aanwezig."; +$a->strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; $a->strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; $a->strings["Source created."] = "Bron aangemaakt."; $a->strings["Source updated."] = "Bron aangemaakt."; @@ -1687,7 +1692,7 @@ $a->strings["Authentication failed."] = "Authenticatie mislukt."; $a->strings["Remote Authentication"] = "Authenticatie op afstand"; $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; $a->strings["Authenticate"] = "Authenticeren"; -$a->strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; $a->strings["Version %s"] = "Versie %s"; $a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; $a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps"; @@ -1696,7 +1701,7 @@ $a->strings["Tag: "] = "Tag: "; $a->strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; $a->strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; $a->strings["Running at web location"] = "Draaiend op weblocatie"; -$a->strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Bezoek redmatrix.me om meer over \$Projectname te leren."; +$a->strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; $a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; $a->strings["\$projectname issues"] = "\$projectname-issues"; $a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; diff --git a/view/nl/messages.po b/view/nl/messages.po index 1c8420890..da9d95a8b 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -9,159 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-05-17 16:33-0700\n" -"PO-Revision-Date: 2015-05-20 13:13+0000\n" +"POT-Creation-Date: 2015-10-14 13:36+0200\n" +"PO-Revision-Date: 2015-10-16 13:13+0000\n" "Last-Translator: jeroenpraat \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/red-matrix/language/nl/)\n" +"Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\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 DNS-informatie voor databaseserver '%s' niet vinden" - -#: ../../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 "Profielfoto's" - -#: ../../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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "maakte een nieuw bericht aan" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "gaf een reactie op een bericht van %s" - -#: ../../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 "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy-collectie voor nieuwe kanalen" - -#: ../../include/group.php:254 ../../mod/admin.php:822 -msgid "All Channels" -msgstr "Alle kanalen" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "bewerken" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Collecties" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Collectie bewerken" - -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "Nieuwe collectie toevoegen" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanalen die zich in geen enkele collectie bevinden" - -#: ../../include/group.php:303 ../../include/widgets.php:275 -msgid "add" -msgstr "toevoegen" - -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" - -#: ../../include/account.php:29 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze hub niet toegestaan" - -#: ../../include/account.php:35 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze hub geregistreerd." - - -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" - -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" - -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." - -#: ../../include/account.php:246 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:312 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:314 ../../include/account.php:341 -#: ../../include/account.php:401 -msgid "Administrator" -msgstr "Beheerder" - -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" - -#: ../../include/account.php:339 ../../include/account.php:399 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" - -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:447 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." - -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." - -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." - #: ../../include/datetime.php:48 msgid "Miscellaneous" msgstr "Diversen" @@ -170,12 +27,12 @@ msgstr "Diversen" msgid "YYYY-MM-DD or MM-DD" msgstr "JJJJ-MM-DD of MM-DD" -#: ../../include/datetime.php:235 ../../mod/events.php:635 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 +#: ../../include/datetime.php:235 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 ../../mod/events.php:672 msgid "Required" msgstr "Vereist" -#: ../../include/datetime.php:262 ../../boot.php:2342 +#: ../../include/datetime.php:262 ../../boot.php:2353 msgid "never" msgstr "nooit" @@ -255,415 +112,1738 @@ msgstr "Verjaardag van %1$s" msgid "Happy Birthday %1$s" msgstr "Gefeliciteerd met je verjaardag %1$s" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" +#: ../../include/conversation.php:120 ../../include/text.php:1884 +#: ../../include/diaspora.php:2119 ../../mod/tagger.php:43 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/like.php:349 +msgid "photo" +msgstr "foto" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:269 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:43 -#: ../../mod/settings.php:644 ../../mod/webpages.php:179 -#: ../../mod/thing.php:227 ../../mod/connections.php:382 -#: ../../mod/connections.php:395 ../../mod/connections.php:414 -#: ../../mod/blocks.php:152 ../../mod/editlayout.php:139 -#: ../../mod/editwebpage.php:178 ../../mod/editpost.php:113 -#: ../../mod/menu.php:100 ../../mod/editblock.php:140 -#: ../../mod/layouts.php:182 -msgid "Edit" -msgstr "Bewerken" +#: ../../include/conversation.php:123 ../../include/text.php:1887 +#: ../../mod/tagger.php:47 ../../mod/like.php:351 +msgid "event" +msgstr "gebeurtenis" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:185 -#: ../../mod/blocks.php:158 ../../mod/layouts.php:187 -msgid "View" -msgstr "Weergeven" +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "kanaal" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1155 ../../mod/webpages.php:186 -#: ../../mod/events.php:653 ../../mod/photos.php:970 -#: ../../mod/editwebpage.php:214 ../../mod/editpost.php:149 -#: ../../mod/editblock.php:176 -msgid "Preview" -msgstr "Voorvertoning" +#: ../../include/conversation.php:148 ../../include/text.php:1890 +#: ../../include/diaspora.php:2119 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:349 +msgid "status" +msgstr "bericht" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:187 -msgid "Actions" -msgstr "Acties" +#: ../../include/conversation.php:150 ../../include/text.php:1892 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "reactie" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:188 -msgid "Page Link" -msgstr "Paginalink" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:190 -#: ../../mod/blocks.php:149 ../../mod/layouts.php:180 -msgid "Created" -msgstr "Aangemaakt" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:191 -#: ../../mod/blocks.php:150 ../../mod/layouts.php:181 -msgid "Edited" -msgstr "Bewerkt" - -#: ../../include/api.php:1158 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" - -#: ../../include/comanche.php:34 ../../mod/admin.php:386 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standaard" - -#: ../../include/dir_fns.php:143 -msgid "Directory Options" -msgstr "Opties kanalengids" - -#: ../../include/dir_fns.php:144 -msgid "Alphabetic" -msgstr "Alfabetisch" - -#: ../../include/dir_fns.php:145 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" - -#: ../../include/dir_fns.php:146 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" - -#: ../../include/dir_fns.php:147 -msgid "Oldest to Newest" -msgstr "Oud naar nieuw" - -#: ../../include/dir_fns.php:148 -msgid "Sort" -msgstr "Sorteren" - -#: ../../include/dir_fns.php:152 -msgid "Safe Mode" -msgstr "Veilig zoeken" - -#: ../../include/dir_fns.php:154 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" - -#: ../../include/dir_fns.php:155 -msgid "This Website Only" -msgstr "Alleen deze hub" - -#: ../../include/event.php:19 ../../include/bb2diaspora.php:451 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/event.php:27 ../../include/bb2diaspora.php:457 -msgid "Starts:" -msgstr "Start:" - -#: ../../include/event.php:37 ../../include/bb2diaspora.php:465 -msgid "Finishes:" -msgstr "Einde:" - -#: ../../include/event.php:47 ../../include/bb2diaspora.php:473 -#: ../../include/identity.php:874 ../../mod/events.php:647 -#: ../../mod/directory.php:234 -msgid "Location:" -msgstr "Plaats:" - -#: ../../include/event.php:391 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" - -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:968 ../../mod/photos.php:1086 -msgid "Comment" -msgstr "Reactie" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" -msgstr "[+] alle" - -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] minder reacties weergeven" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] uitklappen" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] inklappen" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Wachtwoord te kort" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "iedereen" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Geheim wachtwoord" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Wachtwoordhint" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alles sluiten" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niets nieuw hier" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Beoordeel dit kanaal (dit is openbaar)" - -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -msgid "Rating" -msgstr "Beoordeling" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Omschrijving (optioneel)" - -#: ../../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/thing.php:275 ../../mod/thing.php:318 ../../mod/events.php:656 -#: ../../mod/group.php:81 ../../mod/setup.php:313 ../../mod/setup.php:358 -#: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:929 -#: ../../mod/photos.php:969 ../../mod/photos.php:1087 ../../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/mitem.php:229 -#: ../../mod/admin.php:446 ../../mod/admin.php:810 ../../mod/admin.php:946 -#: ../../mod/admin.php:1077 ../../mod/admin.php:1271 ../../mod/admin.php:1356 -#: ../../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 "Opslaan" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Vul een internetadres/URL in:" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" - -#: ../../include/js_strings.php:26 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:27 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:28 -msgid "ago" -msgstr "geleden" - -#: ../../include/js_strings.php:29 -msgid "from now" -msgstr "vanaf nu" - -#: ../../include/js_strings.php:30 -msgid "less than a minute" -msgstr "minder dan een minuut" - -#: ../../include/js_strings.php:31 -msgid "about a minute" -msgstr "ongeveer een minuut" - -#: ../../include/js_strings.php:32 +#: ../../include/conversation.php:164 ../../include/diaspora.php:2148 +#: ../../mod/like.php:397 #, php-format -msgid "%d minutes" -msgstr "%d minuten" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../include/js_strings.php:33 -msgid "about an hour" -msgstr "ongeveer een uur" - -#: ../../include/js_strings.php:34 +#: ../../include/conversation.php:167 ../../mod/like.php:399 #, php-format -msgid "about %d hours" -msgstr "ongeveer %d uren" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" -#: ../../include/js_strings.php:35 -msgid "a day" -msgstr "een dag" - -#: ../../include/js_strings.php:36 +#: ../../include/conversation.php:204 #, php-format -msgid "%d days" -msgstr "%d dagen" +msgid "%1$s is now connected with %2$s" +msgstr "%1$s is nu met %2$s verbonden" -#: ../../include/js_strings.php:37 -msgid "about a month" -msgstr "ongeveer een maand" - -#: ../../include/js_strings.php:38 +#: ../../include/conversation.php:239 #, php-format -msgid "%d months" -msgstr "%d maanden" +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/js_strings.php:39 -msgid "about a year" -msgstr "ongeveer een jaar" +#: ../../include/conversation.php:243 ../../include/text.php:990 +msgid "poked" +msgstr "aangestoten" -#: ../../include/js_strings.php:40 +#: ../../include/conversation.php:260 ../../mod/mood.php:63 #, php-format -msgid "%d years" -msgstr "%d jaren" +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" -#: ../../include/js_strings.php:41 -msgid " " -msgstr " " +#: ../../include/conversation.php:583 ../../mod/photos.php:996 +msgctxt "title" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../include/js_strings.php:42 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/conversation.php:583 ../../mod/photos.php:996 +msgctxt "title" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:268 -msgid "parent" -msgstr "omhoog" +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Agree" +msgstr "eens" -#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2497 -msgid "Collection" -msgstr "map" +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Disagree" +msgstr "oneens" -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "principal" +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Abstain" +msgstr "onthouding" -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "Adresboek" +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Attending" +msgstr "aanwezig" -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "Agenda" +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Not attending" +msgstr "niet aanwezig" -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" -msgstr "Planning-postvak IN" +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Might attend" +msgstr "mogelijk aanwezig" -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" -msgstr "Planning-postvak UIT" +#: ../../include/conversation.php:670 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Kies" -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1019 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/photos.php:681 ../../mod/photos.php:1119 +#: ../../include/conversation.php:671 ../../include/apps.php:255 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 +#: ../../mod/editblock.php:180 ../../mod/group.php:176 +#: ../../mod/editlayout.php:178 ../../mod/editwebpage.php:225 +#: ../../mod/admin.php:826 ../../mod/admin.php:988 ../../mod/connedit.php:563 +#: ../../mod/thing.php:256 ../../mod/settings.php:651 +#: ../../mod/photos.php:1062 ../../mod/blocks.php:155 +#: ../../mod/webpages.php:183 +msgid "Delete" +msgstr "Verwijderen" + +#: ../../include/conversation.php:678 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Privébericht" + +#: ../../include/conversation.php:685 ../../include/ItemObject.php:227 +msgid "Message signature validated" +msgstr "Berichtkenmerk gevalideerd" + +#: ../../include/conversation.php:686 ../../include/ItemObject.php:228 +msgid "Message signature incorrect" +msgstr "Berichtkenmerk onjuist" + +#: ../../include/conversation.php:703 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" + +#: ../../include/conversation.php:718 +msgid "Categories:" +msgstr "Categorieën:" + +#: ../../include/conversation.php:719 +msgid "Filed under:" +msgstr "Bewaard onder:" + +#: ../../include/conversation.php:727 ../../include/ItemObject.php:312 +#, php-format +msgid "from %s" +msgstr "van %s" + +#: ../../include/conversation.php:730 ../../include/ItemObject.php:315 +#, php-format +msgid "last edited: %s" +msgstr "laatst bewerkt: %s" + +#: ../../include/conversation.php:731 ../../include/ItemObject.php:316 +#, php-format +msgid "Expires: %s" +msgstr "Verloopt: %s" + +#: ../../include/conversation.php:746 +msgid "View in context" +msgstr "In context bekijken" + +#: ../../include/conversation.php:748 ../../include/conversation.php:1220 +#: ../../include/ItemObject.php:364 ../../mod/editblock.php:149 +#: ../../mod/mail.php:241 ../../mod/mail.php:356 ../../mod/editlayout.php:147 +#: ../../mod/editpost.php:123 ../../mod/editwebpage.php:192 +#: ../../mod/photos.php:962 +msgid "Please wait" +msgstr "Even wachten" + +#: ../../include/conversation.php:857 +msgid "remove" +msgstr "verwijderen" + +#: ../../include/conversation.php:861 ../../include/nav.php:247 +msgid "Loading..." +msgstr "Aan het laden..." + +#: ../../include/conversation.php:862 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" + +#: ../../include/conversation.php:950 +msgid "View Source" +msgstr "Bron weergeven" + +#: ../../include/conversation.php:951 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: ../../include/conversation.php:952 +msgid "View Status" +msgstr "Status weergeven" + +#: ../../include/conversation.php:953 ../../include/nav.php:91 +#: ../../mod/connedit.php:510 +msgid "View Profile" +msgstr "Profiel weergeven" + +#: ../../include/conversation.php:954 +msgid "View Photos" +msgstr "Foto's weergeven" + +#: ../../include/conversation.php:955 +msgid "Matrix Activity" +msgstr "Kanaal-activiteit" + +#: ../../include/conversation.php:956 ../../include/Contact.php:107 +#: ../../include/widgets.php:136 ../../include/widgets.php:175 +#: ../../include/identity.php:933 ../../mod/match.php:64 +#: ../../mod/suggest.php:52 ../../mod/directory.php:316 +msgid "Connect" +msgstr "Verbinden" + +#: ../../include/conversation.php:957 +msgid "Edit Contact" +msgstr "Contact bewerken" + +#: ../../include/conversation.php:958 +msgid "Send PM" +msgstr "Privébericht verzenden" + +#: ../../include/conversation.php:959 ../../include/apps.php:145 +msgid "Poke" +msgstr "Aanstoten" + +#: ../../include/conversation.php:1030 ../../include/apps.php:336 +#: ../../include/apps.php:387 ../../include/RedDAV/RedBrowser.php:164 +#: ../../mod/photos.php:693 ../../mod/photos.php:1131 msgid "Unknown" msgstr "Onbekend" -#: ../../include/RedDAV/RedBrowser.php:227 +#: ../../include/conversation.php:1073 #, php-format -msgid "%1$s used" -msgstr "%1$s gebruikt" +msgid "%s likes this." +msgstr "%s vindt dit leuk." -#: ../../include/RedDAV/RedBrowser.php:232 +#: ../../include/conversation.php:1073 #, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s van %2$s gebruikt (%3$s%)" +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/conversation.php:1609 ../../include/apps.php:135 +#: ../../include/conversation.php:1077 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d persoon vindt dit leuk." +msgstr[1] "%2$d personen vinden dit leuk." + +#: ../../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 persoon vindt dit niet leuk." +msgstr[1] "%2$d personen vinden dit niet leuk." + +#: ../../include/conversation.php:1085 +msgid "and" +msgstr "en" + +#: ../../include/conversation.php:1088 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", en %d ander persoon" +msgstr[1] ", en %d andere personen" + +#: ../../include/conversation.php:1089 +#, php-format +msgid "%s like this." +msgstr "%s vinden dit leuk." + +#: ../../include/conversation.php:1089 +#, php-format +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." + +#: ../../include/conversation.php:1151 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" + +#: ../../include/conversation.php:1152 ../../mod/mail.php:174 +#: ../../mod/mail.php:289 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: ../../include/conversation.php:1153 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: ../../include/conversation.php:1154 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: ../../include/conversation.php:1155 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1156 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Bewaar in map: " + +#: ../../include/conversation.php:1157 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" + +#: ../../include/conversation.php:1158 ../../mod/mail.php:175 +#: ../../mod/mail.php:290 ../../mod/editpost.php:47 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" + +#: ../../include/conversation.php:1166 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:677 ../../mod/editblock.php:170 +#: ../../mod/editpost.php:143 ../../mod/editwebpage.php:214 +#: ../../mod/events.php:690 ../../mod/photos.php:982 +#: ../../mod/webpages.php:188 +msgid "Preview" +msgstr "Voorvertoning" + +#: ../../include/conversation.php:1185 ../../mod/layouts.php:184 +#: ../../mod/photos.php:961 ../../mod/blocks.php:154 +#: ../../mod/webpages.php:182 +msgid "Share" +msgstr "Delen" + +#: ../../include/conversation.php:1187 +msgid "Page link name" +msgstr "Linknaam pagina" + +#: ../../include/conversation.php:1190 +msgid "Post as" +msgstr "Bericht plaatsen als" + +#: ../../include/conversation.php:1192 ../../include/ItemObject.php:669 +#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134 +#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:179 +msgid "Bold" +msgstr "Vet" + +#: ../../include/conversation.php:1193 ../../include/ItemObject.php:670 +#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 +#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:180 +msgid "Italic" +msgstr "Cursief" + +#: ../../include/conversation.php:1194 ../../include/ItemObject.php:671 +#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136 +#: ../../mod/editpost.php:109 ../../mod/editwebpage.php:181 +msgid "Underline" +msgstr "Onderstrepen" + +#: ../../include/conversation.php:1195 ../../include/ItemObject.php:672 +#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137 +#: ../../mod/editpost.php:110 ../../mod/editwebpage.php:182 +msgid "Quote" +msgstr "Citeren" + +#: ../../include/conversation.php:1196 ../../include/ItemObject.php:673 +#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138 +#: ../../mod/editpost.php:111 ../../mod/editwebpage.php:183 +msgid "Code" +msgstr "Broncode" + +#: ../../include/conversation.php:1197 ../../mod/editblock.php:141 +#: ../../mod/mail.php:238 ../../mod/mail.php:352 ../../mod/editlayout.php:139 +#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:184 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: ../../include/conversation.php:1198 +msgid "upload photo" +msgstr "foto uploaden" + +#: ../../include/conversation.php:1199 ../../mod/editblock.php:142 +#: ../../mod/mail.php:239 ../../mod/mail.php:353 ../../mod/editlayout.php:140 +#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:185 +msgid "Attach file" +msgstr "Bestand toevoegen" + +#: ../../include/conversation.php:1200 +msgid "attach file" +msgstr "bestand toevoegen" + +#: ../../include/conversation.php:1201 ../../mod/editblock.php:143 +#: ../../mod/mail.php:240 ../../mod/mail.php:354 ../../mod/editlayout.php:141 +#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:186 +msgid "Insert web link" +msgstr "Weblink invoegen" + +#: ../../include/conversation.php:1202 +msgid "web link" +msgstr "Weblink" + +#: ../../include/conversation.php:1203 +msgid "Insert video link" +msgstr "Videolink invoegen" + +#: ../../include/conversation.php:1204 +msgid "video link" +msgstr "videolink" + +#: ../../include/conversation.php:1205 +msgid "Insert audio link" +msgstr "Audiolink invoegen" + +#: ../../include/conversation.php:1206 +msgid "audio link" +msgstr "audiolink" + +#: ../../include/conversation.php:1207 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:145 ../../mod/editpost.php:118 +#: ../../mod/editwebpage.php:190 +msgid "Set your location" +msgstr "Locatie instellen" + +#: ../../include/conversation.php:1208 +msgid "set location" +msgstr "locatie instellen" + +#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 +msgid "Toggle voting" +msgstr "Stemmen in- of uitschakelen" + +#: ../../include/conversation.php:1212 ../../mod/editblock.php:148 +#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:191 +msgid "Clear browser location" +msgstr "Locatie van webbrowser wissen" + +#: ../../include/conversation.php:1213 +msgid "clear location" +msgstr "locatie wissen" + +#: ../../include/conversation.php:1215 ../../mod/editblock.php:161 +#: ../../mod/editpost.php:135 ../../mod/editwebpage.php:207 +msgid "Title (optional)" +msgstr "Titel (optioneel)" + +#: ../../include/conversation.php:1219 ../../mod/editblock.php:164 +#: ../../mod/editlayout.php:162 ../../mod/editpost.php:137 +#: ../../mod/editwebpage.php:209 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" + +#: ../../include/conversation.php:1221 ../../mod/editblock.php:150 +#: ../../mod/editlayout.php:148 ../../mod/editpost.php:124 +#: ../../mod/editwebpage.php:193 +msgid "Permission settings" +msgstr "Permissies" + +#: ../../include/conversation.php:1222 +msgid "permissions" +msgstr "permissies" + +#: ../../include/conversation.php:1230 ../../mod/editblock.php:158 +#: ../../mod/editlayout.php:155 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:202 +msgid "Public post" +msgstr "Openbaar bericht" + +#: ../../include/conversation.php:1232 ../../mod/editblock.php:165 +#: ../../mod/editlayout.php:163 ../../mod/editpost.php:138 +#: ../../mod/editwebpage.php:210 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" + +#: ../../include/conversation.php:1245 ../../mod/editblock.php:175 +#: ../../mod/mail.php:245 ../../mod/mail.php:359 ../../mod/editlayout.php:172 +#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:219 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" + +#: ../../include/conversation.php:1247 ../../include/ItemObject.php:680 +#: ../../mod/mail.php:247 ../../mod/mail.php:361 ../../mod/editpost.php:151 +msgid "Encrypt text" +msgstr "Tekst versleutelen" + +#: ../../include/conversation.php:1249 ../../mod/editpost.php:153 +#: ../../mod/events.php:674 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1250 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:154 +#: ../../mod/events.php:673 ../../mod/settings.php:589 +#: ../../mod/settings.php:615 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +msgid "Cancel" +msgstr "Annuleren" + +#: ../../include/conversation.php:1492 +msgid "Discover" +msgstr "Ontdekken" + +#: ../../include/conversation.php:1495 +msgid "Imported public streams" +msgstr "Openbare streams importeren" + +#: ../../include/conversation.php:1500 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" + +#: ../../include/conversation.php:1503 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" + +#: ../../include/conversation.php:1507 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" + +#: ../../include/conversation.php:1510 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" + +#: ../../include/conversation.php:1515 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Persoonlijk" + +#: ../../include/conversation.php:1518 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" + +#: ../../include/conversation.php:1524 ../../mod/menu.php:110 +#: ../../mod/connections.php:72 ../../mod/connections.php:85 +msgid "New" +msgstr "Nieuw" + +#: ../../include/conversation.php:1527 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" + +#: ../../include/conversation.php:1533 +msgid "Starred" +msgstr "Met ster" + +#: ../../include/conversation.php:1536 +msgid "Favourite Posts" +msgstr "Favoriete berichten" + +#: ../../include/conversation.php:1543 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1546 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" + +#: ../../include/conversation.php:1590 ../../mod/admin.php:993 +msgid "Channel" +msgstr "Kanaal" + +#: ../../include/conversation.php:1593 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" + +#: ../../include/conversation.php:1602 +msgid "About" +msgstr "Over" + +#: ../../include/conversation.php:1605 +msgid "Profile Details" +msgstr "Profiel" + +#: ../../include/conversation.php:1611 ../../include/apps.php:139 +#: ../../include/nav.php:97 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto's" + +#: ../../include/conversation.php:1614 ../../include/photos.php:359 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../include/conversation.php:1620 ../../include/apps.php:135 +#: ../../include/nav.php:98 ../../include/RedDAV/RedBrowser.php:251 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Bestanden" -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" -msgstr "Totaal" +#: ../../include/conversation.php:1623 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" -msgstr "Gedeeld" +#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 +msgid "Chatrooms" +msgstr "Chatkanalen" -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/webpages.php:178 -#: ../../mod/blocks.php:151 ../../mod/menu.php:104 ../../mod/layouts.php:174 -#: ../../mod/new_channel.php:121 -msgid "Create" -msgstr "Aanmaken" +#: ../../include/conversation.php:1646 ../../include/apps.php:129 +#: ../../include/nav.php:109 +msgid "Bookmarks" +msgstr "Bladwijzers" -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1236 -msgid "Upload" -msgstr "Uploaden" +#: ../../include/conversation.php:1649 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/settings.php:584 -#: ../../mod/settings.php:610 ../../mod/admin.php:953 -#: ../../mod/sharedwithme.php:95 -msgid "Name" -msgstr "Naam" +#: ../../include/conversation.php:1656 ../../include/apps.php:136 +#: ../../include/nav.php:113 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "Type" -msgstr "Type" +#: ../../include/conversation.php:1659 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" -#: ../../include/RedDAV/RedBrowser.php:266 ../../mod/sharedwithme.php:97 -msgid "Size" -msgstr "Grootte" +#: ../../include/conversation.php:1688 ../../include/ItemObject.php:175 +#: ../../include/ItemObject.php:187 ../../mod/photos.php:1015 +#: ../../mod/photos.php:1027 +msgid "View all" +msgstr "Toon alles" -#: ../../include/RedDAV/RedBrowser.php:267 ../../mod/sharedwithme.php:98 -msgid "Last Modified" -msgstr "Laatst gewijzigd" +#: ../../include/conversation.php:1712 ../../include/taxonomy.php:396 +#: ../../include/identity.php:1243 ../../include/ItemObject.php:179 +#: ../../mod/photos.php:1019 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" -#: ../../include/RedDAV/RedBrowser.php:270 ../../include/ItemObject.php:120 -#: ../../include/conversation.php:660 ../../include/apps.php:255 -#: ../../mod/settings.php:645 ../../mod/webpages.php:181 -#: ../../mod/thing.php:228 ../../mod/group.php:176 ../../mod/blocks.php:154 -#: ../../mod/photos.php:1050 ../../mod/editlayout.php:107 -#: ../../mod/editwebpage.php:225 ../../mod/admin.php:817 -#: ../../mod/admin.php:948 ../../mod/editblock.php:113 -#: ../../mod/connedit.php:543 -msgid "Delete" -msgstr "Verwijderen" +#: ../../include/conversation.php:1715 ../../include/ItemObject.php:184 +#: ../../mod/photos.php:1024 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" -#: ../../include/RedDAV/RedBrowser.php:305 -msgid "Create new folder" -msgstr "Nieuwe map aanmaken" +#: ../../include/conversation.php:1718 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "aanwezig" +msgstr[1] "aanwezig" -#: ../../include/RedDAV/RedBrowser.php:307 -msgid "Upload file" -msgstr "Bestand uploaden" +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "niet aanwezig" +msgstr[1] "niet aanwezig" + +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "nog niet beslist" +msgstr[1] "nog niet beslist" + +#: ../../include/conversation.php:1727 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "eens" +msgstr[1] "eens" + +#: ../../include/conversation.php:1730 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "oneens" +msgstr[1] "oneens" + +#: ../../include/conversation.php:1733 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "onthouding" +msgstr[1] "onthoudingen" + +#: ../../include/menu.php:107 ../../include/apps.php:254 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:266 ../../include/ItemObject.php:100 +#: ../../mod/menu.php:106 ../../mod/layouts.php:183 +#: ../../mod/editblock.php:134 ../../mod/editlayout.php:133 +#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:178 +#: ../../mod/thing.php:255 ../../mod/connections.php:242 +#: ../../mod/connections.php:255 ../../mod/connections.php:274 +#: ../../mod/settings.php:650 ../../mod/blocks.php:153 +#: ../../mod/webpages.php:181 +msgid "Edit" +msgstr "Bewerken" + +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Opties kanalengids" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Veilig zoeken" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../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/admin.php:428 +#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 +#: ../../mod/api.php:106 ../../mod/removeme.php:60 ../../mod/connedit.php:647 +#: ../../mod/connedit.php:675 ../../mod/settings.php:579 +#: ../../mod/photos.php:568 ../../boot.php:1554 +msgid "No" +msgstr "Nee" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../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/admin.php:430 +#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 +#: ../../mod/api.php:105 ../../mod/removeme.php:60 ../../mod/settings.php:579 +#: ../../mod/photos.php:568 ../../boot.php:1554 +msgid "Yes" +msgstr "Ja" + +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Alleen deze hub" + +#: ../../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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " + +#: ../../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 "Afbeelding/foto" + +#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installeer %s-element: " + +#: ../../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 "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." + +#: ../../include/bbcode.php:192 ../../mod/impel.php:37 +msgid "webpage" +msgstr "Webpagina" + +#: ../../include/bbcode.php:195 ../../mod/impel.php:47 +msgid "layout" +msgstr "lay-out" + +#: ../../include/bbcode.php:198 ../../mod/impel.php:42 +msgid "block" +msgstr "blok" + +#: ../../include/bbcode.php:201 ../../mod/impel.php:54 +msgid "menu" +msgstr "menu" + +#: ../../include/bbcode.php:215 +msgid "QR code" +msgstr "QR-code" + +#: ../../include/bbcode.php:266 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" + +#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 +msgid "post" +msgstr "bericht" + +#: ../../include/bbcode.php:518 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." + +#: ../../include/bbcode.php:729 +msgid "$1 spoiler" +msgstr "$1 spoiler" + +#: ../../include/bbcode.php:756 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: ../../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/items.php:4359 +#: ../../include/chat.php:131 ../../include/photos.php:26 ../../index.php:182 +#: ../../index.php:393 ../../mod/mitem.php:111 ../../mod/page.php:31 +#: ../../mod/page.php:86 ../../mod/menu.php:72 ../../mod/locs.php:77 +#: ../../mod/poke.php:128 ../../mod/layouts.php:69 ../../mod/layouts.php:76 +#: ../../mod/layouts.php:87 ../../mod/pdledit.php:21 ../../mod/channel.php:100 +#: ../../mod/channel.php:219 ../../mod/channel.php:262 +#: ../../mod/editblock.php:65 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/notifications.php:66 ../../mod/appman.php:66 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/viewsrc.php:14 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/mood.php:111 +#: ../../mod/manage.php:6 ../../mod/regmod.php:17 ../../mod/id.php:71 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/achievements.php:30 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/mail.php:114 ../../mod/group.php:9 ../../mod/editlayout.php:63 +#: ../../mod/editlayout.php:87 ../../mod/register.php:72 +#: ../../mod/common.php:35 ../../mod/authtest.php:13 ../../mod/editpost.php:13 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 +#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 +#: ../../mod/bookmarks.php:46 ../../mod/fsuggest.php:78 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/events.php:249 +#: ../../mod/connedit.php:348 ../../mod/profile_photo.php:264 +#: ../../mod/profile_photo.php:277 ../../mod/sharedwithme.php:7 +#: ../../mod/thing.php:269 ../../mod/thing.php:284 ../../mod/thing.php:318 +#: ../../mod/connections.php:29 ../../mod/rate.php:110 +#: ../../mod/service_limits.php:7 ../../mod/settings.php:570 +#: ../../mod/suggest.php:26 ../../mod/message.php:16 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:1005 ../../mod/setup.php:223 +#: ../../mod/photos.php:69 ../../mod/network.php:12 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../mod/blocks.php:69 ../../mod/blocks.php:76 +#: ../../mod/sources.php:66 ../../mod/webpages.php:69 ../../mod/like.php:178 +msgid "Permission denied." +msgstr "Toegang geweigerd" + +#: ../../include/attach.php:242 ../../include/attach.php:300 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: ../../include/attach.php:363 +msgid "No source file." +msgstr "Geen bronbestand." + +#: ../../include/attach.php:381 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" + +#: ../../include/attach.php:399 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" + +#: ../../include/attach.php:410 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" + +#: ../../include/attach.php:422 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." + +#: ../../include/attach.php:505 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." + +#: ../../include/attach.php:517 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." + +#: ../../include/attach.php:561 ../../include/attach.php:578 +msgid "Path not available." +msgstr "Pad niet beschikbaar." + +#: ../../include/attach.php:623 +msgid "Empty pathname" +msgstr "Padnaam leeg" + +#: ../../include/attach.php:639 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" + +#: ../../include/attach.php:663 +msgid "Path not found." +msgstr "Pad niet gevonden" + +#: ../../include/attach.php:714 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." + +#: ../../include/attach.php:718 +msgid "database storage failed." +msgstr "opslag in database mislukt." + +#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 +#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 +#: ../../mod/photos.php:92 ../../mod/photos.php:637 +msgid "Profile Photos" +msgstr "Profielfoto's" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Regelmatig" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Elk uur" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" + +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Dagelijks" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wekelijks" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Maandelijks" + +#: ../../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/id.php:15 +#: ../../mod/id.php:16 ../../mod/admin.php:822 ../../mod/admin.php:831 +#: ../../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/taxonomy.php:222 ../../include/taxonomy.php:243 +msgid "Tags" +msgstr "Tags" + +#: ../../include/taxonomy.php:264 ../../include/contact_widgets.php:92 +#: ../../include/widgets.php:35 +msgid "Categories" +msgstr "Categorieën" + +#: ../../include/taxonomy.php:287 +msgid "Keywords" +msgstr "Trefwoorden" + +#: ../../include/taxonomy.php:308 +msgid "have" +msgstr "heb" + +#: ../../include/taxonomy.php:308 +msgid "has" +msgstr "heeft" + +#: ../../include/taxonomy.php:309 +msgid "want" +msgstr "wil" + +#: ../../include/taxonomy.php:309 +msgid "wants" +msgstr "wil" + +#: ../../include/taxonomy.php:310 ../../include/ItemObject.php:254 +msgid "like" +msgstr "vind dit leuk" + +#: ../../include/taxonomy.php:310 +msgid "likes" +msgstr "vindt dit leuk" + +#: ../../include/taxonomy.php:311 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "vind dit niet leuk" + +#: ../../include/taxonomy.php:311 +msgid "dislikes" +msgstr "vindt dit niet leuk" + +#: ../../include/zot.php:684 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" + +#: ../../include/zot.php:700 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " + +#: ../../include/zot.php:2208 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" + +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457 +msgid "Advanced" +msgstr "Geavanceerd" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Kanalen vinden" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" + +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:273 +#: ../../mod/directory.php:379 ../../mod/directory.php:384 +msgid "Find" +msgstr "Vinden" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:60 +#: ../../mod/directory.php:383 +msgid "Channel Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Willekeurig profiel" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" + +#: ../../include/contact_widgets.php:57 ../../include/widgets.php:304 +#: ../../include/features.php:83 +msgid "Saved Folders" +msgstr "Bewaarde mappen" + +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 +#: ../../include/widgets.php:307 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" + +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "meer connecties weergeven" + +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "maakte een nieuw bericht aan" + +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "gaf een reactie op een bericht van %s" + +#: ../../include/items.php:413 ../../index.php:392 ../../mod/profperm.php:23 +#: ../../mod/group.php:68 ../../mod/subthread.php:49 ../../mod/like.php:273 +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: ../../include/items.php:1101 ../../include/items.php:1147 +msgid "(Unknown)" +msgstr "(Onbekend)" + +#: ../../include/items.php:1373 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." + +#: ../../include/items.php:1375 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." + +#: ../../include/items.php:1377 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." + +#: ../../include/items.php:1379 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." + +#: ../../include/items.php:1381 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." + +#: ../../include/items.php:1383 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." + +#: ../../include/items.php:1385 +msgid "Visible to approved connections." +msgstr "Voor alle goedgekeurde connecties zichtbaar." + +#: ../../include/items.php:1387 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." + +#: ../../include/items.php:4286 ../../mod/viewsrc.php:20 +#: ../../mod/display.php:36 ../../mod/admin.php:167 ../../mod/admin.php:1025 +#: ../../mod/admin.php:1225 ../../mod/filestorage.php:27 +#: ../../mod/thing.php:74 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: ../../include/items.php:4763 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Collectie niet gevonden." + +#: ../../include/items.php:4779 +msgid "Collection is empty." +msgstr "Collectie is leeg" + +#: ../../include/items.php:4786 +#, php-format +msgid "Collection: %s" +msgstr "Collectie: %s" + +#: ../../include/items.php:4796 ../../mod/connedit.php:674 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" + +#: ../../include/items.php:4798 +msgid "Connection not found." +msgstr "Connectie niet gevonden." + +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" + +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" + +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" + +#: ../../include/chat.php:120 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" + +#: ../../include/chat.php:141 +msgid "Room is full" +msgstr "Chatkanaal is vol" + +#: ../../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 "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." + +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Standaard privacy-collectie voor nieuwe kanalen" + +#: ../../include/group.php:254 ../../mod/admin.php:831 +msgid "All Channels" +msgstr "Alle kanalen" + +#: ../../include/group.php:276 +msgid "edit" +msgstr "bewerken" + +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Collecties" + +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Collectie bewerken" + +#: ../../include/group.php:300 +msgid "Add new collection" +msgstr "Nieuwe collectie toevoegen" + +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanalen die zich in geen enkele collectie bevinden" + +#: ../../include/group.php:303 ../../include/widgets.php:275 +msgid "add" +msgstr "toevoegen" + +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Hubbeheerder" + +#: ../../include/apps.php:130 +msgid "Address Book" +msgstr "Connecties" + +#: ../../include/apps.php:131 ../../include/nav.php:117 ../../boot.php:1550 +msgid "Login" +msgstr "Inloggen" + +#: ../../include/apps.php:132 ../../include/nav.php:206 +#: ../../mod/manage.php:166 +msgid "Channel Manager" +msgstr "Kanaalbeheer" + +#: ../../include/apps.php:133 ../../include/nav.php:180 +msgid "Matrix" +msgstr "Matrix" + +#: ../../include/apps.php:134 ../../include/widgets.php:556 +#: ../../include/nav.php:208 ../../mod/admin.php:1079 ../../mod/admin.php:1279 +msgid "Settings" +msgstr "Instellingen" + +#: ../../include/apps.php:137 ../../include/nav.php:183 +msgid "Channel Home" +msgstr "Tijdlijn kanaal" + +#: ../../include/apps.php:138 ../../include/identity.php:1217 +#: ../../include/identity.php:1334 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profiel" + +#: ../../include/apps.php:140 ../../include/nav.php:202 +#: ../../mod/events.php:503 +msgid "Events" +msgstr "Agenda" + +#: ../../include/apps.php:141 ../../include/nav.php:168 +msgid "Directory" +msgstr "Kanalengids" + +#: ../../include/apps.php:142 ../../include/nav.php:160 +#: ../../mod/layouts.php:176 ../../mod/help.php:67 ../../mod/help.php:72 +msgid "Help" +msgstr "Hulp" + +#: ../../include/apps.php:143 ../../include/nav.php:194 +msgid "Mail" +msgstr "Privéberichten" + +#: ../../include/apps.php:144 ../../mod/mood.php:130 +msgid "Mood" +msgstr "Stemming" + +#: ../../include/apps.php:146 ../../include/nav.php:103 +msgid "Chat" +msgstr "Chatten" + +#: ../../include/apps.php:147 ../../include/text.php:914 +#: ../../include/text.php:926 ../../include/nav.php:165 +#: ../../mod/search.php:38 +msgid "Search" +msgstr "Zoeken" + +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Onderzoeken" + +#: ../../include/apps.php:149 +msgid "Suggest" +msgstr "Voorstellen" + +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Willekeurig kanaal" + +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Uitnodigen " + +#: ../../include/apps.php:152 +msgid "Features" +msgstr "Extra functies" + +#: ../../include/apps.php:153 ../../mod/id.php:28 +msgid "Language" +msgstr "Taal" + +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Bericht" + +#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 +#: ../../mod/id.php:19 +msgid "Profile Photo" +msgstr "Profielfoto" + +#: ../../include/apps.php:247 ../../mod/settings.php:84 +#: ../../mod/settings.php:614 +msgid "Update" +msgstr "Bijwerken" + +#: ../../include/apps.php:247 +msgid "Install" +msgstr "Installeren" + +#: ../../include/apps.php:252 +msgid "Purchase" +msgstr "Aanschaffen" + +#: ../../include/account.php:27 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" + +#: ../../include/account.php:29 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze hub niet toegestaan" + +#: ../../include/account.php:35 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze hub geregistreerd." + +#: ../../include/account.php:67 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" + +#: ../../include/account.php:71 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" + +#: ../../include/account.php:121 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: ../../include/account.php:188 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." + +#: ../../include/account.php:246 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:312 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:314 ../../include/account.php:341 +#: ../../include/account.php:401 ../../include/network.php:1632 +msgid "Administrator" +msgstr "Beheerder" + +#: ../../include/account.php:336 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" + +#: ../../include/account.php:339 ../../include/account.php:399 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" + +#: ../../include/account.php:408 +msgid "Account approved." +msgstr "Account goedgekeurd" + +#: ../../include/account.php:447 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" + +#: ../../include/account.php:492 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." + +#: ../../include/account.php:705 ../../include/account.php:707 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." + +#: ../../include/account.php:713 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." + +#: ../../include/account.php:718 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." + +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." +msgstr "Geen gebruikersnaam in het importbestand gevonden." + +#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." + +#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 +msgid "Import completed." +msgstr "Import voltooid." + +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: ../../include/bb2diaspora.php:459 ../../include/event.php:22 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/bb2diaspora.php:461 +msgid "$Projectname event notification:" +msgstr "Notificatie -gebeurtenis:" + +#: ../../include/bb2diaspora.php:465 ../../include/event.php:30 +msgid "Starts:" +msgstr "Start:" + +#: ../../include/bb2diaspora.php:473 ../../include/event.php:40 +msgid "Finishes:" +msgstr "Einde:" + +#: ../../include/bb2diaspora.php:481 ../../include/event.php:50 +#: ../../include/identity.php:984 ../../mod/events.php:684 +#: ../../mod/directory.php:302 +msgid "Location:" +msgstr "Plaats:" + +#: ../../include/activities.php:39 +msgid " and " +msgstr " en " + +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "openbaar profiel" + +#: ../../include/activities.php:56 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: ../../include/activities.php:57 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" + +#: ../../include/activities.php:60 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." + +#: ../../include/Contact.php:124 +msgid "New window" +msgstr "Nieuw venster" + +#: ../../include/Contact.php:125 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" + +#: ../../include/Contact.php:212 +#, php-format +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" #: ../../include/bookmarks.php:35 #, php-format msgid "%1$s's bookmarks" msgstr "Bladwijzers van %1$s" -#: ../../include/network.php:632 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." + +#: ../../include/follow.php:83 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." + +#: ../../include/follow.php:100 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." + +#: ../../include/follow.php:135 ../../include/follow.php:206 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." + +#: ../../include/follow.php:144 +msgid "Protocol blocked for this channel." +msgstr "Dit protocol is voor dit kanaal niet toegestaan." + +#: ../../include/follow.php:179 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." + +#: ../../include/follow.php:195 +msgid "local account not found." +msgstr "lokale account niet gevonden." + +#: ../../include/follow.php:224 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" + +#: ../../include/dba/dba_driver.php:141 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" + +#: ../../include/api.php:1267 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" + +#: ../../include/widgets.php:91 ../../include/nav.php:163 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Apps" + +#: ../../include/widgets.php:92 +msgid "System" +msgstr "Systeem" + +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Persoonlijke app maken" + +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Persoonlijke app bewerken" + +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" + +#: ../../include/widgets.php:143 ../../mod/connections.php:128 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Meer..." + +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." + +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" + +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Vul het adres van het nieuwe kanaal in" + +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" + +#: ../../include/widgets.php:190 +msgid "Notes" +msgstr "Aantekeningen" + +#: ../../include/widgets.php:192 ../../include/text.php:915 +#: ../../include/text.php:927 ../../mod/admin.php:1457 +#: ../../mod/admin.php:1477 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 +msgid "Save" +msgstr "Opslaan" + +#: ../../include/widgets.php:266 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: ../../include/widgets.php:274 ../../include/features.php:70 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: ../../include/widgets.php:349 +msgid "Archives" +msgstr "Archieven" + +#: ../../include/widgets.php:429 ../../mod/connedit.php:583 +msgid "Me" +msgstr "Ik" + +#: ../../include/widgets.php:430 ../../mod/connedit.php:584 +msgid "Family" +msgstr "Familie" + +#: ../../include/widgets.php:431 ../../include/identity.php:394 +#: ../../include/identity.php:395 ../../include/identity.php:402 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:585 +#: ../../mod/settings.php:345 ../../mod/settings.php:349 +#: ../../mod/settings.php:350 ../../mod/settings.php:353 +#: ../../mod/settings.php:364 +msgid "Friends" +msgstr "Vrienden" + +#: ../../include/widgets.php:432 ../../mod/connedit.php:586 +msgid "Acquaintances" +msgstr "Kennissen" + +#: ../../include/widgets.php:433 ../../mod/connedit.php:587 +#: ../../mod/connections.php:91 ../../mod/connections.php:106 +msgid "All" +msgstr "Alles" + +#: ../../include/widgets.php:452 +msgid "Refresh" +msgstr "Vernieuwen" + +#: ../../include/widgets.php:487 +msgid "Account settings" +msgstr "Account" + +#: ../../include/widgets.php:493 +msgid "Channel settings" +msgstr "Kanaal" + +#: ../../include/widgets.php:499 +msgid "Additional features" +msgstr "Extra functies" + +#: ../../include/widgets.php:505 +msgid "Feature/Addon settings" +msgstr "Extra functie- en plugin-instellingen" + +#: ../../include/widgets.php:511 +msgid "Display settings" +msgstr "Weergave" + +#: ../../include/widgets.php:517 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: ../../include/widgets.php:523 +msgid "Export channel" +msgstr "Kanaal exporteren" + +#: ../../include/widgets.php:532 ../../mod/connedit.php:674 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" + +#: ../../include/widgets.php:540 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" + +#: ../../include/widgets.php:548 ../../include/features.php:59 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanaalbronnen" + +#: ../../include/widgets.php:569 ../../mod/mail.php:128 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Berichten" + +#: ../../include/widgets.php:572 +msgid "Check Mail" +msgstr "Controleer op nieuwe berichten" + +#: ../../include/widgets.php:577 ../../include/nav.php:199 +msgid "New Message" +msgstr "Nieuw bericht" + +#: ../../include/widgets.php:652 +msgid "Chat Rooms" +msgstr "Chatkanalen" + +#: ../../include/widgets.php:672 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" + +#: ../../include/widgets.php:692 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" + +#: ../../include/widgets.php:819 ../../include/widgets.php:877 +msgid "photo/image" +msgstr "foto/afbeelding" + +#: ../../include/widgets.php:972 ../../include/widgets.php:974 +msgid "Rate Me" +msgstr "Beoordeel mij" + +#: ../../include/widgets.php:978 +msgid "View Ratings" +msgstr "Bekijk beoordelingen" + +#: ../../include/widgets.php:989 +msgid "Public Hubs" +msgstr "Openbare hubs" + +#: ../../include/auth.php:131 +msgid "Logged out." +msgstr "Uitgelogd." + +#: ../../include/auth.php:272 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" + +#: ../../include/auth.php:286 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Inloggen mislukt." #: ../../include/features.php:38 msgid "General Features" @@ -773,11 +1953,6 @@ msgid "" "(320px) photo thumbnails" msgstr "Toon grote (640px) voorbeeldfoto's in berichten. Standaard worden kleine voorbeeldfoto's (320px) getoond. " -#: ../../include/features.php:59 ../../include/widgets.php:546 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanaalbronnen" - #: ../../include/features.php:59 msgid "Automatically import channel content from other channels or feeds" msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." @@ -819,10 +1994,6 @@ msgstr "Filter op collecties" msgid "Enable widget to display Network posts only from selected collections" msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" -#: ../../include/features.php:70 ../../include/widgets.php:274 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - #: ../../include/features.php:70 msgid "Save search terms for re-use" msgstr "Sla zoekopdrachten op voor hergebruik" @@ -852,277 +2023,400 @@ msgid "Filter stream activity by depth of relationships" msgstr "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag" #: ../../include/features.php:74 +msgid "Connection Filtering" +msgstr "berichtenfilters" + +#: ../../include/features.php:74 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden/inhoud" + +#: ../../include/features.php:75 msgid "Suggest Channels" msgstr "Kanalen voorstellen" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Show channel suggestions" msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/features.php:79 +#: ../../include/features.php:80 msgid "Post/Comment Tools" msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/features.php:80 +#: ../../include/features.php:81 msgid "Tagging" msgstr "Taggen" -#: ../../include/features.php:80 +#: ../../include/features.php:81 msgid "Ability to tag existing posts" msgstr "Mogelijkheid om bestaande berichten te taggen" -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Post Categories" msgstr "Categorieën berichten" -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Add categories to your posts" msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/features.php:82 ../../include/widgets.php:304 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Bewaarde mappen" - -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Ability to file posts under folders" msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Dislike Posts" msgstr "Vind berichten niet leuk" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Ability to dislike posts/comments" msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/features.php:84 +#: ../../include/features.php:85 msgid "Star Posts" msgstr "Geef berichten een ster" -#: ../../include/features.php:84 +#: ../../include/features.php:85 msgid "Ability to mark special posts with a star indicator" msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Tag Cloud" msgstr "Tagwolk" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Provide a personal tag cloud on your channel page" msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Categorieën" +#: ../../include/text.php:391 +msgid "prev" +msgstr "vorige" -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apps" +#: ../../include/text.php:393 +msgid "first" +msgstr "eerste" -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Systeem" +#: ../../include/text.php:422 +msgid "last" +msgstr "laatste" -#: ../../include/widgets.php:94 ../../include/conversation.php:1504 -msgid "Personal" -msgstr "Persoonlijk" +#: ../../include/text.php:425 +msgid "next" +msgstr "volgende" -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persoonlijke app maken" +#: ../../include/text.php:435 +msgid "older" +msgstr "ouder" -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persoonlijke app bewerken" +#: ../../include/text.php:437 +msgid "newer" +msgstr "nieuwer" -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:945 -#: ../../include/identity.php:823 ../../mod/match.php:64 -#: ../../mod/directory.php:302 ../../mod/suggest.php:52 -msgid "Connect" -msgstr "Verbinden" +#: ../../include/text.php:830 +msgid "No connections" +msgstr "Geen connecties" -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" - -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Meer..." - -#: ../../include/widgets.php:166 +#: ../../include/text.php:844 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d connectie" +msgstr[1] "%d connecties" -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" +#: ../../include/text.php:857 ../../mod/viewconnections.php:104 +msgid "View Connections" +msgstr "Connecties weergeven" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Vul het adres van het nieuwe kanaal in" +#: ../../include/text.php:990 +msgid "poke" +msgstr "aanstoten" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" +#: ../../include/text.php:991 +msgid "ping" +msgstr "ping" -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Aantekeningen" +#: ../../include/text.php:991 +msgid "pinged" +msgstr "gepingd" -#: ../../include/widgets.php:192 ../../include/text.php:853 -#: ../../include/text.php:865 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1416 ../../mod/admin.php:1436 -msgid "Save" -msgstr "Opslaan" +#: ../../include/text.php:992 +msgid "prod" +msgstr "por" -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: ../../include/text.php:992 +msgid "prodded" +msgstr "gepord" -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Alles" +#: ../../include/text.php:993 +msgid "slap" +msgstr "slaan" -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Archieven" +#: ../../include/text.php:993 +msgid "slapped" +msgstr "sloeg" -#: ../../include/widgets.php:427 ../../mod/connedit.php:572 -msgid "Me" -msgstr "Ik" +#: ../../include/text.php:994 +msgid "finger" +msgstr "finger" -#: ../../include/widgets.php:428 ../../mod/connedit.php:573 -msgid "Family" -msgstr "Familie" +#: ../../include/text.php:994 +msgid "fingered" +msgstr "gefingerd" -#: ../../include/widgets.php:429 ../../include/identity.php:394 -#: ../../include/identity.php:395 ../../include/identity.php:402 -#: ../../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:574 -msgid "Friends" -msgstr "Vrienden" +#: ../../include/text.php:995 +msgid "rebuff" +msgstr "afpoeieren" -#: ../../include/widgets.php:430 ../../mod/connedit.php:575 -msgid "Acquaintances" -msgstr "Kennissen" +#: ../../include/text.php:995 +msgid "rebuffed" +msgstr "afgepoeierd" -#: ../../include/widgets.php:431 ../../mod/connections.php:231 -#: ../../mod/connections.php:246 ../../mod/connedit.php:576 -msgid "All" -msgstr "Alles" +#: ../../include/text.php:1005 +msgid "happy" +msgstr "gelukkig" -#: ../../include/widgets.php:450 -msgid "Refresh" -msgstr "Vernieuwen" +#: ../../include/text.php:1006 +msgid "sad" +msgstr "bedroefd" -#: ../../include/widgets.php:485 -msgid "Account settings" -msgstr "Account" +#: ../../include/text.php:1007 +msgid "mellow" +msgstr "mellow" -#: ../../include/widgets.php:491 -msgid "Channel settings" -msgstr "Kanaal" +#: ../../include/text.php:1008 +msgid "tired" +msgstr "moe" -#: ../../include/widgets.php:497 -msgid "Additional features" -msgstr "Extra functies" +#: ../../include/text.php:1009 +msgid "perky" +msgstr "parmantig" -#: ../../include/widgets.php:503 -msgid "Feature/Addon settings" -msgstr "Extra functie- en plugin-instellingen" +#: ../../include/text.php:1010 +msgid "angry" +msgstr "boos" -#: ../../include/widgets.php:509 -msgid "Display settings" -msgstr "Weergave" +#: ../../include/text.php:1011 +msgid "stupified" +msgstr "beteuterd" -#: ../../include/widgets.php:515 -msgid "Connected apps" -msgstr "Verbonden applicaties" +#: ../../include/text.php:1012 +msgid "puzzled" +msgstr "verward" -#: ../../include/widgets.php:521 -msgid "Export channel" -msgstr "Kanaal exporteren" +#: ../../include/text.php:1013 +msgid "interested" +msgstr "geïnteresseerd" -#: ../../include/widgets.php:530 ../../mod/connedit.php:653 -msgid "Connection Default Permissions" -msgstr "Standaard permissies voor connecties" +#: ../../include/text.php:1014 +msgid "bitter" +msgstr "verbitterd" -#: ../../include/widgets.php:538 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" +#: ../../include/text.php:1015 +msgid "cheerful" +msgstr "vrolijk" -#: ../../include/widgets.php:554 ../../include/nav.php:208 -#: ../../include/apps.php:134 ../../mod/admin.php:1038 -#: ../../mod/admin.php:1238 -msgid "Settings" -msgstr "Instellingen" +#: ../../include/text.php:1016 +msgid "alive" +msgstr "levendig" -#: ../../include/widgets.php:567 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Berichten" +#: ../../include/text.php:1017 +msgid "annoyed" +msgstr "geërgerd" -#: ../../include/widgets.php:570 -msgid "Check Mail" -msgstr "Controleer op nieuwe berichten" +#: ../../include/text.php:1018 +msgid "anxious" +msgstr "bezorgd" -#: ../../include/widgets.php:575 ../../include/nav.php:199 -msgid "New Message" -msgstr "Nieuw bericht" +#: ../../include/text.php:1019 +msgid "cranky" +msgstr "humeurig" -#: ../../include/widgets.php:650 -msgid "Chat Rooms" -msgstr "Chatkanalen" +#: ../../include/text.php:1020 +msgid "disturbed" +msgstr "verontrust" -#: ../../include/widgets.php:670 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" +#: ../../include/text.php:1021 +msgid "frustrated" +msgstr "gefrustreerd " -#: ../../include/widgets.php:690 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" +#: ../../include/text.php:1022 +msgid "depressed" +msgstr "gedeprimeerd" -#: ../../include/widgets.php:817 ../../include/widgets.php:875 -msgid "photo/image" -msgstr "foto/afbeelding" +#: ../../include/text.php:1023 +msgid "motivated" +msgstr "gemotiveerd" -#: ../../include/widgets.php:970 ../../include/widgets.php:972 -msgid "Rate Me" -msgstr "Beoordeel mij" +#: ../../include/text.php:1024 +msgid "relaxed" +msgstr "ontspannen" -#: ../../include/widgets.php:976 -msgid "View Ratings" -msgstr "Bekijk beoordelingen" +#: ../../include/text.php:1025 +msgid "surprised" +msgstr "verrast" -#: ../../include/widgets.php:987 -msgid "Public Hubs" -msgstr "Openbare hubs" +#: ../../include/text.php:1197 +msgid "Monday" +msgstr "maandag" -#: ../../include/enotify.php:58 -msgid "Red Matrix Notification" -msgstr "RedMatrix-notificatie" +#: ../../include/text.php:1197 +msgid "Tuesday" +msgstr "dinsdag" -#: ../../include/enotify.php:59 -msgid "redmatrix" -msgstr "RedMatrix" +#: ../../include/text.php:1197 +msgid "Wednesday" +msgstr "woensdag" -#: ../../include/enotify.php:61 +#: ../../include/text.php:1197 +msgid "Thursday" +msgstr "donderdag" + +#: ../../include/text.php:1197 +msgid "Friday" +msgstr "vrijdag" + +#: ../../include/text.php:1197 +msgid "Saturday" +msgstr "zaterdag" + +#: ../../include/text.php:1197 +msgid "Sunday" +msgstr "zondag" + +#: ../../include/text.php:1201 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1201 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1201 +msgid "March" +msgstr "maart" + +#: ../../include/text.php:1201 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1201 ../../mod/uexport.php:58 +#: ../../mod/uexport.php:59 +msgid "May" +msgstr "mei" + +#: ../../include/text.php:1201 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1201 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1201 +msgid "August" +msgstr "augustus" + +#: ../../include/text.php:1201 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1201 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1201 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1201 +msgid "December" +msgstr "december" + +#: ../../include/text.php:1306 +msgid "unknown.???" +msgstr "onbekend.???" + +#: ../../include/text.php:1307 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1343 +msgid "remove category" +msgstr "categorie verwijderen" + +#: ../../include/text.php:1418 +msgid "remove from file" +msgstr "uit map verwijderen" + +#: ../../include/text.php:1494 ../../include/text.php:1505 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" + +#: ../../include/text.php:1661 ../../mod/events.php:474 +msgid "Link to Source" +msgstr "Originele locatie" + +#: ../../include/text.php:1682 ../../include/text.php:1753 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1690 +msgid "Page layout" +msgstr "Pagina-lay-out" + +#: ../../include/text.php:1690 +msgid "You can create your own with the layouts tool" +msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" + +#: ../../include/text.php:1731 +msgid "Page content type" +msgstr "Opmaaktype pagina" + +#: ../../include/text.php:1765 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../include/text.php:1897 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:2192 +msgid "Design Tools" +msgstr "Ontwerp-hulpmiddelen" + +#: ../../include/text.php:2195 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Blokken" + +#: ../../include/text.php:2196 ../../mod/menu.php:101 +msgid "Menus" +msgstr "Menu's" + +#: ../../include/text.php:2197 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Lay-outs" + +#: ../../include/text.php:2198 +msgid "Pages" +msgstr "Pagina's" + +#: ../../include/text.php:2549 ../../include/RedDAV/RedBrowser.php:131 +msgid "Collection" +msgstr "map" + +#: ../../include/enotify.php:58 ../../include/network.php:1585 +msgid "$Projectname Notification" +msgstr "$Projectname-notificatie" + +#: ../../include/enotify.php:59 ../../include/diaspora.php:2522 +#: ../../include/diaspora.php:2533 ../../include/network.php:1586 +#: ../../mod/p.php:46 +msgid "$projectname" +msgstr "$projectname" + +#: ../../include/enotify.php:61 ../../include/network.php:1588 msgid "Thank You," msgstr "Bedankt," -#: ../../include/enotify.php:63 +#: ../../include/enotify.php:63 ../../include/network.php:1590 #, php-format msgid "%s Administrator" msgstr "Beheerder %s" @@ -1306,1998 +2600,9 @@ msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." msgid "[Red:Notify]" msgstr "[Red:Notificatie]" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Regelmatig" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Elk uur" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Dagelijks" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wekelijks" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Maandelijks" - -#: ../../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:813 -#: ../../mod/admin.php:822 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1542 -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 "Geen ontvanger opgegeven." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." - -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." - -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." - -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "lokale account niet gevonden." - -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Privébericht" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:659 -msgid "Select" -msgstr "Kies" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In map opslaan" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Aanwezig" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Niet aanwezig" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Mogelijk aanwezig" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Eens" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Oneens" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Onthouding" - -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1677 ../../mod/photos.php:1003 -#: ../../mod/photos.php:1015 -msgid "View all" -msgstr "Toon alles" - -#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 -#: ../../include/conversation.php:1701 ../../include/identity.php:1133 -#: ../../mod/photos.php:1007 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "vindt dit leuk" -msgstr[1] "vinden dit leuk" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1704 -#: ../../mod/photos.php:1012 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Ster toevoegen" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Ster verwijderen" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "met ster" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Berichtkenmerk gevalideerd" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Berichtkenmerk onjuist" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Tag toevoegen" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:947 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "vind dit leuk" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:948 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 -msgid "dislike" -msgstr "vind dit niet leuk" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Delen" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "delen" - -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" - -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "aan" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" - -#: ../../include/ItemObject.php:312 ../../include/conversation.php:716 -#, php-format -msgid "from %s" -msgstr "van %s" - -#: ../../include/ItemObject.php:315 ../../include/conversation.php:719 -#, php-format -msgid "last edited: %s" -msgstr "laatst bewerkt: %s" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:720 -#, php-format -msgid "Expires: %s" -msgstr "Verloopt: %s" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Markeer alles als bekeken" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1133 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1134 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1139 -msgid "Close" -msgstr "Sluiten" - -#: ../../include/ItemObject.php:364 ../../include/conversation.php:737 -#: ../../include/conversation.php:1209 ../../mod/photos.php:950 -#: ../../mod/editlayout.php:153 ../../mod/editwebpage.php:192 -#: ../../mod/editpost.php:130 ../../mod/editblock.php:155 -#: ../../mod/mail.php:241 ../../mod/mail.php:356 -msgid "Please wait" -msgstr "Even wachten" - -#: ../../include/ItemObject.php:665 ../../mod/photos.php:966 -#: ../../mod/photos.php:1084 -msgid "This is you" -msgstr "Dit ben jij" - -#: ../../include/ItemObject.php:669 ../../include/conversation.php:1181 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:179 -#: ../../mod/editpost.php:114 ../../mod/editblock.php:141 -msgid "Bold" -msgstr "Vet" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1182 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:180 -#: ../../mod/editpost.php:115 ../../mod/editblock.php:142 -msgid "Italic" -msgstr "Cursief" - -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1183 -#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:181 -#: ../../mod/editpost.php:116 ../../mod/editblock.php:143 -msgid "Underline" -msgstr "Onderstrepen" - -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1184 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:182 -#: ../../mod/editpost.php:117 ../../mod/editblock.php:144 -msgid "Quote" -msgstr "Citeren" - -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1185 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:183 -#: ../../mod/editpost.php:118 ../../mod/editblock.php:145 -msgid "Code" -msgstr "Broncode" - -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Afbeelding" - -#: ../../include/ItemObject.php:675 -msgid "Insert Link" -msgstr "Link invoegen" - -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Video" - -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1236 -#: ../../mod/editpost.php:157 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Tekst versleutelen" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nieuw venster" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" - -#: ../../include/Contact.php:215 ../../mod/admin.php:730 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" - -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/bb2diaspora.php:453 -msgid "Redmatrix event notification:" -msgstr "Notificatie RedMatrix-gebeurtenis:" - -#: ../../include/text.php:329 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:331 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:360 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:363 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:373 -msgid "older" -msgstr "ouder" - -#: ../../include/text.php:375 -msgid "newer" -msgstr "nieuwer" - -#: ../../include/text.php:768 -msgid "No connections" -msgstr "Geen connecties" - -#: ../../include/text.php:782 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d connectie" -msgstr[1] "%d connecties" - -#: ../../include/text.php:795 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "Connecties weergeven" - -#: ../../include/text.php:852 ../../include/text.php:864 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "Zoeken" - -#: ../../include/text.php:928 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:928 ../../include/conversation.php:243 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/text.php:929 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:929 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:930 -msgid "prod" -msgstr "por" - -#: ../../include/text.php:930 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:931 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:931 -msgid "slapped" -msgstr "sloeg" - -#: ../../include/text.php:932 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:932 -msgid "fingered" -msgstr "gefingerd" - -#: ../../include/text.php:933 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:933 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:943 -msgid "happy" -msgstr "gelukkig" - -#: ../../include/text.php:944 -msgid "sad" -msgstr "bedroefd" - -#: ../../include/text.php:945 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:946 -msgid "tired" -msgstr "moe" - -#: ../../include/text.php:947 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:948 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:949 -msgid "stupified" -msgstr "beteuterd" - -#: ../../include/text.php:950 -msgid "puzzled" -msgstr "verward" - -#: ../../include/text.php:951 -msgid "interested" -msgstr "geïnteresseerd" - -#: ../../include/text.php:952 -msgid "bitter" -msgstr "verbitterd" - -#: ../../include/text.php:953 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:954 -msgid "alive" -msgstr "levendig" - -#: ../../include/text.php:955 -msgid "annoyed" -msgstr "geërgerd" - -#: ../../include/text.php:956 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:957 -msgid "cranky" -msgstr "humeurig" - -#: ../../include/text.php:958 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:959 -msgid "frustrated" -msgstr "gefrustreerd " - -#: ../../include/text.php:960 -msgid "depressed" -msgstr "gedeprimeerd" - -#: ../../include/text.php:961 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:962 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:963 -msgid "surprised" -msgstr "verrast" - -#: ../../include/text.php:1135 -msgid "Monday" -msgstr "maandag" - -#: ../../include/text.php:1135 -msgid "Tuesday" -msgstr "dinsdag" - -#: ../../include/text.php:1135 -msgid "Wednesday" -msgstr "woensdag" - -#: ../../include/text.php:1135 -msgid "Thursday" -msgstr "donderdag" - -#: ../../include/text.php:1135 -msgid "Friday" -msgstr "vrijdag" - -#: ../../include/text.php:1135 -msgid "Saturday" -msgstr "zaterdag" - -#: ../../include/text.php:1135 -msgid "Sunday" -msgstr "zondag" - -#: ../../include/text.php:1139 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1139 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1139 -msgid "March" -msgstr "maart" - -#: ../../include/text.php:1139 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1139 -msgid "May" -msgstr "mei" - -#: ../../include/text.php:1139 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1139 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1139 -msgid "August" -msgstr "augustus" - -#: ../../include/text.php:1139 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1139 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1139 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1139 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1244 -msgid "unknown.???" -msgstr "onbekend.???" - -#: ../../include/text.php:1245 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1281 -msgid "remove category" -msgstr "categorie verwijderen" - -#: ../../include/text.php:1356 -msgid "remove from file" -msgstr "uit map verwijderen" - -#: ../../include/text.php:1436 ../../include/text.php:1447 -#: ../../mod/connedit.php:661 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" - -#: ../../include/text.php:1609 ../../mod/events.php:444 -msgid "Link to Source" -msgstr "Originele locatie" - -#: ../../include/text.php:1630 ../../include/text.php:1701 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1638 -msgid "Page layout" -msgstr "Pagina-lay-out" - -#: ../../include/text.php:1638 -msgid "You can create your own with the layouts tool" -msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" - -#: ../../include/text.php:1679 -msgid "Page content type" -msgstr "Opmaaktype pagina" - -#: ../../include/text.php:1713 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1832 ../../include/conversation.php:120 -#: ../../include/diaspora.php:2081 ../../mod/like.php:346 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "foto" - -#: ../../include/text.php:1835 ../../include/conversation.php:123 -#: ../../mod/like.php:348 ../../mod/tagger.php:47 -msgid "event" -msgstr "gebeurtenis" - -#: ../../include/text.php:1838 ../../include/conversation.php:148 -#: ../../include/diaspora.php:2081 ../../mod/like.php:346 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:51 -msgid "status" -msgstr "bericht" - -#: ../../include/text.php:1840 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "reactie" - -#: ../../include/text.php:1845 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:2140 -msgid "Design Tools" -msgstr "Ontwerp-hulpmiddelen" - -#: ../../include/text.php:2143 ../../mod/blocks.php:146 -msgid "Blocks" -msgstr "Blokken" - -#: ../../include/text.php:2144 ../../mod/menu.php:95 -msgid "Menus" -msgstr "Menu's" - -#: ../../include/text.php:2145 ../../mod/layouts.php:173 -msgid "Layouts" -msgstr "Lay-outs" - -#: ../../include/text.php:2146 -msgid "Pages" -msgstr "Pagina's" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1539 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Beëindig deze sessie" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" - -#: ../../include/nav.php:91 ../../include/conversation.php:942 -#: ../../mod/connedit.php:494 ../../mod/connedit.php:660 -msgid "View Profile" -msgstr "Profiel weergeven" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Jouw profielpagina" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Bewerk profielen" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../include/nav.php:95 ../../include/identity.php:846 -msgid "Edit Profile" -msgstr "Profiel bewerken" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" - -#: ../../include/nav.php:97 ../../include/conversation.php:1600 -#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Jouw bestanden" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chatten" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" - -#: ../../include/nav.php:109 ../../include/conversation.php:1635 -#: ../../include/apps.php:129 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" - -#: ../../include/nav.php:113 ../../include/conversation.php:1645 -#: ../../include/apps.php:136 ../../mod/webpages.php:176 -msgid "Webpages" -msgstr "Webpagina's" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Jouw webpagina's" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1540 -msgid "Login" -msgstr "Inloggen" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1516 -msgid "Register" -msgstr "Registreren" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Maak een account aan" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:175 -msgid "Help" -msgstr "Hulp" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Apps" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Inhoud van deze hub doorzoeken" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:366 -msgid "Directory" -msgstr "Kanalengids" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanalengids" - -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "Jouw matrix" - -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Markeer alle matrixnotificaties als bekeken" - -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Tijdlijn kanaal" - -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Tijdlijn kanaal" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" - -#: ../../include/nav.php:187 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Connecties" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Notificaties" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "Postvak IN" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Postvak UIT" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:472 -msgid "Events" -msgstr "Agenda" - -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Agenda" - -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" - -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" - -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 -msgid "Channel Manager" -msgstr "Kanaalbeheer" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" - -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Beheer" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" - -#: ../../include/nav.php:247 ../../include/conversation.php:850 -msgid "Loading..." -msgstr "Aan het laden..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@kanaal, #label, inhoud" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Wachten aub..." - -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Tags" - -#: ../../include/taxonomy.php:287 -msgid "Keywords" -msgstr "Trefwoorden" - -#: ../../include/taxonomy.php:308 -msgid "have" -msgstr "heb" - -#: ../../include/taxonomy.php:308 -msgid "has" -msgstr "heeft" - -#: ../../include/taxonomy.php:309 -msgid "want" -msgstr "wil" - -#: ../../include/taxonomy.php:309 -msgid "wants" -msgstr "wil" - -#: ../../include/taxonomy.php:310 -msgid "likes" -msgstr "vindt dit leuk" - -#: ../../include/taxonomy.php:311 -msgid "dislikes" -msgstr "vindt dit niet leuk" - -#: ../../include/activities.php:39 -msgid " and " -msgstr " en " - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "openbaar profiel" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." - -#: ../../include/bbcode.php:122 ../../include/bbcode.php:743 -#: ../../include/bbcode.php:746 ../../include/bbcode.php:751 -#: ../../include/bbcode.php:754 ../../include/bbcode.php:757 -#: ../../include/bbcode.php:760 ../../include/bbcode.php:765 -#: ../../include/bbcode.php:768 ../../include/bbcode.php:773 -#: ../../include/bbcode.php:776 ../../include/bbcode.php:779 -#: ../../include/bbcode.php:782 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:161 ../../include/bbcode.php:793 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/bbcode.php:177 -msgid "Install design element: " -msgstr "Installeer ontwerpelement: " - -#: ../../include/bbcode.php:190 -msgid "QR code" -msgstr "QR-code" - -#: ../../include/bbcode.php:241 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" - -#: ../../include/bbcode.php:243 -msgid "post" -msgstr "bericht" - -#: ../../include/bbcode.php:493 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." - -#: ../../include/bbcode.php:704 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:731 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: ../../include/items.php:399 ../../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 "Toegang geweigerd" - -#: ../../include/items.php:1012 ../../include/items.php:1058 -msgid "(Unknown)" -msgstr "(Onbekend)" - -#: ../../include/items.php:1226 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." - -#: ../../include/items.php:1228 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." - -#: ../../include/items.php:1230 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." - -#: ../../include/items.php:1232 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." - -#: ../../include/items.php:1234 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." - -#: ../../include/items.php:1236 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." - -#: ../../include/items.php:1238 -msgid "Visible to approved connections." -msgstr "Voor alle goedgekeurde connecties zichtbaar." - -#: ../../include/items.php:1240 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." - -#: ../../include/items.php:4051 ../../mod/thing.php:74 -#: ../../mod/display.php:36 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:167 ../../mod/admin.php:984 -#: ../../mod/admin.php:1184 -msgid "Item not found." -msgstr "Item niet gevonden." - -#: ../../include/items.php:4124 ../../include/photos.php:26 -#: ../../include/attach.php:136 ../../include/attach.php:183 -#: ../../include/attach.php:246 ../../include/attach.php:260 -#: ../../include/attach.php:304 ../../include/attach.php:318 -#: ../../include/attach.php:343 ../../include/attach.php:539 -#: ../../include/attach.php:611 ../../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/webpages.php:69 ../../mod/thing.php:241 ../../mod/thing.php:256 -#: ../../mod/thing.php:290 ../../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/setup.php:207 ../../mod/common.php:35 -#: ../../mod/connections.php:169 ../../mod/blocks.php:69 -#: ../../mod/blocks.php:76 ../../mod/photos.php:68 ../../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/profiles.php:576 ../../mod/viewsrc.php:14 ../../mod/mitem.php:115 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/editblock.php:65 ../../mod/register.php:72 ../../mod/item.php:206 -#: ../../mod/item.php:214 ../../mod/item.php:962 ../../mod/layouts.php:69 -#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/id.php:71 -#: ../../mod/message.php:16 ../../mod/mood.php:111 ../../mod/connedit.php:331 -#: ../../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 -#: ../../mod/network.php:12 ../../mod/page.php:28 ../../mod/page.php:79 -#: ../../mod/bookmarks.php:46 ../../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:190 ../../index.php:393 -msgid "Permission denied." -msgstr "Toegang geweigerd" - -#: ../../include/items.php:4524 ../../mod/group.php:38 ../../mod/group.php:140 -#: ../../mod/bulksetclose.php:51 -msgid "Collection not found." -msgstr "Collectie niet gevonden." - -#: ../../include/items.php:4540 -msgid "Collection is empty." -msgstr "Collectie is leeg" - -#: ../../include/items.php:4547 -#, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" - -#: ../../include/items.php:4557 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" - -#: ../../include/items.php:4559 -msgid "Connection not found." -msgstr "Connectie niet gevonden." - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" - -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kan mijn fotoalbums bekijken" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kan mijn bestanden bekijken" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kan foto's aan mijn fotoalbums toevoegen" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" - -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" - -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kan bestanden aan mijn bestandsopslag toevoegen" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" - -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" - -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" - -#: ../../include/permissions.php:48 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." - -#: ../../include/permissions.php:809 -msgid "Social Networking" -msgstr "Sociaal netwerk" - -#: ../../include/permissions.php:809 ../../include/permissions.php:810 -#: ../../include/permissions.php:811 -msgid "Mostly Public" -msgstr "Vrijwel alles openbaar" - -#: ../../include/permissions.php:809 ../../include/permissions.php:810 -#: ../../include/permissions.php:811 -msgid "Restricted" -msgstr "Beperkt zichtbaar" - -#: ../../include/permissions.php:809 ../../include/permissions.php:810 -msgid "Private" -msgstr "Verborgen kanaal" - -#: ../../include/permissions.php:810 -msgid "Community Forum" -msgstr "Groepsforum" - -#: ../../include/permissions.php:811 -msgid "Feed Republish" -msgstr "Feed herpubliceren" - -#: ../../include/permissions.php:812 -msgid "Special Purpose" -msgstr "Speciaal doel" - -#: ../../include/permissions.php:812 -msgid "Celebrity/Soapbox" -msgstr "Beroemdheid/alleen volgen" - -#: ../../include/permissions.php:812 -msgid "Group Repository" -msgstr "Groepsopslag" - -#: ../../include/permissions.php:813 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Anders" - -#: ../../include/permissions.php:813 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" - -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "kanaal" - -#: ../../include/conversation.php:164 ../../include/diaspora.php:2110 -#: ../../mod/like.php:394 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" - -#: ../../include/conversation.php:167 ../../mod/like.php:396 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s is nu met %2$s verbonden" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s heeft %2$s aangestoten" - -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" - -#: ../../include/conversation.php:572 ../../mod/photos.php:984 -msgctxt "title" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../include/conversation.php:572 ../../mod/photos.php:984 -msgctxt "title" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../include/conversation.php:573 ../../mod/photos.php:985 -msgctxt "title" -msgid "Agree" -msgstr "eens" - -#: ../../include/conversation.php:573 ../../mod/photos.php:985 -msgctxt "title" -msgid "Disagree" -msgstr "oneens" - -#: ../../include/conversation.php:573 ../../mod/photos.php:985 -msgctxt "title" -msgid "Abstain" -msgstr "onthoudingen" - -#: ../../include/conversation.php:574 ../../mod/photos.php:986 -msgctxt "title" -msgid "Attending" -msgstr "aanwezig" - -#: ../../include/conversation.php:574 ../../mod/photos.php:986 -msgctxt "title" -msgid "Not attending" -msgstr "niet aanwezig" - -#: ../../include/conversation.php:574 ../../mod/photos.php:986 -msgctxt "title" -msgid "Might attend" -msgstr "mogelijk aanwezig" - -#: ../../include/conversation.php:692 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" - -#: ../../include/conversation.php:707 -msgid "Categories:" -msgstr "Categorieën:" - -#: ../../include/conversation.php:708 -msgid "Filed under:" -msgstr "Bewaard onder:" - -#: ../../include/conversation.php:735 -msgid "View in context" -msgstr "In context bekijken" - -#: ../../include/conversation.php:846 -msgid "remove" -msgstr "verwijderen" - -#: ../../include/conversation.php:851 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" - -#: ../../include/conversation.php:939 -msgid "View Source" -msgstr "Bron weergeven" - -#: ../../include/conversation.php:940 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: ../../include/conversation.php:941 -msgid "View Status" -msgstr "Status weergeven" - -#: ../../include/conversation.php:943 -msgid "View Photos" -msgstr "Foto's weergeven" - -#: ../../include/conversation.php:944 -msgid "Matrix Activity" -msgstr "Kanaal-activiteit" - -#: ../../include/conversation.php:946 -msgid "Edit Contact" -msgstr "Contact bewerken" - -#: ../../include/conversation.php:947 -msgid "Send PM" -msgstr "Privébericht verzenden" - -#: ../../include/conversation.php:948 ../../include/apps.php:145 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../include/conversation.php:1062 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:1062 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:1066 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d persoon vindt dit leuk." -msgstr[1] "%2$d personen vinden dit leuk." - -#: ../../include/conversation.php:1068 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d persoon vindt dit niet leuk." -msgstr[1] "%2$d personen vinden dit niet leuk." - -#: ../../include/conversation.php:1074 -msgid "and" -msgstr "en" - -#: ../../include/conversation.php:1077 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", en %d ander persoon" -msgstr[1] ", en %d andere personen" - -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." - -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." - -#: ../../include/conversation.php:1140 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/conversation.php:1141 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: ../../include/conversation.php:1142 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: ../../include/conversation.php:1143 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: ../../include/conversation.php:1144 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1145 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Bewaar in map: " - -#: ../../include/conversation.php:1146 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" - -#: ../../include/conversation.php:1147 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" - -#: ../../include/conversation.php:1174 ../../mod/webpages.php:180 -#: ../../mod/blocks.php:153 ../../mod/photos.php:949 ../../mod/layouts.php:183 -msgid "Share" -msgstr "Delen" - -#: ../../include/conversation.php:1176 -msgid "Page link name" -msgstr "Linknaam pagina" - -#: ../../include/conversation.php:1179 -msgid "Post as" -msgstr "Bericht plaatsen 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 -msgid "Upload photo" -msgstr "Foto uploaden" - -#: ../../include/conversation.php:1187 -msgid "upload photo" -msgstr "foto uploaden" - -#: ../../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 -msgid "Attach file" -msgstr "Bestand toevoegen" - -#: ../../include/conversation.php:1189 -msgid "attach file" -msgstr "bestand toevoegen" - -#: ../../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 -msgid "Insert web link" -msgstr "Weblink invoegen" - -#: ../../include/conversation.php:1191 -msgid "web link" -msgstr "Weblink" - -#: ../../include/conversation.php:1192 -msgid "Insert video link" -msgstr "Videolink invoegen" - -#: ../../include/conversation.php:1193 -msgid "video link" -msgstr "videolink" - -#: ../../include/conversation.php:1194 -msgid "Insert audio link" -msgstr "Audiolink invoegen" - -#: ../../include/conversation.php:1195 -msgid "audio link" -msgstr "audiolink" - -#: ../../include/conversation.php:1196 ../../mod/editlayout.php:151 -#: ../../mod/editwebpage.php:190 ../../mod/editpost.php:125 -#: ../../mod/editblock.php:153 -msgid "Set your location" -msgstr "Locatie instellen" - -#: ../../include/conversation.php:1197 -msgid "set location" -msgstr "locatie instellen" - -#: ../../include/conversation.php:1198 ../../mod/editpost.php:127 -msgid "Toggle voting" -msgstr "Stemmen in- of uitschakelen" - -#: ../../include/conversation.php:1201 ../../mod/editlayout.php:152 -#: ../../mod/editwebpage.php:191 ../../mod/editpost.php:126 -#: ../../mod/editblock.php:154 -msgid "Clear browser location" -msgstr "Locatie van webbrowser wissen" - -#: ../../include/conversation.php:1202 -msgid "clear location" -msgstr "locatie wissen" - -#: ../../include/conversation.php:1204 ../../mod/editwebpage.php:207 -#: ../../mod/editpost.php:141 ../../mod/editblock.php:167 -msgid "Title (optional)" -msgstr "Titel (optioneel)" - -#: ../../include/conversation.php:1208 ../../mod/editlayout.php:168 -#: ../../mod/editwebpage.php:209 ../../mod/editpost.php:143 -#: ../../mod/editblock.php:170 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" - -#: ../../include/conversation.php:1210 ../../mod/editlayout.php:154 -#: ../../mod/editwebpage.php:193 ../../mod/editpost.php:131 -#: ../../mod/editblock.php:156 -msgid "Permission settings" -msgstr "Permissies" - -#: ../../include/conversation.php:1211 -msgid "permissions" -msgstr "permissies" - -#: ../../include/conversation.php:1219 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:202 ../../mod/editpost.php:138 -#: ../../mod/editblock.php:164 -msgid "Public post" -msgstr "Openbaar bericht" - -#: ../../include/conversation.php:1221 ../../mod/editlayout.php:169 -#: ../../mod/editwebpage.php:210 ../../mod/editpost.php:144 -#: ../../mod/editblock.php:171 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" - -#: ../../include/conversation.php:1234 ../../mod/editlayout.php:178 -#: ../../mod/editwebpage.php:219 ../../mod/editpost.php:155 -#: ../../mod/editblock.php:181 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" - -#: ../../include/conversation.php:1238 ../../mod/events.php:637 -#: ../../mod/editpost.php:159 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1239 ../../mod/settings.php:583 -#: ../../mod/settings.php:609 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -#: ../../mod/events.php:636 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160 -msgid "Cancel" -msgstr "Annuleren" - -#: ../../include/conversation.php:1481 -msgid "Discover" -msgstr "Ontdekken" - -#: ../../include/conversation.php:1484 -msgid "Imported public streams" -msgstr "Openbare streams importeren" - -#: ../../include/conversation.php:1489 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" - -#: ../../include/conversation.php:1492 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" - -#: ../../include/conversation.php:1496 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" - -#: ../../include/conversation.php:1499 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" - -#: ../../include/conversation.php:1507 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" - -#: ../../include/conversation.php:1513 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:102 -msgid "New" -msgstr "Nieuw" - -#: ../../include/conversation.php:1516 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" - -#: ../../include/conversation.php:1522 -msgid "Starred" -msgstr "Met ster" - -#: ../../include/conversation.php:1525 -msgid "Favourite Posts" -msgstr "Favoriete berichten" - -#: ../../include/conversation.php:1532 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1535 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" - -#: ../../include/conversation.php:1579 ../../mod/admin.php:952 -msgid "Channel" -msgstr "Kanaal" - -#: ../../include/conversation.php:1582 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" - -#: ../../include/conversation.php:1591 -msgid "About" -msgstr "Over" - -#: ../../include/conversation.php:1594 -msgid "Profile Details" -msgstr "Profiel" - -#: ../../include/conversation.php:1603 ../../include/photos.php:359 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../include/conversation.php:1612 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" - -#: ../../include/conversation.php:1622 ../../include/conversation.php:1625 -msgid "Chatrooms" -msgstr "Chatkanalen" - -#: ../../include/conversation.php:1638 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" - -#: ../../include/conversation.php:1648 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" - -#: ../../include/conversation.php:1707 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "aanwezig" -msgstr[1] "aanwezig" - -#: ../../include/conversation.php:1710 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "niet aanwezig" -msgstr[1] "niet aanwezig" - -#: ../../include/conversation.php:1713 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "nog niet beslist" -msgstr[1] "nog niet beslist" - -#: ../../include/conversation.php:1716 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "eens" -msgstr[1] "eens" - -#: ../../include/conversation.php:1719 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "oneens" -msgstr[1] "oneens" - -#: ../../include/conversation.php:1722 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "onthouding" -msgstr[1] "onthoudingen" - -#: ../../include/photos.php:94 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" - -#: ../../include/photos.php:101 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" - -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" - -#: ../../include/photos.php:199 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" - -#: ../../include/photos.php:363 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: ../../include/zot.php:666 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" - -#: ../../include/zot.php:682 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " - -#: ../../include/zot.php:2108 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" - -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Ingesloten inhoud" - -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Insluiten uitgeschakeld" - -#: ../../include/auth.php:131 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:272 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" - -#: ../../include/auth.php:286 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Inloggen mislukt." - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:450 -msgid "Advanced" -msgstr "Geavanceerd" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Kanalen vinden" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:362 ../../mod/directory.php:367 -msgid "Find" -msgstr "Vinden" - -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:366 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "Voorgestelde kanalen" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Willekeurig profiel" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "meer connecties weergeven" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Tonen" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Niet tonen" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:654 -#: ../../mod/photos.php:559 ../../mod/photos.php:922 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:147 -msgid "Permissions" -msgstr "Permissies" - -#: ../../include/attach.php:241 ../../include/attach.php:299 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: ../../include/attach.php:356 -msgid "No source file." -msgstr "Geen bronbestand." - -#: ../../include/attach.php:374 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" - -#: ../../include/attach.php:392 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" - -#: ../../include/attach.php:403 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../include/attach.php:415 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." - -#: ../../include/attach.php:498 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." - -#: ../../include/attach.php:510 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." - -#: ../../include/attach.php:554 ../../include/attach.php:571 -msgid "Path not available." -msgstr "Pad niet beschikbaar." - -#: ../../include/attach.php:616 -msgid "Empty pathname" -msgstr "Padnaam leeg" - -#: ../../include/attach.php:632 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" - -#: ../../include/attach.php:656 -msgid "Path not found." -msgstr "Pad niet gevonden" - -#: ../../include/attach.php:707 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." - -#: ../../include/attach.php:711 -msgid "database storage failed." -msgstr "opslag in database mislukt." +#: ../../include/event.php:549 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." #: ../../include/identity.php:33 msgid "Unable to obtain identity information from database" @@ -3323,7 +2628,7 @@ msgstr "Bijnaam is verplicht" msgid "Reserved nickname. Please choose another." msgstr "Deze naam is gereserveerd. Kies een andere." -#: ../../include/identity.php:217 ../../include/dimport.php:34 +#: ../../include/identity.php:217 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." @@ -3336,205 +2641,205 @@ msgstr "Niet in staat om aangemaakte identiteit te vinden" msgid "Default Profile" msgstr "Standaardprofiel" -#: ../../include/identity.php:630 +#: ../../include/identity.php:736 msgid "Requested channel is not available." msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../include/identity.php:677 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/webpages.php:29 -#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29 +#: ../../include/identity.php:783 ../../mod/hcard.php:8 +#: ../../mod/layouts.php:29 ../../mod/editblock.php:29 +#: ../../mod/profile.php:16 ../../mod/achievements.php:11 #: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:54 ../../mod/editblock.php:29 -#: ../../mod/layouts.php:29 +#: ../../mod/filestorage.php:54 ../../mod/connect.php:13 +#: ../../mod/blocks.php:29 ../../mod/webpages.php:29 msgid "Requested profile is not available." msgstr "Opgevraagd profiel is niet beschikbaar" -#: ../../include/identity.php:836 ../../mod/profiles.php:774 +#: ../../include/identity.php:946 ../../mod/profiles.php:774 msgid "Change profile photo" msgstr "Profielfoto veranderen" -#: ../../include/identity.php:842 +#: ../../include/identity.php:952 msgid "Profiles" msgstr "Profielen" -#: ../../include/identity.php:842 +#: ../../include/identity.php:952 msgid "Manage/edit profiles" msgstr "Profielen beheren/bewerken" -#: ../../include/identity.php:843 ../../mod/profiles.php:775 +#: ../../include/identity.php:953 ../../mod/profiles.php:775 msgid "Create New Profile" msgstr "Nieuw profiel aanmaken" -#: ../../include/identity.php:858 ../../mod/profiles.php:786 +#: ../../include/identity.php:956 ../../include/nav.php:95 +msgid "Edit Profile" +msgstr "Profiel bewerken" + +#: ../../include/identity.php:968 ../../mod/profiles.php:786 msgid "Profile Image" msgstr "Profielfoto" -#: ../../include/identity.php:861 +#: ../../include/identity.php:971 msgid "visible to everybody" msgstr "Voor iedereen zichtbaar" -#: ../../include/identity.php:862 ../../mod/profiles.php:669 +#: ../../include/identity.php:972 ../../mod/profiles.php:669 #: ../../mod/profiles.php:790 msgid "Edit visibility" msgstr "Zichtbaarheid bewerken" -#: ../../include/identity.php:878 ../../include/identity.php:1117 +#: ../../include/identity.php:988 ../../include/identity.php:1227 msgid "Gender:" msgstr "Geslacht:" -#: ../../include/identity.php:879 ../../include/identity.php:1161 +#: ../../include/identity.php:989 ../../include/identity.php:1271 msgid "Status:" msgstr "Status:" -#: ../../include/identity.php:880 ../../include/identity.php:1172 +#: ../../include/identity.php:990 ../../include/identity.php:1282 msgid "Homepage:" msgstr "Homepagina:" -#: ../../include/identity.php:881 +#: ../../include/identity.php:991 msgid "Online Now" msgstr "Nu online" -#: ../../include/identity.php:964 ../../include/identity.php:1042 +#: ../../include/identity.php:1074 ../../include/identity.php:1152 #: ../../mod/ping.php:324 msgid "g A l F d" msgstr "G:i, l d F" -#: ../../include/identity.php:965 ../../include/identity.php:1043 +#: ../../include/identity.php:1075 ../../include/identity.php:1153 msgid "F d" msgstr "d F" -#: ../../include/identity.php:1010 ../../include/identity.php:1082 +#: ../../include/identity.php:1120 ../../include/identity.php:1192 #: ../../mod/ping.php:346 msgid "[today]" msgstr "[vandaag]" -#: ../../include/identity.php:1021 +#: ../../include/identity.php:1131 msgid "Birthday Reminders" msgstr "Verjaardagsherinneringen" -#: ../../include/identity.php:1022 +#: ../../include/identity.php:1132 msgid "Birthdays this week:" msgstr "Verjaardagen deze week:" -#: ../../include/identity.php:1075 +#: ../../include/identity.php:1185 msgid "[No description]" msgstr "[Geen omschrijving]" -#: ../../include/identity.php:1093 +#: ../../include/identity.php:1203 msgid "Event Reminders" msgstr "Herinneringen" -#: ../../include/identity.php:1094 +#: ../../include/identity.php:1204 msgid "Events this week:" msgstr "Gebeurtenissen deze week:" -#: ../../include/identity.php:1107 ../../include/identity.php:1224 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profiel" - -#: ../../include/identity.php:1115 ../../mod/settings.php:1045 +#: ../../include/identity.php:1225 ../../mod/settings.php:1056 msgid "Full Name:" msgstr "Volledige naam:" -#: ../../include/identity.php:1122 +#: ../../include/identity.php:1232 msgid "Like this channel" msgstr "Vind dit kanaal leuk" -#: ../../include/identity.php:1146 +#: ../../include/identity.php:1256 msgid "j F, Y" msgstr "F j Y" -#: ../../include/identity.php:1147 +#: ../../include/identity.php:1257 msgid "j F" msgstr "F j" -#: ../../include/identity.php:1154 +#: ../../include/identity.php:1264 msgid "Birthday:" msgstr "Geboortedatum:" -#: ../../include/identity.php:1158 +#: ../../include/identity.php:1268 ../../mod/directory.php:297 msgid "Age:" msgstr "Leeftijd:" -#: ../../include/identity.php:1167 +#: ../../include/identity.php:1277 #, php-format msgid "for %1$d %2$s" msgstr "voor %1$d %2$s" -#: ../../include/identity.php:1170 ../../mod/profiles.php:691 +#: ../../include/identity.php:1280 ../../mod/profiles.php:691 msgid "Sexual Preference:" msgstr "Seksuele voorkeur:" -#: ../../include/identity.php:1174 ../../mod/profiles.php:693 +#: ../../include/identity.php:1284 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 msgid "Hometown:" msgstr "Oorspronkelijk uit:" -#: ../../include/identity.php:1176 +#: ../../include/identity.php:1286 msgid "Tags:" msgstr "Tags:" -#: ../../include/identity.php:1178 ../../mod/profiles.php:694 +#: ../../include/identity.php:1288 ../../mod/profiles.php:694 msgid "Political Views:" msgstr "Politieke overtuigingen:" -#: ../../include/identity.php:1180 +#: ../../include/identity.php:1290 msgid "Religion:" msgstr "Religie:" -#: ../../include/identity.php:1182 +#: ../../include/identity.php:1292 ../../mod/directory.php:315 msgid "About:" msgstr "Over:" -#: ../../include/identity.php:1184 +#: ../../include/identity.php:1294 msgid "Hobbies/Interests:" msgstr "Hobby's/interesses:" -#: ../../include/identity.php:1186 ../../mod/profiles.php:697 +#: ../../include/identity.php:1296 ../../mod/profiles.php:697 msgid "Likes:" msgstr "Houdt van:" -#: ../../include/identity.php:1188 ../../mod/profiles.php:698 +#: ../../include/identity.php:1298 ../../mod/profiles.php:698 msgid "Dislikes:" msgstr "Houdt niet van:" -#: ../../include/identity.php:1190 +#: ../../include/identity.php:1300 msgid "Contact information and Social Networks:" msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/identity.php:1192 +#: ../../include/identity.php:1302 msgid "My other channels:" msgstr "Mijn andere kanalen" -#: ../../include/identity.php:1194 +#: ../../include/identity.php:1304 msgid "Musical interests:" msgstr "Muzikale interesses:" -#: ../../include/identity.php:1196 +#: ../../include/identity.php:1306 msgid "Books, literature:" msgstr "Boeken, literatuur:" -#: ../../include/identity.php:1198 +#: ../../include/identity.php:1308 msgid "Television:" msgstr "Televisie:" -#: ../../include/identity.php:1200 +#: ../../include/identity.php:1310 msgid "Film/dance/culture/entertainment:" msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/identity.php:1202 +#: ../../include/identity.php:1312 msgid "Love/Romance:" msgstr "Liefde/romantiek:" -#: ../../include/identity.php:1204 +#: ../../include/identity.php:1314 msgid "Work/employment:" msgstr "Werk/beroep:" -#: ../../include/identity.php:1206 +#: ../../include/identity.php:1316 msgid "School/education:" msgstr "School/opleiding:" -#: ../../include/identity.php:1226 +#: ../../include/identity.php:1336 msgid "Like this thing" msgstr "Vind dit ding leuk" @@ -3588,6 +2893,13 @@ msgstr "Genderneutraal" msgid "Non-specific" msgstr "Niet gespecificeerd" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 ../../include/permissions.php:897 +msgid "Other" +msgstr "Anders" + #: ../../include/profile_selectors.php:6 msgid "Undecided" msgstr "Nog niet beslist" @@ -3774,1984 +3086,1114 @@ msgstr "Maakt mij niks uit" msgid "Ask me" msgstr "Vraag het me" -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Hubbeheerder" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nieuwe pagina" -#: ../../include/apps.php:130 -msgid "Address Book" +#: ../../include/page_widgets.php:39 ../../mod/layouts.php:188 +#: ../../mod/blocks.php:159 ../../mod/webpages.php:187 +msgid "View" +msgstr "Weergeven" + +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Acties" + +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Paginalink" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" + +#: ../../include/page_widgets.php:44 ../../mod/menu.php:108 +#: ../../mod/layouts.php:181 ../../mod/blocks.php:150 +#: ../../mod/webpages.php:192 +msgid "Created" +msgstr "Aangemaakt" + +#: ../../include/page_widgets.php:45 ../../mod/menu.php:109 +#: ../../mod/layouts.php:182 ../../mod/blocks.php:151 +#: ../../mod/webpages.php:193 +msgid "Edited" +msgstr "Bewerkt" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[geen onderwerp]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." + +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" + +#: ../../include/permissions.php:28 +msgid "Can view my photo albums" +msgstr "Kan mijn fotoalbums bekijken" + +#: ../../include/permissions.php:29 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" + +#: ../../include/permissions.php:30 +msgid "Can view my file storage" +msgstr "Kan mijn bestanden bekijken" + +#: ../../include/permissions.php:31 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" + +#: ../../include/permissions.php:34 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" + +#: ../../include/permissions.php:35 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" + +#: ../../include/permissions.php:36 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" + +#: ../../include/permissions.php:37 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" + +#: ../../include/permissions.php:38 +msgid "Can post photos to my photo albums" +msgstr "Kan foto's aan mijn fotoalbums toevoegen" + +#: ../../include/permissions.php:39 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" + +#: ../../include/permissions.php:39 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" + +#: ../../include/permissions.php:41 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" + +#: ../../include/permissions.php:41 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" + +#: ../../include/permissions.php:42 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" + +#: ../../include/permissions.php:43 +msgid "Can write to my file storage" +msgstr "Kan bestanden aan mijn bestandsopslag toevoegen" + +#: ../../include/permissions.php:44 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" + +#: ../../include/permissions.php:46 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" + +#: ../../include/permissions.php:46 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" + +#: ../../include/permissions.php:48 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" + +#: ../../include/permissions.php:48 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." + +#: ../../include/permissions.php:893 +msgid "Social Networking" +msgstr "Sociaal netwerk" + +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +#: ../../include/permissions.php:895 +msgid "Mostly Public" +msgstr "Vrijwel alles openbaar" + +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +#: ../../include/permissions.php:895 +msgid "Restricted" +msgstr "Beperkt zichtbaar" + +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +msgid "Private" +msgstr "Verborgen kanaal" + +#: ../../include/permissions.php:894 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../include/permissions.php:895 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../include/permissions.php:896 +msgid "Special Purpose" +msgstr "Speciaal doel" + +#: ../../include/permissions.php:896 +msgid "Celebrity/Soapbox" +msgstr "Beroemdheid/alleen volgen" + +#: ../../include/permissions.php:896 +msgid "Group Repository" +msgstr "Groepsopslag" + +#: ../../include/permissions.php:897 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" + +#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 +msgid "Logout" +msgstr "Uitloggen" + +#: ../../include/nav.php:87 ../../include/nav.php:120 +msgid "End this session" +msgstr "Beëindig deze sessie" + +#: ../../include/nav.php:90 ../../include/nav.php:151 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:90 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" + +#: ../../include/nav.php:91 +msgid "Your profile page" +msgstr "Jouw profielpagina" + +#: ../../include/nav.php:93 +msgid "Edit Profiles" +msgstr "Bewerk profielen" + +#: ../../include/nav.php:93 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" + +#: ../../include/nav.php:95 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" + +#: ../../include/nav.php:97 +msgid "Your photos" +msgstr "Jouw foto's" + +#: ../../include/nav.php:98 +msgid "Your files" +msgstr "Jouw bestanden" + +#: ../../include/nav.php:103 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" + +#: ../../include/nav.php:109 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" + +#: ../../include/nav.php:113 +msgid "Your webpages" +msgstr "Jouw webpagina's" + +#: ../../include/nav.php:117 +msgid "Sign in" +msgstr "Inloggen" + +#: ../../include/nav.php:134 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" + +#: ../../include/nav.php:137 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" + +#: ../../include/nav.php:137 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" + +#: ../../include/nav.php:151 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 +msgid "Register" +msgstr "Registreren" + +#: ../../include/nav.php:155 +msgid "Create an account" +msgstr "Maak een account aan" + +#: ../../include/nav.php:160 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Apps" + +#: ../../include/nav.php:165 +msgid "Search site content" +msgstr "Inhoud van deze hub doorzoeken" + +#: ../../include/nav.php:168 +msgid "Channel Directory" +msgstr "Kanalengids" + +#: ../../include/nav.php:180 +msgid "Your matrix" +msgstr "Jouw matrix" + +#: ../../include/nav.php:181 +msgid "Mark all matrix notifications seen" +msgstr "Markeer alle matrixnotificaties als bekeken" + +#: ../../include/nav.php:183 +msgid "Channel home" +msgstr "Tijdlijn kanaal" + +#: ../../include/nav.php:184 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" + +#: ../../include/nav.php:187 ../../mod/connections.php:267 +msgid "Connections" msgstr "Connecties" -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "Stemming" +#: ../../include/nav.php:190 +msgid "Notices" +msgstr "Notificaties" -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Onderzoeken" +#: ../../include/nav.php:190 +msgid "Notifications" +msgstr "Notificaties" -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Voorstellen" +#: ../../include/nav.php:191 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Willekeurig kanaal" +#: ../../include/nav.php:192 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Uitnodigen " +#: ../../include/nav.php:194 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Extra functies" +#: ../../include/nav.php:195 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "Taal" +#: ../../include/nav.php:196 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Bericht" +#: ../../include/nav.php:197 +msgid "Inbox" +msgstr "Postvak IN" -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "Profielfoto" +#: ../../include/nav.php:198 +msgid "Outbox" +msgstr "Postvak UIT" -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:608 -msgid "Update" -msgstr "Bijwerken" +#: ../../include/nav.php:202 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installeren" +#: ../../include/nav.php:203 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Aanschaffen" +#: ../../include/nav.php:204 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" +#: ../../include/nav.php:216 ../../mod/admin.php:120 +msgid "Admin" +msgstr "Beheer" -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "Chatkanaal is vol" +#: ../../include/nav.php:252 +msgid "@name, #tag, content" +msgstr "@kanaal, #label, inhoud" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Welkom op $Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van $Projectname kunt vinden. Voor hulp met $Projectname klik je op het vraagteken." +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../mod/manage.php:136 +#: ../../include/diaspora.php:2494 +msgid "Please choose" +msgstr "Maak een keuze" + +#: ../../include/diaspora.php:2496 +msgid "Agree" +msgstr "Eens" + +#: ../../include/diaspora.php:2498 +msgid "Disagree" +msgstr "Oneens" + +#: ../../include/diaspora.php:2500 +msgid "Abstain" +msgstr "onthouding" + +#: ../../include/photos.php:94 #, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" +#: ../../include/photos.php:101 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" -#: ../../mod/manage.php:167 -msgid "Current Channel" -msgstr "Huidig kanaal" +#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." -msgstr "Activeer een van jouw andere kanalen door er op te klikken." +#: ../../include/photos.php:199 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" -#: ../../mod/manage.php:170 -msgid "Default Channel" -msgstr "Standaardkanaal" +#: ../../include/photos.php:363 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" -#: ../../mod/manage.php:171 -msgid "Make Default" -msgstr "Als standaard instellen" +#: ../../include/network.php:635 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../mod/manage.php:174 +#: ../../include/network.php:1646 +msgid "No Subject" +msgstr "Geen onderwerp" + +#: ../../include/comanche.php:34 ../../mod/admin.php:390 +msgid "Default" +msgstr "Standaard" + +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:265 +msgid "parent" +msgstr "omhoog" + +#: ../../include/RedDAV/RedBrowser.php:134 +msgid "Principal" +msgstr "principal" + +#: ../../include/RedDAV/RedBrowser.php:137 +msgid "Addressbook" +msgstr "Adresboek" + +#: ../../include/RedDAV/RedBrowser.php:140 +msgid "Calendar" +msgstr "Agenda" + +#: ../../include/RedDAV/RedBrowser.php:143 +msgid "Schedule Inbox" +msgstr "Planning-postvak IN" + +#: ../../include/RedDAV/RedBrowser.php:146 +msgid "Schedule Outbox" +msgstr "Planning-postvak UIT" + +#: ../../include/RedDAV/RedBrowser.php:227 #, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" +msgid "%1$s used" +msgstr "%1$s gebruikt" -#: ../../mod/manage.php:175 +#: ../../include/RedDAV/RedBrowser.php:232 #, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s van %2$s gebruikt (%3$s%)" -#: ../../mod/manage.php:177 -msgid "Delegated Channels" -msgstr "Uitbestede kanalen" +#: ../../include/RedDAV/RedBrowser.php:253 +msgid "Total" +msgstr "Totaal" -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "Naam is vereist" +#: ../../include/RedDAV/RedBrowser.php:255 +msgid "Shared" +msgstr "Gedeeld" -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" +#: ../../include/RedDAV/RedBrowser.php:256 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:112 +#: ../../mod/layouts.php:175 ../../mod/new_channel.php:121 +#: ../../mod/blocks.php:152 ../../mod/webpages.php:180 +msgid "Create" +msgstr "Aanmaken" -#: ../../mod/settings.php:124 -msgid "Diaspora Policy Settings updated." -msgstr "Beleidsinstellingen Diaspora bijgewerkt." +#: ../../include/RedDAV/RedBrowser.php:257 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 +#: ../../mod/photos.php:718 ../../mod/photos.php:1248 +msgid "Upload" +msgstr "Uploaden" -#: ../../mod/settings.php:232 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." +#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 +#: ../../mod/sharedwithme.php:95 ../../mod/settings.php:590 +#: ../../mod/settings.php:616 +msgid "Name" +msgstr "Naam" -#: ../../mod/settings.php:236 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." +#: ../../include/RedDAV/RedBrowser.php:262 +msgid "Type" +msgstr "Type" -#: ../../mod/settings.php:250 -msgid "Password changed." -msgstr "Wachtwoord veranderd." +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 +msgid "Size" +msgstr "Grootte" -#: ../../mod/settings.php:252 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 +msgid "Last Modified" +msgstr "Laatst gewijzigd" -#: ../../mod/settings.php:266 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." +#: ../../include/RedDAV/RedBrowser.php:302 +msgid "Create new folder" +msgstr "Nieuwe map aanmaken" -#: ../../mod/settings.php:269 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Upload file" +msgstr "Bestand uploaden" -#: ../../mod/settings.php:278 -msgid "System failure storing new email. Please try again." -msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." +#: ../../include/oembed.php:183 +msgid "Embedded content" +msgstr "Ingesloten inhoud" -#: ../../mod/settings.php:517 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." +#: ../../include/oembed.php:192 +msgid "Embedding disabled" +msgstr "Insluiten uitgeschakeld" -#: ../../mod/settings.php:573 ../../mod/api.php:106 ../../mod/photos.php:556 -#: ../../mod/menu.php:88 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:424 -#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1544 -msgid "No" -msgstr "Nee" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" -#: ../../mod/settings.php:573 ../../mod/api.php:105 ../../mod/photos.php:556 -#: ../../mod/menu.php:88 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:426 -#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1544 -msgid "Yes" -msgstr "Ja" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 +#: ../../mod/photos.php:980 ../../mod/photos.php:1098 +msgid "Comment" +msgstr "Reactie" -#: ../../mod/settings.php:581 ../../mod/settings.php:607 -#: ../../mod/settings.php:643 -msgid "Add application" -msgstr "Applicatie toevoegen" +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 +msgid "[+] show all" +msgstr "[+] alle" -#: ../../mod/settings.php:584 -msgid "Name of application" -msgstr "Naam van applicatie" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] minder reacties weergeven" -#: ../../mod/settings.php:585 ../../mod/settings.php:611 -msgid "Consumer Key" -msgstr "Consumer key" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] uitklappen" -#: ../../mod/settings.php:585 ../../mod/settings.php:586 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] inklappen" -#: ../../mod/settings.php:586 ../../mod/settings.php:612 -msgid "Consumer Secret" -msgstr "Consumer secret" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Wachtwoord te kort" -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -msgid "Redirect" -msgstr "Redirect/doorverwijzing" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen" -#: ../../mod/settings.php:587 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" +#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +msgid "everybody" +msgstr "iedereen" -#: ../../mod/settings.php:588 ../../mod/settings.php:614 -msgid "Icon url" -msgstr "URL van pictogram" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Geheim wachtwoord" -#: ../../mod/settings.php:588 -msgid "Optional" -msgstr "Optioneel" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Wachtwoordhint" -#: ../../mod/settings.php:599 -msgid "You can't edit this application." -msgstr "Je kan deze applicatie niet bewerken" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." -#: ../../mod/settings.php:642 -msgid "Connected Apps" -msgstr "Verbonden applicaties" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alles sluiten" -#: ../../mod/settings.php:646 -msgid "Client key starts with" -msgstr "Client key begint met" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niets nieuw hier" -#: ../../mod/settings.php:647 -msgid "No name" -msgstr "Geen naam" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Beoordeel dit kanaal (dit is openbaar)" -#: ../../mod/settings.php:648 -msgid "Remove authorization" -msgstr "Autorisatie verwijderen" +#: ../../include/js_strings.php:20 ../../mod/connedit.php:683 +#: ../../mod/rate.php:156 +msgid "Rating" +msgstr "Beoordeling" -#: ../../mod/settings.php:662 -msgid "No feature settings configured" -msgstr "Geen extra functie- of plugin-instellingen" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Omschrijving (optioneel)" -#: ../../mod/settings.php:678 -msgid "Feature/Addon Settings" -msgstr "Extra functie- en plugin-instellingen" +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 +#: ../../view/theme/redbasic/php/config.php:99 ../../mod/import.php:592 +#: ../../mod/mitem.php:235 ../../mod/locs.php:105 ../../mod/poke.php:166 +#: ../../mod/pdledit.php:58 ../../mod/invite.php:142 ../../mod/appman.php:99 +#: ../../mod/mood.php:134 ../../mod/chat.php:177 ../../mod/chat.php:211 +#: ../../mod/mail.php:355 ../../mod/group.php:81 ../../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/filestorage.php:156 ../../mod/fsuggest.php:108 +#: ../../mod/events.php:511 ../../mod/events.php:693 ../../mod/pconfig.php:108 +#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/connedit.php:704 +#: ../../mod/thing.php:303 ../../mod/thing.php:346 ../../mod/rate.php:167 +#: ../../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/setup.php:327 ../../mod/setup.php:367 +#: ../../mod/photos.php:577 ../../mod/photos.php:654 ../../mod/photos.php:941 +#: ../../mod/photos.php:981 ../../mod/photos.php:1099 +#: ../../mod/profiles.php:667 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 +msgid "Submit" +msgstr "Opslaan" -#: ../../mod/settings.php:680 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Instellingen voor de ingebouwde Diaspora-emulator" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Vul een internetadres/URL in:" -#: ../../mod/settings.php:681 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Sta toe dat elk Diaspora-lid op jouw openbare berichten kan reageren." +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" -#: ../../mod/settings.php:682 -msgid "Diaspora Policy Settings" -msgstr "Beleidsinstellingen Diaspora" +#: ../../include/js_strings.php:26 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../mod/settings.php:683 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Voorkom dat jouw tags naar andere websites worden doorverwezen" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../mod/settings.php:707 -msgid "Account Settings" -msgstr "Account-instellingen" +#: ../../include/js_strings.php:28 +msgid "ago" +msgstr "geleden" -#: ../../mod/settings.php:708 -msgid "Enter New Password:" -msgstr "Nieuw wachtwoord invoeren:" +#: ../../include/js_strings.php:29 +msgid "from now" +msgstr "vanaf nu" -#: ../../mod/settings.php:709 -msgid "Confirm New Password:" -msgstr "Nieuw wachtwoord bevestigen:" +#: ../../include/js_strings.php:30 +msgid "less than a minute" +msgstr "minder dan een minuut" -#: ../../mod/settings.php:709 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" +#: ../../include/js_strings.php:31 +msgid "about a minute" +msgstr "ongeveer een minuut" -#: ../../mod/settings.php:711 ../../mod/settings.php:1046 -msgid "Email Address:" -msgstr "E-mailadres:" - -#: ../../mod/settings.php:712 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Account verwijderen" - -#: ../../mod/settings.php:713 -msgid "Remove this account including all its channels" -msgstr "Dit account en al zijn kanalen verwijderen" - -#: ../../mod/settings.php:729 -msgid "Off" -msgstr "Uit" - -#: ../../mod/settings.php:729 -msgid "On" -msgstr "Aan" - -#: ../../mod/settings.php:736 -msgid "Additional Features" -msgstr "Extra functies" - -#: ../../mod/settings.php:760 -msgid "Connector Settings" -msgstr "Instellingen externe koppelingen" - -#: ../../mod/settings.php:799 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" - -#: ../../mod/settings.php:802 +#: ../../include/js_strings.php:32 #, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimenteel)" +msgid "%d minutes" +msgstr "%d minuten" -#: ../../mod/settings.php:805 ../../mod/admin.php:396 -msgid "mobile" -msgstr "mobiel" +#: ../../include/js_strings.php:33 +msgid "about an hour" +msgstr "ongeveer een uur" -#: ../../mod/settings.php:841 -msgid "Display Settings" -msgstr "Weergave-instellingen" - -#: ../../mod/settings.php:847 -msgid "Display Theme:" -msgstr "Gebruik thema:" - -#: ../../mod/settings.php:848 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" - -#: ../../mod/settings.php:849 -msgid "Enable user zoom on mobile devices" -msgstr "Inzoomen op smartphones en tablets toestaan" - -#: ../../mod/settings.php:850 -msgid "Update browser every xx seconds" -msgstr "Ververs de webbrowser om de zoveel seconde" - -#: ../../mod/settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimaal 10 seconde, geen maximum" - -#: ../../mod/settings.php:851 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximaal aantal conversaties die per keer geladen worden:" - -#: ../../mod/settings.php:851 -msgid "Maximum of 100 items" -msgstr "Maximaal 100 conversaties" - -#: ../../mod/settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "Toon emoticons (smilies) als afbeeldingen" - -#: ../../mod/settings.php:853 -msgid "Link post titles to source" -msgstr "Berichtkoppen naar originele locatie linken" - -#: ../../mod/settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" - -#: ../../mod/settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "Gebruik blog/lijst-modus op kanaalpagina" - -#: ../../mod/settings.php:857 ../../mod/settings.php:858 -msgid "(comments displayed separately)" -msgstr "(reacties worden afzonderlijk weergeven)" - -#: ../../mod/settings.php:858 -msgid "Use blog/list mode on matrix page" -msgstr "Gebruik blog/lijst-modus op matrixpagina" - -#: ../../mod/settings.php:859 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" - -#: ../../mod/settings.php:859 ../../mod/settings.php:860 -msgid "click to expand content exceeding this height" -msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" - -#: ../../mod/settings.php:860 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op matrixpagina (in pixels)" - -#: ../../mod/settings.php:894 -msgid "Nobody except yourself" -msgstr "Niemand, behalve jezelf" - -#: ../../mod/settings.php:895 -msgid "Only those you specifically allow" -msgstr "Alleen connecties met uitdrukkelijke toestemming" - -#: ../../mod/settings.php:896 -msgid "Approved connections" -msgstr "Geaccepteerde connecties" - -#: ../../mod/settings.php:897 -msgid "Any connections" -msgstr "Alle connecties" - -#: ../../mod/settings.php:898 -msgid "Anybody on this website" -msgstr "Iedereen op deze hub" - -#: ../../mod/settings.php:899 -msgid "Anybody in this network" -msgstr "Iedereen in dit netwerk" - -#: ../../mod/settings.php:900 -msgid "Anybody authenticated" -msgstr "Geauthenticeerd" - -#: ../../mod/settings.php:901 -msgid "Anybody on the internet" -msgstr "Iedereen op het internet" - -#: ../../mod/settings.php:975 -msgid "Publish your default profile in the network directory" -msgstr "Publiceer je standaardprofiel in de kanalengids" - -#: ../../mod/settings.php:980 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" - -#: ../../mod/settings.php:984 ../../mod/profile_photo.php:366 -msgid "or" -msgstr "of" - -#: ../../mod/settings.php:989 -msgid "Your channel address is" -msgstr "Jouw kanaaladres is" - -#: ../../mod/settings.php:1037 -msgid "Channel Settings" -msgstr "Kanaal-instellingen" - -#: ../../mod/settings.php:1044 -msgid "Basic Settings" -msgstr "Basis-instellingen" - -#: ../../mod/settings.php:1047 -msgid "Your Timezone:" -msgstr "Jouw tijdzone:" - -#: ../../mod/settings.php:1048 -msgid "Default Post Location:" -msgstr "Standaardlocatie bericht:" - -#: ../../mod/settings.php:1048 -msgid "Geographical location to display on your posts" -msgstr "Geografische locatie die bij het bericht moet worden vermeld" - -#: ../../mod/settings.php:1049 -msgid "Use Browser Location:" -msgstr "Locatie van webbrowser gebruiken:" - -#: ../../mod/settings.php:1051 -msgid "Adult Content" -msgstr "Inhoud voor volwassenen" - -#: ../../mod/settings.php:1051 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" - -#: ../../mod/settings.php:1053 -msgid "Security and Privacy Settings" -msgstr "Veiligheids- en privacy-instellingen" - -#: ../../mod/settings.php:1055 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." - -#: ../../mod/settings.php:1057 -msgid "Hide my online presence" -msgstr "Verberg mijn aanwezigheid" - -#: ../../mod/settings.php:1057 -msgid "Prevents displaying in your profile that you are online" -msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" - -#: ../../mod/settings.php:1059 -msgid "Simple Privacy Settings:" -msgstr "Eenvoudige privacy-instellingen:" - -#: ../../mod/settings.php:1060 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" - -#: ../../mod/settings.php:1061 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" - -#: ../../mod/settings.php:1062 -msgid "Private - default private, never open or public" -msgstr "Privé (standaard privé en nooit openbaar)" - -#: ../../mod/settings.php:1063 -msgid "Blocked - default blocked to/from everybody" -msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" - -#: ../../mod/settings.php:1065 -msgid "Allow others to tag your posts" -msgstr "Anderen toestaan om je berichten te taggen" - -#: ../../mod/settings.php:1065 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" - -#: ../../mod/settings.php:1067 -msgid "Advanced Privacy Settings" -msgstr "Geavanceerde privacy-instellingen" - -#: ../../mod/settings.php:1069 -msgid "Expire other channel content after this many days" -msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" - -#: ../../mod/settings.php:1069 -msgid "0 or blank prevents expiration" -msgstr "0 of leeg voorkomt het verlopen" - -#: ../../mod/settings.php:1070 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal connectieverzoeken per dag:" - -#: ../../mod/settings.php:1070 -msgid "May reduce spam activity" -msgstr "Kan eventuele spam verminderen" - -#: ../../mod/settings.php:1071 -msgid "Default Post Permissions" -msgstr "Standaard permissies voor nieuwe berichten" - -#: ../../mod/settings.php:1072 ../../mod/mitem.php:152 ../../mod/mitem.php:221 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../mod/settings.php:1076 -msgid "Channel permissions category:" -msgstr "Kanaaltype en -permissies:" - -#: ../../mod/settings.php:1082 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" - -#: ../../mod/settings.php:1082 -msgid "Useful to reduce spamming" -msgstr "Kan eventuele spam verminderen" - -#: ../../mod/settings.php:1085 -msgid "Notification Settings" -msgstr "Notificatie-instellingen" - -#: ../../mod/settings.php:1086 -msgid "By default post a status message when:" -msgstr "Plaats automatisch een statusbericht wanneer:" - -#: ../../mod/settings.php:1087 -msgid "accepting a friend request" -msgstr "Een connectieverzoek wordt geaccepteerd" - -#: ../../mod/settings.php:1088 -msgid "joining a forum/community" -msgstr "Je lid wordt van een forum/groep" - -#: ../../mod/settings.php:1089 -msgid "making an interesting profile change" -msgstr "Er sprake is van een interessante profielwijziging" - -#: ../../mod/settings.php:1090 -msgid "Send a notification email when:" -msgstr "Verzend een notificatie per e-mail wanneer:" - -#: ../../mod/settings.php:1091 -msgid "You receive a connection request" -msgstr "Je een connectieverzoek ontvangt" - -#: ../../mod/settings.php:1092 -msgid "Your connections are confirmed" -msgstr "Jouw connecties zijn bevestigd" - -#: ../../mod/settings.php:1093 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op jouw kanaal heeft geschreven" - -#: ../../mod/settings.php:1094 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" - -#: ../../mod/settings.php:1095 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: ../../mod/settings.php:1096 -msgid "You receive a friend suggestion" -msgstr "Je een kanaalvoorstel ontvangt" - -#: ../../mod/settings.php:1097 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" - -#: ../../mod/settings.php:1098 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je bent in een bericht aangestoten/gepord/etc." - -#: ../../mod/settings.php:1101 -msgid "Show visual notifications including:" -msgstr "Toon de volgende zichtbare notificaties:" - -#: ../../mod/settings.php:1103 -msgid "Unseen matrix activity" -msgstr "Niet bekeken matrix-activiteit" - -#: ../../mod/settings.php:1104 -msgid "Unseen channel activity" -msgstr "Niet bekeken kanaal-activiteit" - -#: ../../mod/settings.php:1105 -msgid "Unseen private messages" -msgstr "Niet bekeken privéberichten" - -#: ../../mod/settings.php:1105 ../../mod/settings.php:1110 -#: ../../mod/settings.php:1111 ../../mod/settings.php:1112 -msgid "Recommended" -msgstr "Aanbevolen" - -#: ../../mod/settings.php:1106 -msgid "Upcoming events" -msgstr "Aankomende gebeurtenissen" - -#: ../../mod/settings.php:1107 -msgid "Events today" -msgstr "Gebeurtissen van vandaag" - -#: ../../mod/settings.php:1108 -msgid "Upcoming birthdays" -msgstr "Aankomende verjaardagen" - -#: ../../mod/settings.php:1108 -msgid "Not available in all themes" -msgstr "Niet in alle thema's beschikbaar" - -#: ../../mod/settings.php:1109 -msgid "System (personal) notifications" -msgstr "(Persoonlijke) systeemnotificaties" - -#: ../../mod/settings.php:1110 -msgid "System info messages" -msgstr "Systeemmededelingen" - -#: ../../mod/settings.php:1111 -msgid "System critical alerts" -msgstr "Kritische systeemwaarschuwingen" - -#: ../../mod/settings.php:1112 -msgid "New connections" -msgstr "Nieuwe connecties" - -#: ../../mod/settings.php:1113 -msgid "System Registrations" -msgstr "Nieuwe accountregistraties op deze hub" - -#: ../../mod/settings.php:1114 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" - -#: ../../mod/settings.php:1116 -msgid "Notify me of events this many days in advance" -msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" - -#: ../../mod/settings.php:1116 -msgid "Must be greater than 0" -msgstr "Moet hoger dan 0 zijn" - -#: ../../mod/settings.php:1118 -msgid "Advanced Account/Page Type Settings" -msgstr "Instellingen geavanceerd account/paginatype" - -#: ../../mod/settings.php:1119 -msgid "Change the behaviour of this account for special situations" -msgstr "Verander het gedrag van dit account voor speciale situaties" - -#: ../../mod/settings.php:1122 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" - -#: ../../mod/settings.php:1123 -msgid "Miscellaneous Settings" -msgstr "Diverse instellingen" - -#: ../../mod/settings.php:1125 -msgid "Personal menu to display in your channel pages" -msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" - -#: ../../mod/settings.php:1126 ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" - -#: ../../mod/settings.php:1127 -msgid "Remove this channel." -msgstr "Verwijder dit kanaal." - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Xchan opzoeken" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Zoek een xchan (of webbie) die begint met:" - -#: ../../mod/xchan.php:37 ../../mod/menu.php:149 ../../mod/mitem.php:120 -msgid "Not found." -msgstr "Niet gevonden." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." - -#: ../../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 "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" - -#: ../../mod/webpages.php:189 -msgid "Page Title" -msgstr "Paginatitel" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanaal toegevoegd." - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Tag verwijderd" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Verwijder item-tag" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Kies een tag om te verwijderen" - -#: ../../mod/tagrm.php:133 ../../mod/photos.php:875 -msgid "Remove" -msgstr "Verwijderen" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Ga verder" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" - -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." - -#: ../../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 "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" - -#: ../../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 "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "Ding bijgewerkt" - -#: ../../mod/thing.php:153 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" - -#: ../../mod/thing.php:157 -msgid "Thing added" -msgstr "Ding toegevoegd" - -#: ../../mod/thing.php:175 +#: ../../include/js_strings.php:34 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "about %d hours" +msgstr "ongeveer %d uren" -#: ../../mod/thing.php:226 -msgid "Show Thing" -msgstr "Ding weergeven" +#: ../../include/js_strings.php:35 +msgid "a day" +msgstr "een dag" -#: ../../mod/thing.php:233 -msgid "item not found." -msgstr "Item niet gevonden" - -#: ../../mod/thing.php:261 -msgid "Edit Thing" -msgstr "Ding bewerken" - -#: ../../mod/thing.php:263 ../../mod/thing.php:310 -msgid "Select a profile" -msgstr "Kies een profiel" - -#: ../../mod/thing.php:267 ../../mod/thing.php:313 -msgid "Post an activity" -msgstr "Plaats een bericht" - -#: ../../mod/thing.php:267 ../../mod/thing.php:313 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." - -#: ../../mod/thing.php:269 ../../mod/thing.php:315 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" - -#: ../../mod/thing.php:271 ../../mod/thing.php:316 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" - -#: ../../mod/thing.php:273 ../../mod/thing.php:317 -msgid "URL for photo of thing (optional)" -msgstr "URL van foto van ding (optioneel)" - -#: ../../mod/thing.php:308 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Item is niet aanwezig." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#: ../../include/js_strings.php:36 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" +msgid "%d days" +msgstr "%d dagen" -#: ../../mod/home.php:53 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix - "The Network"" +#: ../../include/js_strings.php:37 +msgid "about a month" +msgstr "ongeveer een maand" -#: ../../mod/home.php:124 +#: ../../include/js_strings.php:38 #, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +msgid "%d months" +msgstr "%d maanden" -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " +#: ../../include/js_strings.php:39 +msgid "about a year" +msgstr "ongeveer een jaar" -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Afbeelding kon niet van grootte veranderd worden." - -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." - -#: ../../mod/profile_photo.php:233 +#: ../../include/js_strings.php:40 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" +msgid "%d years" +msgstr "%d jaren" -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Niet in staat om afbeelding te verwerken." +#: ../../include/js_strings.php:41 +msgid " " +msgstr " " -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto niet beschikbaar." +#: ../../include/js_strings.php:42 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Bestand uploaden:" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In map opslaan" -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Kies een profiel:" +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Aanwezig" -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "Niet aanwezig" -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "sla deze stap over" +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Mogelijk aanwezig" -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit jouw fotoalbums" +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Eens" -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "Oneens" -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Onthouding" -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Klaar met bewerken" +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Ster toevoegen" -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Uploaden afbeelding geslaagd" +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Ster verwijderen" -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Uploaden afbeelding mislukt" +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" -#: ../../mod/profile_photo.php:439 +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "met ster" + +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Tag toevoegen" + +#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Delen" + +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "delen" + +#: ../../include/ItemObject.php:276 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinen [%s] van afbeelding mislukt." +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ongeldig item." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." - -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:106 -#: ../../mod/page.php:82 ../../index.php:241 -msgid "Page not found." -msgstr "Pagina niet gevonden." - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." - -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Ongeldig verzoek" - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "ding" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." - -#: ../../mod/like.php:228 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" - -#: ../../mod/like.php:398 +#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 #, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s is het eens met %2$s's %3$s" - -#: ../../mod/like.php:400 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s is het niet eens met %2$s's %3$s" - -#: ../../mod/like.php:402 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" - -#: ../../mod/like.php:404 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s is aanwezig op %2$s's %3$s" - -#: ../../mod/like.php:406 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s is niet aanwezig op %2$s's %3$s" - -#: ../../mod/like.php:408 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" - -#: ../../mod/like.php:492 -msgid "Action completed." -msgstr "Actie voltooid" - -#: ../../mod/like.php:493 -msgid "Thank you." -msgstr "Bedankt" - -#: ../../mod/events.php:87 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" - -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 -msgid "Unable to generate preview." -msgstr "Niet in staat om voorvertoning te genereren" - -#: ../../mod/events.php:96 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." - -#: ../../mod/events.php:114 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" - -#: ../../mod/events.php:396 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:418 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: ../../mod/events.php:419 -msgid "Delete event" -msgstr "Gebeurtenis verwijderen" - -#: ../../mod/events.php:473 -msgid "Create New Event" -msgstr "Nieuwe gebeurtenis aanmaken" - -#: ../../mod/events.php:474 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Vorige" - -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 -msgid "Next" -msgstr "Volgende" - -#: ../../mod/events.php:476 -msgid "Export" -msgstr "Exporteren" - -#: ../../mod/events.php:504 -msgid "Event removed" -msgstr "Gebeurtenis verwijderd" - -#: ../../mod/events.php:507 -msgid "Failed to remove event" -msgstr "Verwijderen gebeurtenis mislukt" - -#: ../../mod/events.php:627 -msgid "Event details" -msgstr "Details van gebeurtenis" - -#: ../../mod/events.php:628 -msgid "Starting date and Title are required." -msgstr "Begintijd en titel zijn vereist." - -#: ../../mod/events.php:630 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" - -#: ../../mod/events.php:632 -msgid "Event Starts:" -msgstr "Begin gebeurtenis:" - -#: ../../mod/events.php:639 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/-tijd is niet bekend of niet relevant" - -#: ../../mod/events.php:641 -msgid "Event Finishes:" -msgstr "Einde gebeurtenis:" - -#: ../../mod/events.php:643 ../../mod/events.php:644 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" - -#: ../../mod/events.php:643 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." - -#: ../../mod/events.php:645 -msgid "Description:" -msgstr "Omschrijving:" - -#: ../../mod/events.php:649 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:651 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Openbare hubs" - -#: ../../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 "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." - -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "Beoordeel deze hub" - -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "URL hub" - -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "Toegangstype" - -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "Registratiebeleid" - -#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 -msgid "Location" -msgstr "Locatie" - -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "Bekijk hubbeoordelingen" - -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "Beoordeel" - -#: ../../mod/pubsites.php:31 -msgid "View ratings" -msgstr "Bekijk beoordelingen" - -#: ../../mod/rpost.php:131 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: ../../mod/dav.php:121 -msgid "RedMatrix channel" -msgstr "RedMatrix-kanaal" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Collectie aangemaakt" - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Collectie kon niet aangemaakt worden" - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Collectie bijgewerkt." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Kanaalcollectie aanmaken" - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Naam collectie:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Kanalen in deze collectie zijn zichtbaar voor andere kanalen" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Collectie verwijderd" - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Verwijderen collectie mislukt" - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Collectiebewerker" - -#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 -msgid "Members" -msgstr "Kanalen" - -#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 -msgid "All Connected Channels" -msgstr "Alle kanaalconnecties" - -#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 -msgid "Click on a channel to add or remove." -msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." - -#: ../../mod/siteinfo.php:112 -#, php-format -msgid "Version %s" -msgstr "Versie %s" - -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plug-ins/add-ons/apps:" - -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plug-ins/add-ons/apps" - -#: ../../mod/siteinfo.php:155 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:156 -msgid "" -"This is a hub of redmatrix - a global cooperative network of decentralized " -"privacy enhanced websites." -msgstr "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy." - -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "Tag: " - -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" - -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit redmatrix.me to learn more" -" about the Red Matrix." -msgstr "Bezoek RedMatrix.me om meer over de RedMatrix te leren." - -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" - -#: ../../mod/siteinfo.php:168 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" - -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "Hubbeheerders: " - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Hulp:" - -#: ../../mod/help.php:76 ../../index.php:238 +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" + +#: ../../include/ItemObject.php:298 +msgid "to" +msgstr "aan" + +#: ../../include/ItemObject.php:299 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:300 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:301 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:337 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" + +#: ../../include/ItemObject.php:338 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" + +#: ../../include/ItemObject.php:347 +msgid "Mark all seen" +msgstr "Markeer alles als bekeken" + +#: ../../include/ItemObject.php:353 ../../mod/photos.php:1145 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../include/ItemObject.php:354 ../../mod/photos.php:1146 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 +#: ../../mod/photos.php:1151 +msgid "Close" +msgstr "Sluiten" + +#: ../../include/ItemObject.php:665 ../../mod/photos.php:978 +#: ../../mod/photos.php:1096 +msgid "This is you" +msgstr "Dit ben jij" + +#: ../../include/ItemObject.php:674 +msgid "Image" +msgstr "Afbeelding" + +#: ../../include/ItemObject.php:675 +msgid "Insert Link" +msgstr "Link invoegen" + +#: ../../include/ItemObject.php:676 +msgid "Video" +msgstr "Video" + +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" + +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Tonen" + +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Niet tonen" + +#: ../../include/acl_selectors.php:248 ../../mod/chat.php:209 +#: ../../mod/filestorage.php:147 ../../mod/events.php:691 +#: ../../mod/photos.php:571 ../../mod/photos.php:934 +msgid "Permissions" +msgstr "Permissies" + +#: ../../index.php:238 ../../mod/help.php:76 msgid "Not Found" msgstr "Niet gevonden" -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" -msgstr "RedMatrix Server - Setup" +#: ../../index.php:241 ../../mod/page.php:89 ../../mod/block.php:75 +#: ../../mod/display.php:110 ../../mod/help.php:79 +msgid "Page not found." +msgstr "Pagina niet gevonden." -#: ../../mod/setup.php:172 -msgid "Could not connect to database." -msgstr "Could not connect to database." +#: ../../view/theme/redbasic/php/config.php:82 +msgid "Light (Red Matrix default)" +msgstr "Light ($Projectname-standaard)" -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Theme settings" +msgstr "Thema-instellingen" -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Could not create table." +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Select scheme" +msgstr "Kies schema van thema" -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Your hub database has been installed." +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Narrow navbar" +msgstr "Smalle navigatiebalk" -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Navigation bar background color" +msgstr "Achtergrondkleur navigatiebalk" -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Please see the file \"install/INSTALL.txt\"." +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Navigation bar gradient top color" +msgstr "Bovenste gradiëntkleur navigatiebalk" -#: ../../mod/setup.php:261 -msgid "System check" -msgstr "System check" +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Navigation bar gradient bottom color" +msgstr "Onderste gradiëntkleur navigatiebalk" -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Check again" +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Navigation active button gradient top color" +msgstr "Bovenste gradiëntkleur actieve knop navigatiebalk" -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Database connection" +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Navigation active button gradient bottom color" +msgstr "Onderste gradiëntkleur actieve knop op navigatiebalk" -#: ../../mod/setup.php:290 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." -msgstr "In order to install RedMatrix we need to know how to connect to your database." +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Navigation bar border color " +msgstr "Randkleur navigatiebalk " -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Navigation bar icon color " +msgstr "Pictogramkleur navigatiebalk" -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "The database you specify below should already exist. If it does not, please create it before continuing." +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Navigation bar active icon color " +msgstr "Actieve pictogramkleur navigatiebalk" -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Database Server Name" +#: ../../view/theme/redbasic/php/config.php:113 +msgid "link color" +msgstr "Linkkleur instellen" -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "Default is localhost" +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set font-color for banner" +msgstr "Tekstkleur van banner instellen" -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Database Port" +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set the background color" +msgstr "Achtergrondkleur instellen" -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" -msgstr "Communication port number - use 0 for default" +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set the background image" +msgstr "Achtergrondafbeelding instellen" -#: ../../mod/setup.php:298 -msgid "Database Login Name" -msgstr "Database Login Name" +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set the background color of items" +msgstr "Achtergrondkleur items instellen" -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Database Login Password" +#: ../../view/theme/redbasic/php/config.php:118 +msgid "Set the background color of comments" +msgstr "Achtergrondkleur reacties instellen" -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Database Name" +#: ../../view/theme/redbasic/php/config.php:119 +msgid "Set the border color of comments" +msgstr "Randkleur reacties instellen" -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Database Type" +#: ../../view/theme/redbasic/php/config.php:120 +msgid "Set the indent for comments" +msgstr "Inspringen reacties instellen" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "Hub administrator email address" +#: ../../view/theme/redbasic/php/config.php:121 +msgid "Set the basic color for item icons" +msgstr "Basiskleur itempictogrammen instellen" -#: ../../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 "Your account email address must match this in order to use the web admin panel." +#: ../../view/theme/redbasic/php/config.php:122 +msgid "Set the hover color for item icons" +msgstr "Hoverkleur itempictogrammen instellen" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "Hub URL" +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Set font-size for the entire application" +msgstr "Tekstgrootte van de volledige applicatie instellen" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." -msgstr "Please use SSL (https) URL if available." +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Example: 14px" +msgstr "Voorbeeld: 14px" -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Please select a default timezone for your hub" +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Lettergrootte voor berichten en reacties instellen" -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Hub settings" +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-color for posts and comments" +msgstr "Tekstkleur van berichten en reacties" -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Could not find a command line version of PHP in the web server PATH." +#: ../../view/theme/redbasic/php/config.php:126 +msgid "Set radius of corners" +msgstr "Radius van hoeken instellen" -#: ../../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 "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." +#: ../../view/theme/redbasic/php/config.php:127 +msgid "Set shadow depth of photos" +msgstr "Schaduwdiepte van foto's instellen" -#: ../../mod/setup.php:400 -msgid "PHP executable path" -msgstr "PHP executable path" +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Set maximum width of content region in pixel" +msgstr "Maximumbreedte conversatieruimte instellen (in pixels)" -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Enter full path to php executable. You can leave this blank to continue the installation." +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Leave empty for default width" +msgstr "Laat leeg voor standaardbreedte" -#: ../../mod/setup.php:405 -msgid "Command line PHP" -msgstr "Command line PHP" +#: ../../view/theme/redbasic/php/config.php:129 +msgid "Center page content" +msgstr "Inhoud centreren" -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Set minimum opacity of nav bar - to hide it" +msgstr "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)" -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "This is required for message delivery to work." +#: ../../view/theme/redbasic/php/config.php:131 +msgid "Set size of conversation author photo" +msgstr "Grootte profielfoto's van berichten instellen" -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../view/theme/redbasic/php/config.php:132 +msgid "Set size of followup author photos" +msgstr "Grootte profielfoto's van reacties instellen" -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" - -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "Generate encryption keys" - -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" - -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" - -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" - -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "mysqli or postgres PHP module" - -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" - -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP module" - -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: ../../mod/setup.php:458 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: Apache webserver mod-rewrite module is required but not installed." - -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" - -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: libCURL PHP module required but not installed." - -#: ../../mod/setup.php:476 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: GD graphics PHP module with JPEG support required but not installed." - -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: openssl PHP module required but not installed." - -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: mysqli or postgres PHP module required but neither are installed." - -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mb_string PHP module required but not installed." - -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: mcrypt PHP module required but not installed." - -#: ../../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 "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." - -#: ../../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 "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." - -#: ../../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 "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." - -#: ../../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 "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." - -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" - -#: ../../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 uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." - -#: ../../mod/setup.php:525 +#: ../../mod/import.php:25 #, 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 "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." +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../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 "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." +#: ../../mod/import.php:60 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../mod/setup.php:527 +#: ../../mod/import.php:84 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" + +#: ../../mod/import.php:90 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" + +#: ../../mod/import.php:110 +msgid "The data provided is not compatible with this project." +msgstr "De geïmporteerde gegevens zijn niet compatibel met dit project." + +#: ../../mod/import.php:115 #, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Waarschuwing: database-versies lopen %1$d updates achter." + +#: ../../mod/import.php:135 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 "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." -#: ../../mod/setup.php:530 -#, php-format -msgid "%s is writable" -msgstr "%s is writable" +#: ../../mod/import.php:176 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." -#: ../../mod/setup.php:543 +#: ../../mod/import.php:186 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." + +#: ../../mod/import.php:574 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." + +#: ../../mod/import.php:579 +msgid "Import Channel" +msgstr "Kanaal importeren" + +#: ../../mod/import.php:580 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 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" +"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 "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "store is writable" +#: ../../mod/import.php:581 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../mod/setup.php:577 +#: ../../mod/import.php:582 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" + +#: ../../mod/import.php:583 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" + +#: ../../mod/import.php:584 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" + +#: ../../mod/import.php:585 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" + +#: ../../mod/import.php:586 msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." +"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 "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." -#: ../../mod/setup.php:578 +#: ../../mod/import.php:587 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" + +#: ../../mod/import.php:588 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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van hoeveelheid geheugen hub)" -#: ../../mod/setup.php:579 +#: ../../mod/import.php:589 msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." -#: ../../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 "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." - -#: ../../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 "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." - -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Providers are available that issue free certificates which are browser-valid." - -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "SSL certificate validation" - -#: ../../mod/setup.php:590 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " - -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "Url rewrite is working" - -#: ../../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 "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." - -#: ../../mod/setup.php:625 -msgid "Errors encountered creating database tables." -msgstr "Errors encountered creating database tables." - -#: ../../mod/setup.php:660 -msgid "

What next

" -msgstr "

Wat nu

" - -#: ../../mod/setup.php:661 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Geen kanaal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Veel voorkomende connecties" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." - -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" - -#: ../../mod/connections.php:37 ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." - -#: ../../mod/connections.php:51 ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." - -#: ../../mod/connections.php:94 ../../mod/connedit.php:214 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." - -#: ../../mod/connections.php:96 ../../mod/connedit.php:216 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." - -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Genegeerd" - -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Verborgen" - -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Gearchiveerd" - -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Nieuwe kanalen voorstellen" - -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Nieuwe connecties" - -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" - -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle connecties" - -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Toon alle connecties" - -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Niet geblokkeerd" - -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Toon alleen niet geblokkeerde connecties" - -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" - -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" - -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" - -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" - -#: ../../mod/connections.php:372 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Connectie bewerken" - -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" - -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Zoeken naar: " - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:147 -msgid "Block Name" -msgstr "Bloknaam" - -#: ../../mod/blocks.php:148 -msgid "Block Title" -msgstr "Bloktitel" - -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" - -#: ../../mod/cloud.php:120 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album niet gevonden." - -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Verwijder album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:930 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: ../../mod/photos.php:429 ../../mod/search.php:13 ../../mod/display.php:13 -#: ../../mod/ratings.php:82 ../../mod/directory.php:47 -#: ../../mod/viewconnections.php:17 +#: ../../mod/search.php:13 ../../mod/ratings.php:82 ../../mod/display.php:13 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:59 +#: ../../mod/photos.php:441 msgid "Public access denied." msgstr "Openbare toegang geweigerd." -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: ../../mod/photos.php:523 +#: ../../mod/search.php:206 #, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." +msgid "Items tagged with: %s" +msgstr "Items getagd met %s" -#: ../../mod/photos.php:526 +#: ../../mod/search.php:208 #, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB aan foto-opslag gebruikt." +msgid "Search results for: %s" +msgstr "Zoekresultaten voor %s" -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Foto's uploaden" +#: ../../mod/acl.php:231 +msgid "network" +msgstr "netwerk" -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:915 -msgid "Enter a new album name" -msgstr "Vul een nieuwe albumnaam in" +#: ../../mod/acl.php:241 +msgid "RSS" +msgstr "RSS" -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:916 -msgid "or select an existing one (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" - -#: ../../mod/photos.php:556 -msgid "Create a status post for this upload" -msgstr "Plaats een bericht voor deze upload." - -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" - -#: ../../mod/photos.php:625 ../../mod/photos.php:1157 -#: ../../mod/photos.php:1173 -msgid "Contact Photos" -msgstr "Connectiefoto's" - -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" - -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" - -#: ../../mod/photos.php:675 ../../mod/photos.php:1205 -msgid "View Photo" -msgstr "Foto weergeven" - -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Album bewerken" - -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." - -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "Foto niet aanwezig" - -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" - -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privéfoto" - -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" - -#: ../../mod/photos.php:909 -msgid "Edit photo" -msgstr "Foto bewerken" - -#: ../../mod/photos.php:911 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" - -#: ../../mod/photos.php:912 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" - -#: ../../mod/photos.php:919 -msgid "Caption" -msgstr "Bijschrift" - -#: ../../mod/photos.php:921 -msgid "Add a Tag" -msgstr "Tag toevoegen" - -#: ../../mod/photos.php:925 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" - -#: ../../mod/photos.php:928 -msgid "Flag as adult in album view" -msgstr "Markeer als voor volwassenen in albumweergave" - -#: ../../mod/photos.php:1120 -msgid "In This Photo:" -msgstr "Op deze foto:" - -#: ../../mod/photos.php:1125 -msgid "Map" -msgstr "Kaart" - -#: ../../mod/photos.php:1211 -msgid "View Album" -msgstr "Album weergeven" - -#: ../../mod/photos.php:1234 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "Profielovereenkomst" - -#: ../../mod/match.php:31 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." - -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" - -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "Geen overeenkomsten" +#: ../../mod/update_network.php:23 ../../mod/update_display.php:25 +#: ../../mod/update_channel.php:43 ../../mod/update_home.php:21 +#: ../../mod/update_public.php:21 ../../mod/update_search.php:46 +msgid "[Embedded content - reload page to view]" +msgstr "[Ingesloten inhoud - ververs pagina om te bekijken] " #: ../../mod/chatsvc.php:111 msgid "Away" @@ -5761,41 +4203,389 @@ msgstr "Afwezig" msgid "Online" msgstr "Online" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" +#: ../../mod/mitem.php:24 ../../mod/menu.php:138 +msgid "Menu not found." +msgstr "Menu niet gevonden." -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" +#: ../../mod/mitem.php:48 +msgid "Unable to create element." +msgstr "Niet in staat om onderdeel aan te maken." -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" +#: ../../mod/mitem.php:72 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Omschrijving" +#: ../../mod/mitem.php:88 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" +#: ../../mod/mitem.php:116 ../../mod/menu.php:160 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "Niet gevonden." -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." +#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "Systeemnotificaties" +#: ../../mod/mitem.php:155 ../../mod/mitem.php:227 ../../mod/settings.php:1083 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" -#: ../../mod/acl.php:231 -msgid "network" -msgstr "netwerk" +#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 +msgid "Link Name" +msgstr "Linknaam" -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" +#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Linkdoel of submenu-doel" + +#: ../../mod/mitem.php:158 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" + +#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Gebruik magic-auth wanneer beschikbaar" + +#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 +msgid "Order in list" +msgstr "Volgorde in lijst" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" + +#: ../../mod/mitem.php:162 +msgid "Submit and finish" +msgstr "Opslaan en afsluiten" + +#: ../../mod/mitem.php:163 +msgid "Submit and continue" +msgstr "Opslaan en doorgaan" + +#: ../../mod/mitem.php:171 +msgid "Menu:" +msgstr "Menu:" + +#: ../../mod/mitem.php:174 +msgid "Link Target" +msgstr "Linkdoel" + +#: ../../mod/mitem.php:177 +msgid "Edit menu" +msgstr "Menu bewerken" + +#: ../../mod/mitem.php:180 +msgid "Edit element" +msgstr "Onderdeel bewerken" + +#: ../../mod/mitem.php:181 +msgid "Drop element" +msgstr "Onderdeel verwijderen" + +#: ../../mod/mitem.php:182 +msgid "New element" +msgstr "Nieuw element" + +#: ../../mod/mitem.php:183 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" + +#: ../../mod/mitem.php:184 +msgid "Add menu element" +msgstr "Menu-element toevoegen" + +#: ../../mod/mitem.php:185 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" + +#: ../../mod/mitem.php:186 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" + +#: ../../mod/mitem.php:203 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." + +#: ../../mod/mitem.php:215 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." + +#: ../../mod/mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." + +#: ../../mod/mitem.php:224 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" + +#: ../../mod/mitem.php:230 +msgid "Link text" +msgstr "Linktekst" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." + +#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:287 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Welkom %s. Authenticatie op afstand geslaagd." + +#: ../../mod/rpost.php:131 ../../mod/editpost.php:158 +msgid "Edit post" +msgstr "Bericht bewerken" + +#: ../../mod/page.php:36 ../../mod/block.php:27 +msgid "Invalid item." +msgstr "Ongeldig item." + +#: ../../mod/page.php:52 ../../mod/wall_upload.php:29 ../../mod/block.php:39 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." + +#: ../../mod/page.php:126 +msgid "Lorem Ipsum" +msgstr "Lorem Ipsum" + +#: ../../mod/menu.php:45 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" + +#: ../../mod/menu.php:56 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." + +#: ../../mod/menu.php:92 ../../mod/menu.php:104 +msgid "Menu Name" +msgstr "Menunaam" + +#: ../../mod/menu.php:92 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" + +#: ../../mod/menu.php:93 ../../mod/menu.php:105 +msgid "Menu Title" +msgstr "Menutitel" + +#: ../../mod/menu.php:93 +msgid "Visible on webpage - leave empty for no title" +msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" + +#: ../../mod/menu.php:94 +msgid "Allow Bookmarks" +msgstr "Bladwijzers toestaan" + +#: ../../mod/menu.php:94 ../../mod/menu.php:151 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" + +#: ../../mod/menu.php:95 ../../mod/menu.php:153 +msgid "Submit and proceed" +msgstr "Opslaan en doorgaan" + +#: ../../mod/menu.php:107 +msgid "Drop" +msgstr "Verwijderen" + +#: ../../mod/menu.php:111 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" + +#: ../../mod/menu.php:113 +msgid "Delete this menu" +msgstr "Menu verwijderen" + +#: ../../mod/menu.php:114 ../../mod/menu.php:148 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" + +#: ../../mod/menu.php:115 +msgid "Edit this menu" +msgstr "Dit menu bewerken" + +#: ../../mod/menu.php:130 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." + +#: ../../mod/menu.php:143 +msgid "Edit Menu" +msgstr "Menu bewerken" + +#: ../../mod/menu.php:147 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" + +#: ../../mod/menu.php:149 +msgid "Menu name" +msgstr "Naam van menu" + +#: ../../mod/menu.php:149 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." + +#: ../../mod/menu.php:150 +msgid "Menu title" +msgstr "Titel van menu" + +#: ../../mod/menu.php:150 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." + +#: ../../mod/menu.php:151 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" + +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" + +#: ../../mod/locs.php:21 ../../mod/locs.php:52 +msgid "Location not found." +msgstr "Locatie niet gevonden." + +#: ../../mod/locs.php:56 +msgid "Primary location cannot be removed." +msgstr "Primaire locatie kan niet worden verwijderd." + +#: ../../mod/locs.php:88 +msgid "No locations found." +msgstr "Geen locaties gevonden." + +#: ../../mod/locs.php:101 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" + +#: ../../mod/locs.php:102 +msgid "Location (address)" +msgstr "Locatie (adres)" + +#: ../../mod/locs.php:103 +msgid "Primary Location" +msgstr "Primaire locatie" + +#: ../../mod/locs.php:104 +msgid "Drop location" +msgstr "Locatie verwijderen" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Ontvanger" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Maak dit bericht privé" + +#: ../../mod/layouts.php:121 ../../mod/layouts.php:179 +#: ../../mod/editlayout.php:160 +msgid "Layout Name" +msgstr "Naam lay-out" + +#: ../../mod/layouts.php:124 ../../mod/editlayout.php:158 +msgid "Layout Description (Optional)" +msgstr "Lay-out-omschrijving (optioneel)" + +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" +msgstr "Hulp met de paginabeschrijvingstaal Comanche" + +#: ../../mod/layouts.php:180 +msgid "Layout Description" +msgstr "Lay-out-omschrijving" + +#: ../../mod/layouts.php:185 +msgid "Download PDL file" +msgstr "Download PDL-bestand" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." + +#: ../../mod/lostpass.php:86 ../../boot.php:1558 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" + +#: ../../mod/lostpass.php:87 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." + +#: ../../mod/lostpass.php:88 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" + +#: ../../mod/lostpass.php:89 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" + +#: ../../mod/lostpass.php:90 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" + +#: ../../mod/lostpass.php:91 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." + +#: ../../mod/lostpass.php:108 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" + +#: ../../mod/lostpass.php:123 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: ../../mod/lostpass.php:124 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." + +#: ../../mod/lostpass.php:125 +msgid "Email Address" +msgstr "E-mailadres" + +#: ../../mod/lostpass.php:126 +msgid "Reset" +msgstr "Opnieuw instellen" #: ../../mod/pdledit.php:13 msgid "Layout updated." @@ -5817,292 +4607,94 @@ msgstr "Modulenaam:" msgid "Layout Help" msgstr "Lay-out-hulp" -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- kies map -" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" - -#: ../../mod/import.php:106 +#: ../../mod/removeaccount.php:30 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Verwijder dit account" -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 +msgid "WARNING: " +msgstr "WAARSCHUWING: " -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." - -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import voltooid." - -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." - -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Kanaal importeren" - -#: ../../mod/import.php:493 +#: ../../mod/removeaccount.php:58 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 "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken. Alleen de identiteit en de connecties zullen geïmporteerd worden. Het importeren van inhoud is nog niet beschikbaar." +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" +#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" - -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" - -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" - -#: ../../mod/import.php:499 +#: ../../mod/removeaccount.php:60 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 "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Importeer bestaande berichten (wanneer mogelijk)" +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 +msgid "Remove Account" +msgstr "Account verwijderen" -#: ../../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 "Item niet gevonden" - -#: ../../mod/editlayout.php:106 -msgid "Edit Layout" -msgstr "Lay-out bewerken" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Lay-out verwijderen?" - -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:187 -#: ../../mod/editpost.php:122 ../../mod/editblock.php:150 -msgid "Insert YouTube video" -msgstr "YouTube-video invoegen" - -#: ../../mod/editlayout.php:149 ../../mod/editwebpage.php:188 -#: ../../mod/editpost.php:123 ../../mod/editblock.php:151 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis-video [.ogg] invoegen" - -#: ../../mod/editlayout.php:150 ../../mod/editwebpage.php:189 -#: ../../mod/editpost.php:124 ../../mod/editblock.php:152 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis-audio [.ogg] invoegen" - -#: ../../mod/editlayout.php:164 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "Lay-out-omschrijving (optioneel)" - -#: ../../mod/editlayout.php:166 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:178 -msgid "Layout Name" -msgstr "Naam lay-out" - -#: ../../mod/chat.php:19 ../../mod/channel.php:25 +#: ../../mod/channel.php:25 ../../mod/chat.php:19 msgid "You must be logged in to see this page." msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../mod/editblock.php:78 ../../mod/editblock.php:94 +#: ../../mod/editlayout.php:76 ../../mod/editpost.php:20 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Item niet gevonden" -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Chatkanaal verwijderen" +#: ../../mod/editblock.php:117 +msgid "Delete block?" +msgstr "Blok verwijderen" -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" +#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 +#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:187 +msgid "Insert YouTube video" +msgstr "YouTube-video invoegen" -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ik ben online" +#: ../../mod/editblock.php:145 ../../mod/editlayout.php:143 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:188 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis-video [.ogg] invoegen" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" +#: ../../mod/editblock.php:146 ../../mod/editlayout.php:144 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:189 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis-audio [.ogg] invoegen" -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" +#: ../../mod/editblock.php:179 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Naam chatkanaal" +#: ../../mod/magic.php:69 +msgid "Hub not found." +msgstr "Hub niet gevonden." -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" - -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "Webpagina verwijderen?" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "Titel van paginalink" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "Webpagina bewerken" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." - -#: ../../mod/lostpass.php:85 ../../boot.php:1548 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-mailadres" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Opnieuw instellen" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Website:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" - -#: ../../mod/rate.php:161 ../../mod/connedit.php:663 -msgid "Rating (this information is public)" -msgstr "Beoordeling (deze informatie is openbaar)" - -#: ../../mod/rate.php:162 ../../mod/connedit.php:664 -msgid "Optionally explain your rating (this information is public)" -msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Item verwijderen?" +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Item is niet aanwezig." #: ../../mod/invite.php:25 msgid "Total invitation limit exceeded." @@ -6150,20 +4742,21 @@ msgid "Your message:" msgstr "Jouw bericht:" #: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me." +msgid "Please join my community on $Projectname." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op https://redmatrix.me." #: ../../mod/invite.php:134 msgid "You will need to supply this invitation code: " msgstr "Je moet deze uitnodigingscode opgeven:" #: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):" +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" #: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:" +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" #: ../../mod/invite.php:138 msgid "or visit " @@ -6173,192 +4766,1455 @@ msgstr "of bezoek " msgid "3. Click [Connect]" msgstr "3. Klik op [+ Verbinden]" -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Locatie niet gevonden." +#: ../../mod/ratings.php:69 +msgid "No ratings" +msgstr "Geen beoordelingen" -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "Primaire locatie kan niet worden verwijderd." +#: ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Beoordelingen" -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Geen locaties gevonden." +#: ../../mod/ratings.php:100 +msgid "Rating: " +msgstr "Beoordeling:" -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Website: " -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Locatie (adres)" +#: ../../mod/ratings.php:103 +msgid "Description: " +msgstr "Omschrijving: " -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Primaire locatie" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Locatie verwijderen" +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Annuleren" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." +#: ../../mod/notifications.php:51 ../../mod/connedit.php:539 +msgid "Ignore" +msgstr "Negeren" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Bron aangemaakt." +#: ../../mod/notifications.php:94 ../../mod/notify.php:53 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Bron aangemaakt." +#: ../../mod/notifications.php:98 ../../mod/notify.php:57 +msgid "System Notifications" +msgstr "Systeemnotificaties" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nieuwe bron" +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bewerken" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App maken" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Naam van app" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" + +#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "Omschrijving" + +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL van pictogram" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versie-ID" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Prijs van de app" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" + +#: ../../mod/viewsrc.php:38 +msgid "Source of Item" +msgstr "Bron van item" + +#: ../../mod/post.php:236 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importeer alleen inhoud met deze woorden (één per regel)" +#: ../../mod/match.php:22 +msgid "Profile Match" +msgstr "Profielovereenkomst" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Laat leeg om alle openbare inhoud te importeren" +#: ../../mod/match.php:31 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 +#: ../../mod/match.php:63 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" + +#: ../../mod/match.php:70 +msgid "No matches" +msgstr "Geen overeenkomsten" + +#: ../../mod/lockview.php:37 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." + +#: ../../mod/lockview.php:58 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: ../../mod/mood.php:131 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" + +#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +msgid "Help:" +msgstr "Hulp:" + +#: ../../mod/help.php:100 +msgid "$Projectname Documentation" +msgstr "$Projectname-documentatie" + +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." + +#: ../../mod/manage.php:144 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" + +#: ../../mod/manage.php:167 +msgid "Current Channel" +msgstr "Huidig kanaal" + +#: ../../mod/manage.php:169 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." + +#: ../../mod/manage.php:170 +msgid "Default Channel" +msgstr "Standaardkanaal" + +#: ../../mod/manage.php:171 +msgid "Make Default" +msgstr "Als standaard instellen" + +#: ../../mod/manage.php:174 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" + +#: ../../mod/manage.php:175 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" + +#: ../../mod/manage.php:177 +msgid "Delegated Channels" +msgstr "Uitbestede kanalen" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Inloggen." + +#: ../../mod/id.php:11 +msgid "First Name" +msgstr "Voornaam" + +#: ../../mod/id.php:12 +msgid "Last Name" +msgstr "Achternaam" + +#: ../../mod/id.php:13 +msgid "Nickname" +msgstr "Bijnaam" + +#: ../../mod/id.php:14 +msgid "Full Name" +msgstr "Volledige naam" + +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" +msgstr "Profielfoto 16px" + +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" +msgstr "Profielfoto 32px" + +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" +msgstr "Profielfoto 48px" + +#: ../../mod/id.php:23 +msgid "Profile Photo 64px" +msgstr "Profielfoto 64px" + +#: ../../mod/id.php:24 +msgid "Profile Photo 80px" +msgstr "Profielfoto 80px" + +#: ../../mod/id.php:25 +msgid "Profile Photo 128px" +msgstr "Profielfoto 128px" + +#: ../../mod/id.php:26 +msgid "Timezone" +msgstr "Tijdzone" + +#: ../../mod/id.php:27 +msgid "Homepage URL" +msgstr "URL homepagina" + +#: ../../mod/id.php:29 +msgid "Birth Year" +msgstr "Geboortejaar" + +#: ../../mod/id.php:30 +msgid "Birth Month" +msgstr "Geboortemaand" + +#: ../../mod/id.php:31 +msgid "Birth Day" +msgstr "Geboortedag" + +#: ../../mod/id.php:32 +msgid "Birthdate" +msgstr "Geboortedatum" + +#: ../../mod/id.php:33 ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Geslacht" + +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Kanaal toevoegen" + +#: ../../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 "Naast een account moet je tenminste één kanaal aanmaken. Een kanaal is een persoonlijke verzameling (gerelateerde) berichten en media, zoals je misschien gewend bent van sociale netwerken. Een kanaal kan gebruikt worden voor social media, een blog, forum, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat." + +#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 msgid "Channel Name" msgstr "Kanaalnaam" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Bron niet gevonden" +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Jouw naam of een andere relevante naam. Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Familieforum\"" -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Bron bewerken" +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Korte bijnaam" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Bron verwijderen" +#: ../../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 "Deze bijnaam (geen spaties) wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) en het internetadres (URL) van jouw kanaal aan te maken, die je dan met anderen kunt delen. Voorbeeld: janp wordt janp@jouw_hub.nl en https://jouw_hub.nl/channel/janp." -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Bron verwijderd" +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie." -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Verwijderen bron mislukt." +#: ../../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 "Kies een kanaaltype en het door jouw gewenste privacy-niveau, zodat automatisch de beste permissies kunnen worden ingesteld. Dit kan later, indien gewenst, worden veranderd." -#: ../../mod/menu.php:44 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" +#: ../../mod/new_channel.php:119 +msgid "Channel Type" +msgstr "Kanaaltype" -#: ../../mod/menu.php:53 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" -#: ../../mod/menu.php:86 ../../mod/menu.php:98 -msgid "Menu Name" -msgstr "Menunaam" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../mod/menu.php:86 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../mod/menu.php:87 ../../mod/menu.php:99 -msgid "Menu Title" -msgstr "Menutitel" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" -#: ../../mod/menu.php:87 -msgid "Visible on webpage - leave empty for no title" -msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Zichtbaar voor" -#: ../../mod/menu.php:88 -msgid "Allow Bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../mod/profperm.php:139 ../../mod/connections.php:140 +msgid "All Connections" +msgstr "Alle connecties" -#: ../../mod/menu.php:88 ../../mod/menu.php:140 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" +#: ../../mod/cloud.php:120 +msgid "$Projectname - Guests: Username: {your email address}, Password: +++" +msgstr "$Projectname - gasttoegang: Accountnaam: {jouw e-mailadres}, wachtwoord: +++" -#: ../../mod/menu.php:89 -msgid "Submit and proceed" -msgstr "Opslaan en doorgaan" +#: ../../mod/home.php:58 ../../mod/home.php:64 ../../mod/siteinfo.php:155 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../mod/menu.php:101 -msgid "Drop" -msgstr "Verwijderen" +#: ../../mod/home.php:73 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" -#: ../../mod/menu.php:103 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Welkom op $Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van $Projectname kunt vinden. Voor hulp met $Projectname klik je op het vraagteken." -#: ../../mod/menu.php:105 -msgid "Delete this menu" -msgstr "Menu verwijderen" +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" -#: ../../mod/menu.php:106 ../../mod/menu.php:137 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" -#: ../../mod/menu.php:107 -msgid "Edit this menu" -msgstr "Dit menu bewerken" +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Chatkanaal verwijderen" -#: ../../mod/menu.php:121 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" -#: ../../mod/menu.php:129 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menu niet gevonden." +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Ik ben online" -#: ../../mod/menu.php:134 -msgid "Edit Menu" -msgstr "Menu bewerken" +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" -#: ../../mod/menu.php:136 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" -#: ../../mod/menu.php:138 -msgid "Menu name" -msgstr "Naam van menu" +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Naam chatkanaal" -#: ../../mod/menu.php:138 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" -#: ../../mod/menu.php:139 -msgid "Menu title" -msgstr "Titel van menu" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." -#: ../../mod/menu.php:139 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." -#: ../../mod/menu.php:140 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" -#: ../../mod/menu.php:142 -msgid "Modify" -msgstr "Wijzigen" +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." + +#: ../../mod/mail.php:139 +msgid "Message deleted." +msgstr "Bericht verwijderd." + +#: ../../mod/mail.php:156 +msgid "Message recalled." +msgstr "Bericht ingetrokken." + +#: ../../mod/mail.php:225 +msgid "Send Private Message" +msgstr "Privébericht versturen" + +#: ../../mod/mail.php:226 ../../mod/mail.php:343 +msgid "To:" +msgstr "Aan:" + +#: ../../mod/mail.php:231 ../../mod/mail.php:345 +msgid "Subject:" +msgstr "Onderwerp:" + +#: ../../mod/mail.php:242 +msgid "Send" +msgstr "Verzenden" + +#: ../../mod/mail.php:269 +msgid "Message not found." +msgstr "Bericht niet gevonden" + +#: ../../mod/mail.php:312 +msgid "Delete message" +msgstr "Bericht verwijderen" + +#: ../../mod/mail.php:313 +msgid "Recall message" +msgstr "Bericht intrekken" + +#: ../../mod/mail.php:315 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." + +#: ../../mod/mail.php:332 +msgid "Private Conversation" +msgstr "Privéconversatie" + +#: ../../mod/mail.php:336 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "Verwijder conversatie" + +#: ../../mod/mail.php:338 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." + +#: ../../mod/mail.php:342 +msgid "Send Reply" +msgstr "Antwoord versturen" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Collectie aangemaakt" + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Collectie kon niet aangemaakt worden" + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Collectie bijgewerkt." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Kanaalcollectie aanmaken" + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Naam collectie:" + +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "Kanalen in deze collectie zijn zichtbaar voor andere kanalen" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Collectie verwijderd" + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Verwijderen collectie mislukt" + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Collectiebewerker" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Kanalen" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alle kanaalconnecties" + +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." + +#: ../../mod/editlayout.php:111 +msgid "Delete layout?" +msgstr "Lay-out verwijderen?" + +#: ../../mod/editlayout.php:177 +msgid "Edit Layout" +msgstr "Lay-out bewerken" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Openbare hubs" + +#: ../../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 "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het $Projectname-netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." + +#: ../../mod/pubsites.php:25 +msgid "Rate this hub" +msgstr "Beoordeel deze hub" + +#: ../../mod/pubsites.php:26 +msgid "Site URL" +msgstr "URL hub" + +#: ../../mod/pubsites.php:26 +msgid "Access Type" +msgstr "Toegangstype" + +#: ../../mod/pubsites.php:26 +msgid "Registration Policy" +msgstr "Registratiebeleid" + +#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 +msgid "Location" +msgstr "Locatie" + +#: ../../mod/pubsites.php:26 +msgid "View hub ratings" +msgstr "Bekijk hubbeoordelingen" + +#: ../../mod/pubsites.php:30 +msgid "Rate" +msgstr "Beoordeel" + +#: ../../mod/pubsites.php:31 +msgid "View ratings" +msgstr "Bekijk beoordelingen" + +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." + +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Registraties op deze $Projectname-hub moeten eerst worden goedgekeurd." + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registreer op een andere $Projectname-hub" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze $Projectname-hub" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ik accepteer de %s van deze $Projectname-hub" + +#: ../../mod/register.php:207 ../../mod/admin.php:454 +msgid "Registration" +msgstr "Registratie" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Jouw e-mailadres" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Geen kanaal." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Gemeenschappelijke connecties" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" + +#: ../../mod/editpost.php:48 +msgid "Delete item?" +msgstr "Item verwijderen?" + +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" + +#: ../../mod/editwebpage.php:152 +msgid "Delete webpage?" +msgstr "Webpagina verwijderen?" + +#: ../../mod/editwebpage.php:173 +msgid "Page link title" +msgstr "Titel van paginalink" + +#: ../../mod/editwebpage.php:224 +msgid "Edit Webpage" +msgstr "Webpagina bewerken" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Thema-instellingen bijgewerkt." + +#: ../../mod/admin.php:93 ../../mod/admin.php:452 +msgid "Site" +msgstr "Hub-instellingen" + +#: ../../mod/admin.php:94 +msgid "Accounts" +msgstr "Accounts" + +#: ../../mod/admin.php:95 ../../mod/admin.php:985 +msgid "Channels" +msgstr "Kanalen" + +#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 +msgid "Plugins" +msgstr "Plug-ins" + +#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 +msgid "Themes" +msgstr "Thema's" + +#: ../../mod/admin.php:98 +msgid "Inspect queue" +msgstr "Inspecteer berichtenwachtrij" + +#: ../../mod/admin.php:100 +msgid "Profile Config" +msgstr "Profielconfiguratie" + +#: ../../mod/admin.php:101 +msgid "DB updates" +msgstr "Database-updates" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 +msgid "Logs" +msgstr "Logboeken" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "Plug-in-opties" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../mod/admin.php:200 +msgid "# Accounts" +msgstr "# accounts" + +#: ../../mod/admin.php:201 +msgid "# blocked accounts" +msgstr "# geblokkeerde accounts" + +#: ../../mod/admin.php:202 +msgid "# expired accounts" +msgstr "# verlopen accounts" + +#: ../../mod/admin.php:203 +msgid "# expiring accounts" +msgstr "# accounts die nog moeten verlopen" + +#: ../../mod/admin.php:216 +msgid "# Channels" +msgstr "# Kanalen" + +#: ../../mod/admin.php:217 +msgid "# primary" +msgstr "# primair" + +#: ../../mod/admin.php:218 +msgid "# clones" +msgstr "# klonen" + +#: ../../mod/admin.php:224 +msgid "Message queues" +msgstr "Berichtenwachtrij" + +#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 +#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 +#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 +#: ../../mod/admin.php:1395 +msgid "Administration" +msgstr "Beheer" + +#: ../../mod/admin.php:241 +msgid "Summary" +msgstr "Samenvatting" + +#: ../../mod/admin.php:244 +msgid "Registered accounts" +msgstr "Geregistreerde accounts" + +#: ../../mod/admin.php:245 ../../mod/admin.php:552 +msgid "Pending registrations" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../mod/admin.php:246 +msgid "Registered channels" +msgstr "Geregistreerde kanalen" + +#: ../../mod/admin.php:247 ../../mod/admin.php:553 +msgid "Active plugins" +msgstr "Ingeschakelde plug-ins" + +#: ../../mod/admin.php:248 +msgid "Version" +msgstr "Versie" + +#: ../../mod/admin.php:363 +msgid "Site settings updated." +msgstr "Hub-instellingen bijgewerkt." + +#: ../../mod/admin.php:400 ../../mod/settings.php:813 +msgid "mobile" +msgstr "mobiel" + +#: ../../mod/admin.php:402 +msgid "experimental" +msgstr "experimenteel" + +#: ../../mod/admin.php:404 +msgid "unsupported" +msgstr "Niet ondersteund" + +#: ../../mod/admin.php:429 +msgid "Yes - with approval" +msgstr "Ja - met goedkeuring" + +#: ../../mod/admin.php:435 +msgid "My site is not a public server" +msgstr "Mijn $Projectname-hub is niet openbaar" + +#: ../../mod/admin.php:436 +msgid "My site has paid access only" +msgstr "Mijn $Projectname-hub kent alleen betaalde toegang" + +#: ../../mod/admin.php:437 +msgid "My site has free access only" +msgstr "Mijn $Projectname-hub kent alleen gratis toegang" + +#: ../../mod/admin.php:438 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" + +#: ../../mod/admin.php:455 +msgid "File upload" +msgstr "Bestand uploaden" + +#: ../../mod/admin.php:456 +msgid "Policies" +msgstr "Beleid" + +#: ../../mod/admin.php:461 +msgid "Site name" +msgstr "Naam van deze $Projectname-hub" + +#: ../../mod/admin.php:462 +msgid "Banner/Logo" +msgstr "Banner/logo" + +#: ../../mod/admin.php:463 +msgid "Administrator Information" +msgstr "Informatie over de beheerder van deze hub" + +#: ../../mod/admin.php:463 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." + +#: ../../mod/admin.php:464 +msgid "System language" +msgstr "Standaardtaal" + +#: ../../mod/admin.php:465 +msgid "System theme" +msgstr "Standaardthema" + +#: ../../mod/admin.php:465 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standaardthema voor $Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen" + +#: ../../mod/admin.php:466 +msgid "Mobile system theme" +msgstr "Standaardthema voor mobiel" + +#: ../../mod/admin.php:466 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" + +#: ../../mod/admin.php:468 +msgid "Enable Diaspora Protocol" +msgstr "Diaspora-protocol inschakelen" + +#: ../../mod/admin.php:468 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "Communiceer met Diaspora en Friendica (experimenteel)" + +#: ../../mod/admin.php:469 +msgid "Allow Feeds as Connections" +msgstr "Sta feeds toe als connecties" + +#: ../../mod/admin.php:469 +msgid "(Heavy system resource usage)" +msgstr "(sterk negatieve invloed op systeembronnen hub)" + +#: ../../mod/admin.php:470 +msgid "Maximum image size" +msgstr "Maximale grootte van afbeeldingen" + +#: ../../mod/admin.php:470 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." + +#: ../../mod/admin.php:471 +msgid "Does this site allow new member registration?" +msgstr "Staat deze hub nieuwe accounts toe?" + +#: ../../mod/admin.php:472 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Wat voor soort accounts biedt deze $Projectname-hub aan? Kies wat het meest in de buurt komt." + +#: ../../mod/admin.php:473 +msgid "Register text" +msgstr "Tekst tijdens registratie" + +#: ../../mod/admin.php:473 +msgid "Will be displayed prominently on the registration page." +msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." + +#: ../../mod/admin.php:474 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)" + +#: ../../mod/admin.php:474 +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 "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken." + +#: ../../mod/admin.php:475 +msgid "Preserve site homepage URL" +msgstr "Behoudt de URL van de hub (/)" + +#: ../../mod/admin.php:475 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)" + +#: ../../mod/admin.php:476 +msgid "Accounts abandoned after x days" +msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" + +#: ../../mod/admin.php:476 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." + +#: ../../mod/admin.php:477 +msgid "Allowed friend domains" +msgstr "Toegestane domeinen" + +#: ../../mod/admin.php:477 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze $Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." + +#: ../../mod/admin.php:478 +msgid "Allowed email domains" +msgstr "Toegestane e-maildomeinen" + +#: ../../mod/admin.php:478 +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 "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." + +#: ../../mod/admin.php:479 +msgid "Not allowed email domains" +msgstr "Niet toegestane e-maildomeinen" + +#: ../../mod/admin.php:479 +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 "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " + +#: ../../mod/admin.php:480 +msgid "Block public" +msgstr "Openbare toegang blokkeren" + +#: ../../mod/admin.php:480 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde leden." + +#: ../../mod/admin.php:481 +msgid "Verify Email Addresses" +msgstr "E-mailadres verifieren" + +#: ../../mod/admin.php:481 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." + +#: ../../mod/admin.php:482 +msgid "Force publish" +msgstr "Dwing kanaalvermelding af" + +#: ../../mod/admin.php:482 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." + +#: ../../mod/admin.php:483 +msgid "Disable discovery tab" +msgstr "Ontdekkingstab" + +#: ../../mod/admin.php:483 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen." + +#: ../../mod/admin.php:484 +msgid "login on Homepage" +msgstr "Inlogformulier op de homepagina" + +#: ../../mod/admin.php:484 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. " + +#: ../../mod/admin.php:486 +msgid "Proxy user" +msgstr "Gebruikersnaam proxy" + +#: ../../mod/admin.php:487 +msgid "Proxy URL" +msgstr "URL proxy" + +#: ../../mod/admin.php:488 +msgid "Network timeout" +msgstr "Netwerktimeout" + +#: ../../mod/admin.php:488 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" + +#: ../../mod/admin.php:489 +msgid "Delivery interval" +msgstr "Afleveringsinterval" + +#: ../../mod/admin.php:489 +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 "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." + +#: ../../mod/admin.php:490 +msgid "Poll interval" +msgstr "Poll-interval" + +#: ../../mod/admin.php:490 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." + +#: ../../mod/admin.php:491 +msgid "Maximum Load Average" +msgstr "Maximaal gemiddelde systeembelasting" + +#: ../../mod/admin.php:491 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." + +#: ../../mod/admin.php:492 +msgid "Expiration period in days for imported (matrix/network) content" +msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands matrix/netwerk-pagina wordt verwijderd." + +#: ../../mod/admin.php:492 +msgid "0 for no expiration of imported content" +msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." + +#: ../../mod/admin.php:540 +msgid "No server found" +msgstr "Geen hub gevonden" + +#: ../../mod/admin.php:547 ../../mod/admin.php:831 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:547 +msgid "for channel" +msgstr "voor kanaal" + +#: ../../mod/admin.php:547 +msgid "on server" +msgstr "op hub" + +#: ../../mod/admin.php:547 +msgid "Status" +msgstr "Status" + +#: ../../mod/admin.php:549 +msgid "Server" +msgstr "Hubbeheer" + +#: ../../mod/admin.php:566 +msgid "Update has been marked successful" +msgstr "Update is als succesvol gemarkeerd" + +#: ../../mod/admin.php:576 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." + +#: ../../mod/admin.php:579 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s was geslaagd." + +#: ../../mod/admin.php:583 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." + +#: ../../mod/admin.php:586 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-functie %s kon niet gevonden worden." + +#: ../../mod/admin.php:602 +msgid "No failed updates." +msgstr "Geen mislukte updates." + +#: ../../mod/admin.php:606 +msgid "Failed Updates" +msgstr "Mislukte updates" + +#: ../../mod/admin.php:608 +msgid "Mark success (if update was manually applied)" +msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" + +#: ../../mod/admin.php:609 +msgid "Attempt to execute this update step automatically" +msgstr "Poging om deze stap van de update automatisch uit te voeren." + +#: ../../mod/admin.php:641 +msgid "Queue Statistics" +msgstr "Wachtrij-statistieken" + +#: ../../mod/admin.php:642 +msgid "Total Entries" +msgstr "Aantal vermeldingen" + +#: ../../mod/admin.php:643 +msgid "Priority" +msgstr "Prioriteit" + +#: ../../mod/admin.php:644 +msgid "Destination URL" +msgstr "Doel-URL" + +#: ../../mod/admin.php:645 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markeren" + +#: ../../mod/admin.php:646 +msgid "Empty queue for this hub" +msgstr "Berichtenwachtrij voor deze hub legen" + +#: ../../mod/admin.php:647 +msgid "Last known contact" +msgstr "Voor het laatst contact" + +#: ../../mod/admin.php:683 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s account geblokkeerd/gedeblokkeerd" +msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" + +#: ../../mod/admin.php:691 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account verwijderd" +msgstr[1] "%s accounts verwijderd" + +#: ../../mod/admin.php:727 +msgid "Account not found" +msgstr "Account niet gevonden" + +#: ../../mod/admin.php:739 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' verwijderd" + +#: ../../mod/admin.php:747 +#, php-format +msgid "Account '%s' blocked" +msgstr "Account '%s' geblokkeerd" + +#: ../../mod/admin.php:755 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Account '%s' gedeblokkeerd" + +#: ../../mod/admin.php:818 ../../mod/admin.php:830 +msgid "Users" +msgstr "Accounts" + +#: ../../mod/admin.php:820 ../../mod/admin.php:987 +msgid "select all" +msgstr "alles selecteren" + +#: ../../mod/admin.php:821 +msgid "User registrations waiting for confirm" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../mod/admin.php:822 +msgid "Request date" +msgstr "Tijd/datum verzoek" + +#: ../../mod/admin.php:823 +msgid "No registrations." +msgstr "Geen verzoeken." + +#: ../../mod/admin.php:824 ../../mod/connedit.php:699 +msgid "Approve" +msgstr "Goedkeuren" + +#: ../../mod/admin.php:825 +msgid "Deny" +msgstr "Afkeuren" + +#: ../../mod/admin.php:827 ../../mod/connedit.php:531 +msgid "Block" +msgstr "Blokkeren" + +#: ../../mod/admin.php:828 ../../mod/connedit.php:531 +msgid "Unblock" +msgstr "Deblokkeren" + +#: ../../mod/admin.php:831 +msgid "Register date" +msgstr "Geregistreerd" + +#: ../../mod/admin.php:831 +msgid "Last login" +msgstr "Laatste keer ingelogd" + +#: ../../mod/admin.php:831 +msgid "Expires" +msgstr "Verloopt" + +#: ../../mod/admin.php:831 +msgid "Service Class" +msgstr "Abonnementen" + +#: ../../mod/admin.php:833 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" + +#: ../../mod/admin.php:834 +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 "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" + +#: ../../mod/admin.php:870 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s kanaal gecensureerd/ongecensureerd" +msgstr[1] "%s kanalen gecensureerd/ongecensureerd" + +#: ../../mod/admin.php:879 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "Code toegestaan/niet toegestaan voor %s kanaal" +msgstr[1] "Scripts toegestaan/niet toegestaan voor %s kanalen " + +#: ../../mod/admin.php:886 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanaal verwijderd" +msgstr[1] "%s kanalen verwijderd" + +#: ../../mod/admin.php:906 +msgid "Channel not found" +msgstr "Kanaal niet gevonden" + +#: ../../mod/admin.php:917 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanaal '%s' verwijderd" + +#: ../../mod/admin.php:929 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanaal '%s' gecensureerd" + +#: ../../mod/admin.php:929 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanaal '%s' ongecensureerd" + +#: ../../mod/admin.php:940 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Scripts toegestaan voor kanaal '%s'" + +#: ../../mod/admin.php:940 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Scripts niet toegestaan voor kanaal '%s'" + +#: ../../mod/admin.php:989 +msgid "Censor" +msgstr "Censureren" + +#: ../../mod/admin.php:990 +msgid "Uncensor" +msgstr "Niet censureren" + +#: ../../mod/admin.php:991 +msgid "Allow Code" +msgstr "Scripts toestaan" + +#: ../../mod/admin.php:992 +msgid "Disallow Code" +msgstr "Scripts niet toestaan" + +#: ../../mod/admin.php:994 +msgid "UID" +msgstr "UID" + +#: ../../mod/admin.php:994 ../../mod/profiles.php:447 +msgid "Address" +msgstr "Kanaaladres" + +#: ../../mod/admin.php:996 +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 "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" + +#: ../../mod/admin.php:997 +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 "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" + +#: ../../mod/admin.php:1037 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-in %s uitgeschakeld." + +#: ../../mod/admin.php:1041 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-in %s ingeschakeld" + +#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 +msgid "Disable" +msgstr "Uitschakelen" + +#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 +msgid "Enable" +msgstr "Inschakelen" + +#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 +msgid "Toggle" +msgstr "Omschakelen" + +#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 +msgid "Author: " +msgstr "Auteur: " + +#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 +msgid "Maintainer: " +msgstr "Beheerder: " + +#: ../../mod/admin.php:1214 +msgid "No themes found." +msgstr "Geen thema's gevonden" + +#: ../../mod/admin.php:1270 +msgid "Screenshot" +msgstr "Schermafdruk" + +#: ../../mod/admin.php:1316 +msgid "[Experimental]" +msgstr "[Experimenteel]" + +#: ../../mod/admin.php:1317 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" + +#: ../../mod/admin.php:1341 +msgid "Log settings updated." +msgstr "Logboek-instellingen bijgewerkt." + +#: ../../mod/admin.php:1398 +msgid "Clear" +msgstr "Leegmaken" + +#: ../../mod/admin.php:1404 +msgid "Debugging" +msgstr "Debuggen" + +#: ../../mod/admin.php:1405 +msgid "Log file" +msgstr "Logbestand" + +#: ../../mod/admin.php:1405 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je $Projectname-installatie." + +#: ../../mod/admin.php:1406 +msgid "Log level" +msgstr "Logniveau" + +#: ../../mod/admin.php:1452 +msgid "New Profile Field" +msgstr "Nieuw profielveld" + +#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 +msgid "Field nickname" +msgstr "Bijnaam voor veld" + +#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 +msgid "System name of field" +msgstr "Systeemnaam voor veld" + +#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 +msgid "Input type" +msgstr "Invoertype" + +#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 +msgid "Field Name" +msgstr "Veldnaam" + +#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 +msgid "Label on profile pages" +msgstr "Tekstlabel voor op profielpagina's" + +#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 +msgid "Help text" +msgstr "Helptekst" + +#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 +msgid "Additional info (optional)" +msgstr "Extra informatie (optioneel)" + +#: ../../mod/admin.php:1466 +msgid "Field definition not found" +msgstr "Velddefinitie niet gevonden" + +#: ../../mod/admin.php:1472 +msgid "Edit Profile Field" +msgstr "Profielveld bewerken" #: ../../mod/filestorage.php:82 msgid "Permission Denied." @@ -6404,6 +6260,32 @@ msgstr "Toon URL van dit bestand" msgid "Notify your contacts about this file" msgstr "Jouw connecties over dit bestand berichten" +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanaal toegevoegd." + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s" + +#: ../../mod/probe.php:24 ../../mod/probe.php:30 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" + #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." msgstr "Contact niet gevonden" @@ -6421,63 +6303,2256 @@ msgstr "Kanalen voorstellen" msgid "Suggest a friend for %s" msgstr "Stel een kanaal voor aan %s" -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Hub niet gevonden." +#: ../../mod/viewconnections.php:62 +msgid "No connections." +msgstr "Geen connecties." -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" +#: ../../mod/viewconnections.php:75 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bezoek het profiel van %s [%s]" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Ontvanger" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Maak dit bericht privé" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" +#: ../../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 "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Zichtbaar voor" +#: ../../mod/removeme.php:58 +msgid "This channel will be completely removed from the network. " +msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webpagina" +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" -#: ../../mod/impel.php:38 -msgid "block" -msgstr "blok" +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "lay-out" +#: ../../mod/removeme.php:61 ../../mod/settings.php:1137 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" -#: ../../mod/impel.php:117 +#: ../../mod/events.php:21 +msgid "Calendar entries imported." +msgstr "Agenda-items geïmporteerd." + +#: ../../mod/events.php:23 +msgid "No calendar entries found." +msgstr "Geen agenda-items gevonden." + +#: ../../mod/events.php:101 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" + +#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 +msgid "Unable to generate preview." +msgstr "Niet in staat om voorvertoning te genereren" + +#: ../../mod/events.php:110 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." + +#: ../../mod/events.php:128 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" + +#: ../../mod/events.php:426 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:448 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: ../../mod/events.php:449 +msgid "Delete event" +msgstr "Gebeurtenis verwijderen" + +#: ../../mod/events.php:483 +msgid "calendar" +msgstr "agenda" + +#: ../../mod/events.php:504 +msgid "Create New Event" +msgstr "Nieuwe gebeurtenis aanmaken" + +#: ../../mod/events.php:505 ../../mod/photos.php:839 +msgid "Previous" +msgstr "Vorige" + +#: ../../mod/events.php:506 ../../mod/setup.php:281 ../../mod/photos.php:848 +msgid "Next" +msgstr "Volgende" + +#: ../../mod/events.php:507 +msgid "Export" +msgstr "Exporteren" + +#: ../../mod/events.php:510 +msgid "Import" +msgstr "Importeren" + +#: ../../mod/events.php:541 +msgid "Event removed" +msgstr "Gebeurtenis verwijderd" + +#: ../../mod/events.php:544 +msgid "Failed to remove event" +msgstr "Verwijderen gebeurtenis mislukt" + +#: ../../mod/events.php:664 +msgid "Event details" +msgstr "Details van gebeurtenis" + +#: ../../mod/events.php:665 +msgid "Starting date and Title are required." +msgstr "Begintijd en titel zijn vereist." + +#: ../../mod/events.php:667 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" + +#: ../../mod/events.php:669 +msgid "Event Starts:" +msgstr "Begin gebeurtenis:" + +#: ../../mod/events.php:676 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/-tijd is niet bekend of niet relevant" + +#: ../../mod/events.php:678 +msgid "Event Finishes:" +msgstr "Einde gebeurtenis:" + +#: ../../mod/events.php:680 ../../mod/events.php:681 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" + +#: ../../mod/events.php:680 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." + +#: ../../mod/events.php:682 ../../mod/directory.php:308 +msgid "Description:" +msgstr "Omschrijving:" + +#: ../../mod/events.php:686 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:688 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." + +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "Configuratiebewerker" + +#: ../../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 "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " + +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Xchan opzoeken" + +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Zoek een xchan (of webbie) die begint met:" + +#: ../../mod/uexport.php:50 ../../mod/uexport.php:51 +msgid "Export Channel" +msgstr "Kanaal exporteren" + +#: ../../mod/uexport.php:52 +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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." + +#: ../../mod/uexport.php:53 +msgid "Export Content" +msgstr "Inhoud exporteren" + +#: ../../mod/uexport.php:54 +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 "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." + +#: ../../mod/uexport.php:55 +msgid "Export your posts from a given year or month:" +msgstr "Exporteer jouw berichten van een bepaald jaar of een bepaalde maand:" + +#: ../../mod/uexport.php:57 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Click on one of the recent years or months below." +msgstr "Je kan ook jouw berichten en conversaties van een bepaald jaar of een bepaalde maand exporteren. Klik hieronder op een van de recente jaren of maanden." + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Jan" +msgstr "jan" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Feb" +msgstr "feb" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Mar" +msgstr "mrt" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Apr" +msgstr "apr" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Jun" +msgstr "jun" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Jul" +msgstr "jul" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Aug" +msgstr "aug" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Sep" +msgstr "sep" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Oct" +msgstr "okt" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Nov" +msgstr "nov" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Dec" +msgstr "dec" + +#: ../../mod/uexport.php:60 +msgid "" +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), kies een kleiner datumbereik en probeer het dan nogmaals." + +#: ../../mod/uexport.php:61 +#, php-format +msgid "" +"Or adjust the date in your browser location bar to select other dates. For " +"example the year 2013; %1$s/2013 or the month " +"September 2013; %1$s/2013/9" +msgstr "Of pas de datum aan in de adresbalk van je browser om zo andere jaren of maanden te kiezen. Bijvoorbeeld het jaar 2013; %1$s/2013 of de maand september 2013; %1$s/2013/9." + +#: ../../mod/uexport.php:62 +msgid "Please visit" +msgstr "Bezoek" + +#: ../../mod/uexport.php:62 +msgid "on another hub to import the backup files(s)." +msgstr "op een andere hub om het back-upbestand of de back-upbestanden te importeren." + +#: ../../mod/uexport.php:63 +msgid "" +"We advise you to clone the channel on the new hub first and than to import " +"the backup file(s) (from the same channel) in chronological order. Importing" +" the backup files into another channel will certainly give permission " +"issues." +msgstr "Wij adviseren om eerst het kanaal op de nieuwe hub te klonen en dan vervolgens het back-upbestand of de back-upbestanden in chronologische volgorde te importeren (van hetzelfde kanaal). Het importeren van back-upbestanden in een ander kanaal veroorzaakt zeker permissieproblemen." + +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Ga verder" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." + +#: ../../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 "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" + +#: ../../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 "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." + +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." + +#: ../../mod/connedit.php:219 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." + +#: ../../mod/connedit.php:221 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." + +#: ../../mod/connedit.php:267 +msgid "is now connected to" +msgstr "is nu verbonden met" + +#: ../../mod/connedit.php:392 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." + +#: ../../mod/connedit.php:406 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" + +#: ../../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 "Niet in staat om de parameters van connecties in te stellen." + +#: ../../mod/connedit.php:494 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" + +#: ../../mod/connedit.php:513 +#, php-format +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" + +#: ../../mod/connedit.php:517 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" + +#: ../../mod/connedit.php:520 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" + +#: ../../mod/connedit.php:524 +msgid "Recent Activity" +msgstr "Recente activiteit" + +#: ../../mod/connedit.php:527 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" + +#: ../../mod/connedit.php:534 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" + +#: ../../mod/connedit.php:535 +msgid "This connection is blocked!" +msgstr "Deze connectie is geblokkeerd!" + +#: ../../mod/connedit.php:539 +msgid "Unignore" +msgstr "Niet meer negeren" + +#: ../../mod/connedit.php:542 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" + +#: ../../mod/connedit.php:543 +msgid "This connection is ignored!" +msgstr "Deze connectie wordt genegeerd!" + +#: ../../mod/connedit.php:547 +msgid "Unarchive" +msgstr "Niet meer archiveren" + +#: ../../mod/connedit.php:547 +msgid "Archive" +msgstr "Archiveren" + +#: ../../mod/connedit.php:550 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" + +#: ../../mod/connedit.php:551 +msgid "This connection is archived!" +msgstr "Deze connectie is gearchiveerd!" + +#: ../../mod/connedit.php:555 +msgid "Unhide" +msgstr "Niet meer verbergen" + +#: ../../mod/connedit.php:555 +msgid "Hide" +msgstr "Verbergen" + +#: ../../mod/connedit.php:558 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" + +#: ../../mod/connedit.php:559 +msgid "This connection is hidden!" +msgstr "Deze connectie is verborgen!" + +#: ../../mod/connedit.php:566 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" + +#: ../../mod/connedit.php:647 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" + +#: ../../mod/connedit.php:647 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" + +#: ../../mod/connedit.php:652 +msgid "Set Affinity" +msgstr "Verwantschapsfilter instellen" + +#: ../../mod/connedit.php:655 +msgid "Set Profile" +msgstr "Profiel instellen" + +#: ../../mod/connedit.php:658 +msgid "Set Affinity & Profile" +msgstr "Verwantschapsfilter en profiel instellen" + +#: ../../mod/connedit.php:675 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" + +#: ../../mod/connedit.php:677 +msgid "This connection's address is" +msgstr "Het adres van deze connectie is" + +#: ../../mod/connedit.php:680 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." + +#: ../../mod/connedit.php:682 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" + +#: ../../mod/connedit.php:684 +msgid "Slide to adjust your rating" +msgstr "Gebruik de schuif om je beoordeling te geven" + +#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 +msgid "Optionally explain your rating" +msgstr "Verklaar jouw beoordeling (niet verplicht)" + +#: ../../mod/connedit.php:687 +msgid "Custom Filter" +msgstr "Berichtenfilter" + +#: ../../mod/connedit.php:688 +msgid "Only import posts with this text" +msgstr "Importeer alleen berichten met deze tekst" + +#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 +msgid "" +"words one per line or #tags or /patterns/, leave blank to import all posts" +msgstr "woorden (één per regel), #tags of /patterns/, laat leeg om alle berichten te importeren" + +#: ../../mod/connedit.php:689 +msgid "Do not import posts with this text" +msgstr "Importeer geen berichten met deze tekst" + +#: ../../mod/connedit.php:691 +msgid "This information is public!" +msgstr "Deze informatie is openbaar!" + +#: ../../mod/connedit.php:696 +msgid "Connection Pending Approval" +msgstr "Connectie moet nog goedgekeurd worden" + +#: ../../mod/connedit.php:697 +msgid "Connection Request" +msgstr "Connectieverzoek" + +#: ../../mod/connedit.php:698 +#, php-format +msgid "" +"(%s) would like to connect with you. Please approve this connection to allow" +" communication." +msgstr "(%s) wil met jou verbinden. Keur dit connectieverzoek goed om onderling te kunnen communiceren." + +#: ../../mod/connedit.php:700 +msgid "Approve Later" +msgstr "Later goedkeuren" + +#: ../../mod/connedit.php:703 +msgid "inherited" +msgstr "geërfd" + +#: ../../mod/connedit.php:705 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." + +#: ../../mod/connedit.php:707 +msgid "Their Settings" +msgstr "Hun instellingen" + +#: ../../mod/connedit.php:708 +msgid "My Settings" +msgstr "Mijn instellingen" + +#: ../../mod/connedit.php:710 +msgid "Individual Permissions" +msgstr "Individuele permissies" + +#: ../../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 "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." + +#: ../../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 "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " + +#: ../../mod/connedit.php:713 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " + +#: ../../mod/profile_photo.php:162 +msgid "Image resize failed." +msgstr "Afbeelding kon niet van grootte veranderd worden." + +#: ../../mod/profile_photo.php:206 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." + +#: ../../mod/profile_photo.php:233 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" + +#: ../../mod/profile_photo.php:242 +msgid "Unable to process image." +msgstr "Niet in staat om afbeelding te verwerken." + +#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 +msgid "Photo not available." +msgstr "Foto niet beschikbaar." + +#: ../../mod/profile_photo.php:359 +msgid "Upload File:" +msgstr "Bestand uploaden:" + +#: ../../mod/profile_photo.php:360 +msgid "Select a profile:" +msgstr "Kies een profiel:" + +#: ../../mod/profile_photo.php:361 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" + +#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 +msgid "or" +msgstr "of" + +#: ../../mod/profile_photo.php:366 +msgid "skip this step" +msgstr "sla deze stap over" + +#: ../../mod/profile_photo.php:366 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit jouw fotoalbums" + +#: ../../mod/profile_photo.php:382 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" + +#: ../../mod/profile_photo.php:383 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." + +#: ../../mod/profile_photo.php:385 +msgid "Done Editing" +msgstr "Klaar met bewerken" + +#: ../../mod/profile_photo.php:428 +msgid "Image uploaded successfully." +msgstr "Uploaden afbeelding geslaagd" + +#: ../../mod/profile_photo.php:430 +msgid "Image upload failed." +msgstr "Uploaden afbeelding mislukt" + +#: ../../mod/profile_photo.php:439 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleinen [%s] van afbeelding mislukt." + +#: ../../mod/sharedwithme.php:94 +msgid "Files: shared with me" +msgstr "Bestanden: met mij gedeeld" + +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "NIEUW" + +#: ../../mod/sharedwithme.php:99 +msgid "Remove all files" +msgstr "Verwijder alle bestanden" + +#: ../../mod/sharedwithme.php:100 +msgid "Remove this file" +msgstr "Verwijder dit bestand" + +#: ../../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 "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." + +#: ../../mod/rmagic.php:40 +msgid "The error message was:" +msgstr "Het foutbericht was:" + +#: ../../mod/rmagic.php:44 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." + +#: ../../mod/rmagic.php:84 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" + +#: ../../mod/rmagic.php:85 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" + +#: ../../mod/rmagic.php:86 +msgid "Authenticate" +msgstr "Authenticeren" + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" + +#: ../../mod/thing.php:94 +msgid "Thing updated" +msgstr "Ding bijgewerkt" + +#: ../../mod/thing.php:167 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" + +#: ../../mod/thing.php:171 +msgid "Thing added" +msgstr "Ding toegevoegd" + +#: ../../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:254 +msgid "Show Thing" +msgstr "Ding weergeven" + +#: ../../mod/thing.php:261 +msgid "item not found." +msgstr "Item niet gevonden" + +#: ../../mod/thing.php:289 +msgid "Edit Thing" +msgstr "Ding bewerken" + +#: ../../mod/thing.php:291 ../../mod/thing.php:338 +msgid "Select a profile" +msgstr "Kies een profiel" + +#: ../../mod/thing.php:295 ../../mod/thing.php:341 +msgid "Post an activity" +msgstr "Plaats een bericht" + +#: ../../mod/thing.php:295 ../../mod/thing.php:341 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." + +#: ../../mod/thing.php:297 ../../mod/thing.php:343 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" + +#: ../../mod/thing.php:299 ../../mod/thing.php:344 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" + +#: ../../mod/thing.php:301 ../../mod/thing.php:345 +msgid "URL for photo of thing (optional)" +msgstr "URL van foto van ding (optioneel)" + +#: ../../mod/thing.php:336 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" + +#: ../../mod/connections.php:52 ../../mod/connections.php:153 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: ../../mod/connections.php:57 ../../mod/connections.php:160 +msgid "Ignored" +msgstr "Genegeerd" + +#: ../../mod/connections.php:62 ../../mod/connections.php:174 +msgid "Hidden" +msgstr "Verborgen" + +#: ../../mod/connections.php:67 ../../mod/connections.php:167 +msgid "Archived" +msgstr "Gearchiveerd" + +#: ../../mod/connections.php:131 +msgid "Suggest new connections" +msgstr "Nieuwe kanalen voorstellen" + +#: ../../mod/connections.php:134 +msgid "New Connections" +msgstr "Nieuwe connecties" + +#: ../../mod/connections.php:137 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" + +#: ../../mod/connections.php:143 +msgid "Show all connections" +msgstr "Toon alle connecties" + +#: ../../mod/connections.php:146 +msgid "Unblocked" +msgstr "Niet geblokkeerd" + +#: ../../mod/connections.php:149 +msgid "Only show unblocked connections" +msgstr "Toon alleen niet geblokkeerde connecties" + +#: ../../mod/connections.php:156 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" + +#: ../../mod/connections.php:163 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" + +#: ../../mod/connections.php:170 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" + +#: ../../mod/connections.php:177 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" + +#: ../../mod/connections.php:232 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:233 +msgid "Edit connection" +msgstr "Connectie bewerken" + +#: ../../mod/connections.php:271 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" + +#: ../../mod/connections.php:272 +msgid "Finding: " +msgstr "Zoeken naar: " + +#: ../../mod/rate.php:157 +msgid "Website:" +msgstr "Website:" + +#: ../../mod/rate.php:160 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" + +#: ../../mod/rate.php:161 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" + +#: ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" +msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" + +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Geen abonnementsbeperkingen gevonden." + +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." + +#: ../../mod/settings.php:76 +msgid "Name is required" +msgstr "Naam is vereist" + +#: ../../mod/settings.php:80 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" + +#: ../../mod/settings.php:130 +msgid "Diaspora Policy Settings updated." +msgstr "Beleidsinstellingen Diaspora bijgewerkt." + +#: ../../mod/settings.php:238 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." + +#: ../../mod/settings.php:242 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." + +#: ../../mod/settings.php:256 +msgid "Password changed." +msgstr "Wachtwoord veranderd." + +#: ../../mod/settings.php:258 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." + +#: ../../mod/settings.php:272 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." + +#: ../../mod/settings.php:275 +msgid "Protected email address. Cannot change to that email." +msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." + +#: ../../mod/settings.php:284 +msgid "System failure storing new email. Please try again." +msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." + +#: ../../mod/settings.php:523 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." + +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +#: ../../mod/settings.php:649 +msgid "Add application" +msgstr "Applicatie toevoegen" + +#: ../../mod/settings.php:590 +msgid "Name of application" +msgstr "Naam van applicatie" + +#: ../../mod/settings.php:591 ../../mod/settings.php:617 +msgid "Consumer Key" +msgstr "Consumer key" + +#: ../../mod/settings.php:591 ../../mod/settings.php:592 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" + +#: ../../mod/settings.php:592 ../../mod/settings.php:618 +msgid "Consumer Secret" +msgstr "Consumer secret" + +#: ../../mod/settings.php:593 ../../mod/settings.php:619 +msgid "Redirect" +msgstr "Redirect/doorverwijzing" + +#: ../../mod/settings.php:593 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" + +#: ../../mod/settings.php:594 ../../mod/settings.php:620 +msgid "Icon url" +msgstr "URL van pictogram" + +#: ../../mod/settings.php:594 +msgid "Optional" +msgstr "Optioneel" + +#: ../../mod/settings.php:605 +msgid "You can't edit this application." +msgstr "Je kan deze applicatie niet bewerken" + +#: ../../mod/settings.php:648 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: ../../mod/settings.php:652 +msgid "Client key starts with" +msgstr "Client key begint met" + +#: ../../mod/settings.php:653 +msgid "No name" +msgstr "Geen naam" + +#: ../../mod/settings.php:654 +msgid "Remove authorization" +msgstr "Autorisatie verwijderen" + +#: ../../mod/settings.php:668 +msgid "No feature settings configured" +msgstr "Geen extra functie- of plugin-instellingen" + +#: ../../mod/settings.php:685 +msgid "Feature/Addon Settings" +msgstr "Extra functie- en plugin-instellingen" + +#: ../../mod/settings.php:687 +msgid "Settings for the built-in Diaspora emulator" +msgstr "Instellingen voor de ingebouwde Diaspora-emulator" + +#: ../../mod/settings.php:688 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "Sta toe dat elk Diaspora-lid op jouw openbare berichten kan reageren." + +#: ../../mod/settings.php:689 +msgid "Enable the Diaspora protocol for this channel" +msgstr "Diaspora-protocol voor dit kanaal inschakelen" + +#: ../../mod/settings.php:690 +msgid "Diaspora Policy Settings" +msgstr "Beleidsinstellingen Diaspora" + +#: ../../mod/settings.php:691 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "Voorkom dat jouw tags naar andere websites worden doorverwezen" + +#: ../../mod/settings.php:715 +msgid "Account Settings" +msgstr "Account-instellingen" + +#: ../../mod/settings.php:716 +msgid "Enter New Password:" +msgstr "Nieuw wachtwoord invoeren:" + +#: ../../mod/settings.php:717 +msgid "Confirm New Password:" +msgstr "Nieuw wachtwoord bevestigen:" + +#: ../../mod/settings.php:717 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" + +#: ../../mod/settings.php:719 ../../mod/settings.php:1057 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: ../../mod/settings.php:721 +msgid "Remove this account including all its channels" +msgstr "Dit account en al zijn kanalen verwijderen" + +#: ../../mod/settings.php:737 +msgid "Off" +msgstr "Uit" + +#: ../../mod/settings.php:737 +msgid "On" +msgstr "Aan" + +#: ../../mod/settings.php:744 +msgid "Additional Features" +msgstr "Extra functies" + +#: ../../mod/settings.php:768 +msgid "Connector Settings" +msgstr "Instellingen externe koppelingen" + +#: ../../mod/settings.php:807 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: ../../mod/settings.php:810 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (experimenteel)" + +#: ../../mod/settings.php:849 +msgid "Display Settings" +msgstr "Weergave-instellingen" + +#: ../../mod/settings.php:850 +msgid "Theme Settings" +msgstr "Thema-instellingen" + +#: ../../mod/settings.php:851 +msgid "Custom Theme Settings" +msgstr "Handmatige thema-instellingen" + +#: ../../mod/settings.php:852 +msgid "Content Settings" +msgstr "Inhoudsinstellingen" + +#: ../../mod/settings.php:858 +msgid "Display Theme:" +msgstr "Gebruik thema:" + +#: ../../mod/settings.php:859 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" + +#: ../../mod/settings.php:860 +msgid "Enable user zoom on mobile devices" +msgstr "Inzoomen op smartphones en tablets toestaan" + +#: ../../mod/settings.php:861 +msgid "Update browser every xx seconds" +msgstr "Ververs de webbrowser om de zoveel seconde" + +#: ../../mod/settings.php:861 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimaal 10 seconde, geen maximum" + +#: ../../mod/settings.php:862 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximaal aantal conversaties die per keer geladen worden:" + +#: ../../mod/settings.php:862 +msgid "Maximum of 100 items" +msgstr "Maximaal 100 conversaties" + +#: ../../mod/settings.php:863 +msgid "Show emoticons (smilies) as images" +msgstr "Toon emoticons (smilies) als afbeeldingen" + +#: ../../mod/settings.php:864 +msgid "Link post titles to source" +msgstr "Berichtkoppen naar originele locatie linken" + +#: ../../mod/settings.php:865 +msgid "System Page Layout Editor - (advanced)" +msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" + +#: ../../mod/settings.php:868 +msgid "Use blog/list mode on channel page" +msgstr "Gebruik blog/lijst-modus op kanaalpagina" + +#: ../../mod/settings.php:868 ../../mod/settings.php:869 +msgid "(comments displayed separately)" +msgstr "(reacties worden afzonderlijk weergeven)" + +#: ../../mod/settings.php:869 +msgid "Use blog/list mode on matrix page" +msgstr "Gebruik blog/lijst-modus op matrixpagina" + +#: ../../mod/settings.php:870 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" + +#: ../../mod/settings.php:870 ../../mod/settings.php:871 +msgid "click to expand content exceeding this height" +msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" + +#: ../../mod/settings.php:871 +msgid "Matrix page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op matrixpagina (in pixels)" + +#: ../../mod/settings.php:905 +msgid "Nobody except yourself" +msgstr "Niemand, behalve jezelf" + +#: ../../mod/settings.php:906 +msgid "Only those you specifically allow" +msgstr "Alleen connecties met uitdrukkelijke toestemming" + +#: ../../mod/settings.php:907 +msgid "Approved connections" +msgstr "Geaccepteerde connecties" + +#: ../../mod/settings.php:908 +msgid "Any connections" +msgstr "Alle connecties" + +#: ../../mod/settings.php:909 +msgid "Anybody on this website" +msgstr "Iedereen op deze hub" + +#: ../../mod/settings.php:910 +msgid "Anybody in this network" +msgstr "Iedereen in dit netwerk" + +#: ../../mod/settings.php:911 +msgid "Anybody authenticated" +msgstr "Geauthenticeerd" + +#: ../../mod/settings.php:912 +msgid "Anybody on the internet" +msgstr "Iedereen op het internet" + +#: ../../mod/settings.php:986 +msgid "Publish your default profile in the network directory" +msgstr "Publiceer je standaardprofiel in de kanalengids" + +#: ../../mod/settings.php:991 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" + +#: ../../mod/settings.php:1000 +msgid "Your channel address is" +msgstr "Jouw kanaaladres is" + +#: ../../mod/settings.php:1048 +msgid "Channel Settings" +msgstr "Kanaal-instellingen" + +#: ../../mod/settings.php:1055 +msgid "Basic Settings" +msgstr "Basis-instellingen" + +#: ../../mod/settings.php:1058 +msgid "Your Timezone:" +msgstr "Jouw tijdzone:" + +#: ../../mod/settings.php:1059 +msgid "Default Post Location:" +msgstr "Standaardlocatie bericht:" + +#: ../../mod/settings.php:1059 +msgid "Geographical location to display on your posts" +msgstr "Geografische locatie die bij het bericht moet worden vermeld" + +#: ../../mod/settings.php:1060 +msgid "Use Browser Location:" +msgstr "Locatie van webbrowser gebruiken:" + +#: ../../mod/settings.php:1062 +msgid "Adult Content" +msgstr "Inhoud voor volwassenen" + +#: ../../mod/settings.php:1062 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" + +#: ../../mod/settings.php:1064 +msgid "Security and Privacy Settings" +msgstr "Veiligheids- en privacy-instellingen" + +#: ../../mod/settings.php:1066 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." + +#: ../../mod/settings.php:1068 +msgid "Hide my online presence" +msgstr "Verberg mijn aanwezigheid" + +#: ../../mod/settings.php:1068 +msgid "Prevents displaying in your profile that you are online" +msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" + +#: ../../mod/settings.php:1070 +msgid "Simple Privacy Settings:" +msgstr "Eenvoudige privacy-instellingen:" + +#: ../../mod/settings.php:1071 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" + +#: ../../mod/settings.php:1072 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" + +#: ../../mod/settings.php:1073 +msgid "Private - default private, never open or public" +msgstr "Privé (standaard privé en nooit openbaar)" + +#: ../../mod/settings.php:1074 +msgid "Blocked - default blocked to/from everybody" +msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" + +#: ../../mod/settings.php:1076 +msgid "Allow others to tag your posts" +msgstr "Anderen toestaan om je berichten te taggen" + +#: ../../mod/settings.php:1076 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" + +#: ../../mod/settings.php:1078 +msgid "Advanced Privacy Settings" +msgstr "Geavanceerde privacy-instellingen" + +#: ../../mod/settings.php:1080 +msgid "Expire other channel content after this many days" +msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" + +#: ../../mod/settings.php:1080 +msgid "0 or blank prevents expiration" +msgstr "0 of leeg voorkomt het verlopen" + +#: ../../mod/settings.php:1081 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal connectieverzoeken per dag:" + +#: ../../mod/settings.php:1081 +msgid "May reduce spam activity" +msgstr "Kan eventuele spam verminderen" + +#: ../../mod/settings.php:1082 +msgid "Default Post Permissions" +msgstr "Standaard permissies voor nieuwe berichten" + +#: ../../mod/settings.php:1087 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" + +#: ../../mod/settings.php:1093 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: ../../mod/settings.php:1093 +msgid "Useful to reduce spamming" +msgstr "Kan eventuele spam verminderen" + +#: ../../mod/settings.php:1096 +msgid "Notification Settings" +msgstr "Notificatie-instellingen" + +#: ../../mod/settings.php:1097 +msgid "By default post a status message when:" +msgstr "Plaats automatisch een statusbericht wanneer:" + +#: ../../mod/settings.php:1098 +msgid "accepting a friend request" +msgstr "Een connectieverzoek wordt geaccepteerd" + +#: ../../mod/settings.php:1099 +msgid "joining a forum/community" +msgstr "Je lid wordt van een forum/groep" + +#: ../../mod/settings.php:1100 +msgid "making an interesting profile change" +msgstr "Er sprake is van een interessante profielwijziging" + +#: ../../mod/settings.php:1101 +msgid "Send a notification email when:" +msgstr "Verzend een notificatie per e-mail wanneer:" + +#: ../../mod/settings.php:1102 +msgid "You receive a connection request" +msgstr "Je een connectieverzoek ontvangt" + +#: ../../mod/settings.php:1103 +msgid "Your connections are confirmed" +msgstr "Jouw connecties zijn bevestigd" + +#: ../../mod/settings.php:1104 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op jouw kanaal heeft geschreven" + +#: ../../mod/settings.php:1105 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: ../../mod/settings.php:1106 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: ../../mod/settings.php:1107 +msgid "You receive a friend suggestion" +msgstr "Je een kanaalvoorstel ontvangt" + +#: ../../mod/settings.php:1108 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: ../../mod/settings.php:1109 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je bent in een bericht aangestoten/gepord/etc." + +#: ../../mod/settings.php:1112 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" + +#: ../../mod/settings.php:1114 +msgid "Unseen matrix activity" +msgstr "Niet bekeken matrix-activiteit" + +#: ../../mod/settings.php:1115 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" + +#: ../../mod/settings.php:1116 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" + +#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 +#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 +msgid "Recommended" +msgstr "Aanbevolen" + +#: ../../mod/settings.php:1117 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" + +#: ../../mod/settings.php:1118 +msgid "Events today" +msgstr "Gebeurtissen van vandaag" + +#: ../../mod/settings.php:1119 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" + +#: ../../mod/settings.php:1119 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" + +#: ../../mod/settings.php:1120 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" + +#: ../../mod/settings.php:1121 +msgid "System info messages" +msgstr "Systeemmededelingen" + +#: ../../mod/settings.php:1122 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" + +#: ../../mod/settings.php:1123 +msgid "New connections" +msgstr "Nieuwe connecties" + +#: ../../mod/settings.php:1124 +msgid "System Registrations" +msgstr "Nieuwe accountregistraties op deze hub" + +#: ../../mod/settings.php:1125 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" + +#: ../../mod/settings.php:1127 +msgid "Notify me of events this many days in advance" +msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" + +#: ../../mod/settings.php:1127 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" + +#: ../../mod/settings.php:1129 +msgid "Advanced Account/Page Type Settings" +msgstr "Instellingen geavanceerd account/paginatype" + +#: ../../mod/settings.php:1130 +msgid "Change the behaviour of this account for special situations" +msgstr "Verander het gedrag van dit account voor speciale situaties" + +#: ../../mod/settings.php:1133 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" + +#: ../../mod/settings.php:1134 +msgid "Miscellaneous Settings" +msgstr "Diverse instellingen" + +#: ../../mod/settings.php:1136 +msgid "Personal menu to display in your channel pages" +msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" + +#: ../../mod/settings.php:1138 +msgid "Remove this channel." +msgstr "Verwijder dit kanaal." + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- kies map -" + +#: ../../mod/siteinfo.php:112 +#, php-format +msgid "Version %s" +msgstr "Versie %s" + +#: ../../mod/siteinfo.php:133 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plug-ins/add-ons/apps:" + +#: ../../mod/siteinfo.php:146 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plug-ins/add-ons/apps" + +#: ../../mod/siteinfo.php:156 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." + +#: ../../mod/siteinfo.php:158 +msgid "Tag: " +msgstr "Tag: " + +#: ../../mod/siteinfo.php:160 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" + +#: ../../mod/siteinfo.php:163 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" + +#: ../../mod/siteinfo.php:164 +msgid "" +"Please visit redmatrix.me to learn more" +" about $Projectname." +msgstr "Bezoek redmatrix.me om meer over $Projectname te leren." + +#: ../../mod/siteinfo.php:165 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" + +#: ../../mod/siteinfo.php:167 +msgid "$projectname issues" +msgstr "$projectname-issues" + +#: ../../mod/siteinfo.php:168 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - punt - com" + +#: ../../mod/siteinfo.php:170 +msgid "Site Administrators" +msgstr "Hubbeheerders: " + +#: ../../mod/impel.php:191 #, php-format msgid "%s element installed" msgstr "%s onderdeel geïnstalleerd" +#: ../../mod/impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Installatie %s-element mislukt" + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." + +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" + +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "Geen berichten" + +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D, j M Y - G:i" + +#: ../../mod/ping.php:263 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" + +#: ../../mod/ping.php:314 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" + +#: ../../mod/ping.php:355 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" + +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " + +#: ../../mod/item.php:440 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" + +#: ../../mod/item.php:480 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." + +#: ../../mod/item.php:914 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." + +#: ../../mod/item.php:1146 +msgid "Unable to obtain post information from database." +msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." + +#: ../../mod/item.php:1153 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." + +#: ../../mod/item.php:1160 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." + +#: ../../mod/setup.php:187 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Server - Setup" + +#: ../../mod/setup.php:191 +msgid "Could not connect to database." +msgstr "Could not connect to database." + +#: ../../mod/setup.php:195 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." + +#: ../../mod/setup.php:202 +msgid "Could not create table." +msgstr "Could not create table." + +#: ../../mod/setup.php:207 +msgid "Your site database has been installed." +msgstr "Your hub database has been installed." + +#: ../../mod/setup.php:211 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." + +#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Please see the file \"install/INSTALL.txt\"." + +#: ../../mod/setup.php:277 +msgid "System check" +msgstr "System check" + +#: ../../mod/setup.php:282 +msgid "Check again" +msgstr "Check again" + +#: ../../mod/setup.php:304 +msgid "Database connection" +msgstr "Database connection" + +#: ../../mod/setup.php:305 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "In order to install $Projectname we need to know how to connect to your database." + +#: ../../mod/setup.php:306 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." + +#: ../../mod/setup.php:307 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." + +#: ../../mod/setup.php:311 +msgid "Database Server Name" +msgstr "Database Server Name" + +#: ../../mod/setup.php:311 +msgid "Default is localhost" +msgstr "Default is localhost" + +#: ../../mod/setup.php:312 +msgid "Database Port" +msgstr "Database Port" + +#: ../../mod/setup.php:312 +msgid "Communication port number - use 0 for default" +msgstr "Communication port number - use 0 for default" + +#: ../../mod/setup.php:313 +msgid "Database Login Name" +msgstr "Database Login Name" + +#: ../../mod/setup.php:314 +msgid "Database Login Password" +msgstr "Database Login Password" + +#: ../../mod/setup.php:315 +msgid "Database Name" +msgstr "Database Name" + +#: ../../mod/setup.php:316 +msgid "Database Type" +msgstr "Database Type" + +#: ../../mod/setup.php:318 ../../mod/setup.php:359 +msgid "Site administrator email address" +msgstr "Hub administrator email address" + +#: ../../mod/setup.php:318 ../../mod/setup.php:359 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Your account email address must match this in order to use the web admin panel." + +#: ../../mod/setup.php:319 ../../mod/setup.php:361 +msgid "Website URL" +msgstr "Hub URL" + +#: ../../mod/setup.php:319 ../../mod/setup.php:361 +msgid "Please use SSL (https) URL if available." +msgstr "Please use SSL (https) URL if available." + +#: ../../mod/setup.php:321 ../../mod/setup.php:363 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your hub" + +#: ../../mod/setup.php:348 +msgid "Site settings" +msgstr "Hub settings" + +#: ../../mod/setup.php:413 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." + +#: ../../mod/setup.php:414 +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 "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." + +#: ../../mod/setup.php:418 +msgid "PHP executable path" +msgstr "PHP executable path" + +#: ../../mod/setup.php:418 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." + +#: ../../mod/setup.php:423 +msgid "Command line PHP" +msgstr "Command line PHP" + +#: ../../mod/setup.php:432 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." + +#: ../../mod/setup.php:433 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." + +#: ../../mod/setup.php:436 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/setup.php:454 +#, 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 "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." + +#: ../../mod/setup.php:459 +msgid "You can adjust these settings in the servers php.ini." +msgstr "You can adjust these settings in the servers php.ini." + +#: ../../mod/setup.php:461 +msgid "PHP upload limits" +msgstr "PHP upload limits" + +#: ../../mod/setup.php:484 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" + +#: ../../mod/setup.php:485 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/setup.php:488 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" + +#: ../../mod/setup.php:500 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" + +#: ../../mod/setup.php:501 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" + +#: ../../mod/setup.php:502 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" + +#: ../../mod/setup.php:503 +msgid "mysqli or postgres PHP module" +msgstr "mysqli or postgres PHP module" + +#: ../../mod/setup.php:504 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" + +#: ../../mod/setup.php:505 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP module" + +#: ../../mod/setup.php:506 +msgid "xml PHP module" +msgstr "xml PHP module" + +#: ../../mod/setup.php:510 ../../mod/setup.php:512 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: ../../mod/setup.php:510 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." + +#: ../../mod/setup.php:516 ../../mod/setup.php:519 +msgid "proc_open" +msgstr "proc_open" + +#: ../../mod/setup.php:516 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" + +#: ../../mod/setup.php:524 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." + +#: ../../mod/setup.php:528 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." + +#: ../../mod/setup.php:532 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." + +#: ../../mod/setup.php:536 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: mysqli or postgres PHP module required but neither are installed." + +#: ../../mod/setup.php:540 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." + +#: ../../mod/setup.php:544 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: mcrypt PHP module required but not installed." + +#: ../../mod/setup.php:548 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: xml PHP module required for DAV but not installed." + +#: ../../mod/setup.php:566 +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 "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." + +#: ../../mod/setup.php:567 +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 "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." + +#: ../../mod/setup.php:568 +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 "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." + +#: ../../mod/setup.php:569 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." + +#: ../../mod/setup.php:572 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" + +#: ../../mod/setup.php:586 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." + +#: ../../mod/setup.php:587 +#, 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 "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." + +#: ../../mod/setup.php:588 ../../mod/setup.php:609 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." + +#: ../../mod/setup.php:589 +#, 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 "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." + +#: ../../mod/setup.php:592 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" + +#: ../../mod/setup.php:608 +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 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" + +#: ../../mod/setup.php:612 +msgid "store is writable" +msgstr "store is writable" + +#: ../../mod/setup.php:645 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." + +#: ../../mod/setup.php:646 +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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" + +#: ../../mod/setup.php:647 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." + +#: ../../mod/setup.php:648 +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 "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." + +#: ../../mod/setup.php:649 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." + +#: ../../mod/setup.php:650 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Providers are available that issue free certificates which are browser-valid." + +#: ../../mod/setup.php:652 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" + +#: ../../mod/setup.php:658 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " + +#: ../../mod/setup.php:661 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" + +#: ../../mod/setup.php:670 +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 "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." + +#: ../../mod/setup.php:694 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." + +#: ../../mod/setup.php:728 +msgid "

What next

" +msgstr "

Wat nu

" + +#: ../../mod/setup.php:729 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." + +#: ../../mod/dav.php:121 +msgid "$Projectname channel" +msgstr "$Projectname-kanaal" + +#: ../../mod/directory.php:234 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d beoordeling" +msgstr[1] "%d beoordelingen" + +#: ../../mod/directory.php:245 +msgid "Gender: " +msgstr "Geslacht:" + +#: ../../mod/directory.php:247 +msgid "Status: " +msgstr "Status: " + +#: ../../mod/directory.php:249 +msgid "Homepage: " +msgstr "Homepagina: " + +#: ../../mod/directory.php:317 +msgid "Public Forum:" +msgstr "Openbaar forum:" + +#: ../../mod/directory.php:320 +msgid "Keywords: " +msgstr "Trefwoorden: " + +#: ../../mod/directory.php:323 +msgid "Don't suggest" +msgstr "Niet voorstellen" + +#: ../../mod/directory.php:325 +msgid "Common connections:" +msgstr "Gemeenschappelijke connecties:" + +#: ../../mod/directory.php:374 +msgid "Global Directory" +msgstr "Volledige kanalengids" + +#: ../../mod/directory.php:374 +msgid "Local Directory" +msgstr "Lokale kanalengids" + +#: ../../mod/directory.php:380 +msgid "Finding:" +msgstr "Gezocht naar:" + +#: ../../mod/directory.php:385 +msgid "next page" +msgstr "volgende pagina" + +#: ../../mod/directory.php:385 +msgid "previous page" +msgstr "vorige pagina" + +#: ../../mod/directory.php:386 +msgid "Sort options" +msgstr "Sorteeropties" + +#: ../../mod/directory.php:387 +msgid "Alphabetic" +msgstr "Alfabetisch" + +#: ../../mod/directory.php:388 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" + +#: ../../mod/directory.php:389 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" + +#: ../../mod/directory.php:390 +msgid "Oldest to Newest" +msgstr "Oud naar nieuw" + +#: ../../mod/directory.php:407 +msgid "No entries (some entries may be hidden)." +msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." + +#: ../../mod/photos.php:78 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." + +#: ../../mod/photos.php:98 +msgid "Album not found." +msgstr "Album niet gevonden." + +#: ../../mod/photos.php:120 ../../mod/photos.php:655 +msgid "Delete Album" +msgstr "Verwijder album" + +#: ../../mod/photos.php:160 ../../mod/photos.php:942 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: ../../mod/photos.php:452 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: ../../mod/photos.php:496 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: ../../mod/photos.php:535 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." + +#: ../../mod/photos.php:538 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." + +#: ../../mod/photos.php:562 +msgid "Upload Photos" +msgstr "Foto's uploaden" + +#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" + +#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" + +#: ../../mod/photos.php:568 +msgid "Create a status post for this upload" +msgstr "Plaats een bericht voor deze upload." + +#: ../../mod/photos.php:596 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" + +#: ../../mod/photos.php:637 ../../mod/photos.php:1169 +#: ../../mod/photos.php:1185 +msgid "Contact Photos" +msgstr "Connectiefoto's" + +#: ../../mod/photos.php:661 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" + +#: ../../mod/photos.php:663 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" + +#: ../../mod/photos.php:687 ../../mod/photos.php:1217 +msgid "View Photo" +msgstr "Foto weergeven" + +#: ../../mod/photos.php:716 +msgid "Edit Album" +msgstr "Album bewerken" + +#: ../../mod/photos.php:761 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." + +#: ../../mod/photos.php:763 +msgid "Photo not available" +msgstr "Foto niet aanwezig" + +#: ../../mod/photos.php:821 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" + +#: ../../mod/photos.php:828 +msgid "Private Photo" +msgstr "Privéfoto" + +#: ../../mod/photos.php:843 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" + +#: ../../mod/photos.php:887 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Verwijderen" + +#: ../../mod/photos.php:921 +msgid "Edit photo" +msgstr "Foto bewerken" + +#: ../../mod/photos.php:923 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" + +#: ../../mod/photos.php:924 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" + +#: ../../mod/photos.php:931 +msgid "Caption" +msgstr "Bijschrift" + +#: ../../mod/photos.php:933 +msgid "Add a Tag" +msgstr "Tag toevoegen" + +#: ../../mod/photos.php:937 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" + +#: ../../mod/photos.php:940 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" + +#: ../../mod/photos.php:1132 +msgid "In This Photo:" +msgstr "Op deze foto:" + +#: ../../mod/photos.php:1137 +msgid "Map" +msgstr "Kaart" + +#: ../../mod/photos.php:1223 +msgid "View Album" +msgstr "Album weergeven" + +#: ../../mod/photos.php:1246 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: ../../mod/network.php:91 +msgid "No such group" +msgstr "Collectie niet gevonden" + +#: ../../mod/network.php:129 +msgid "No such channel" +msgstr "Niet zo'n kanaal" + +#: ../../mod/network.php:143 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" + +#: ../../mod/network.php:198 +msgid "Collection is empty" +msgstr "Collectie is leeg" + +#: ../../mod/network.php:207 +msgid "Collection: " +msgstr "Collectie: " + +#: ../../mod/network.php:226 +msgid "Connection: " +msgstr "Connectie: " + +#: ../../mod/network.php:233 +msgid "Invalid connection." +msgstr "Ongeldige connectie." + #: ../../mod/profiles.php:18 ../../mod/profiles.php:174 #: ../../mod/profiles.php:231 ../../mod/profiles.php:600 msgid "Profile not found." @@ -6535,26 +8610,18 @@ msgstr "Religie" msgid "Political Views" msgstr "Politieke overtuigingen" -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" -msgstr "Geslacht" - #: ../../mod/profiles.php:435 msgid "Sexual Preference" msgstr "Seksuele voorkeur" #: ../../mod/profiles.php:439 msgid "Homepage" -msgstr "Homepage" +msgstr "Homepagina" #: ../../mod/profiles.php:443 msgid "Interests" msgstr "Interesses" -#: ../../mod/profiles.php:447 ../../mod/admin.php:953 -msgid "Address" -msgstr "Kanaaladres" - #: ../../mod/profiles.php:537 msgid "Profile updated." msgstr "Profiel bijgewerkt" @@ -6653,7 +8720,7 @@ msgstr "Sinds [datum]:" #: ../../mod/profiles.php:692 msgid "Homepage URL:" -msgstr "Adres homepage:" +msgstr "URL homepagina:" #: ../../mod/profiles.php:695 msgid "Religious Views:" @@ -6719,7 +8786,7 @@ msgstr "School/onderwijs" msgid "This is your default profile." msgstr "Dit is jouw standaardprofiel" -#: ../../mod/profiles.php:728 ../../mod/directory.php:218 +#: ../../mod/profiles.php:728 msgid "Age: " msgstr "Leeftijd:" @@ -6735,2206 +8802,205 @@ msgstr "Dingen aan je profiel toevoegen" msgid "Include desirable objects in your profile" msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Geen beoordelingen" +#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 +msgid "Block Name" +msgstr "Bloknaam" -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Waarderingen" +#: ../../mod/blocks.php:149 +msgid "Block Title" +msgstr "Bloktitel" -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Waardering: " +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Website: " +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Bron aangemaakt." -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Omschrijving: " +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Bron aangemaakt." -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" -msgstr "Bron van item" +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" -#: ../../mod/mitem.php:51 -msgid "Unable to create element." -msgstr "Niet in staat om onderdeel aan te maken." +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" -#: ../../mod/mitem.php:74 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Nieuwe bron" -#: ../../mod/mitem.php:89 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." +#: ../../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 "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." -#: ../../mod/mitem.php:151 ../../mod/mitem.php:220 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importeer alleen inhoud met deze woorden (één per regel)" -#: ../../mod/mitem.php:154 ../../mod/mitem.php:168 -msgid "Link Name" -msgstr "Linknaam" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Laat leeg om alle openbare inhoud te importeren" -#: ../../mod/mitem.php:155 ../../mod/mitem.php:169 -msgid "Link Target" -msgstr "Linkdoel" +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Bron niet gevonden" -#: ../../mod/mitem.php:156 ../../mod/mitem.php:226 -msgid "Use RedMatrix magic-auth if available" -msgstr "Gebruik RedMatrix' magic-auth wanneer beschikbaar" +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Bron bewerken" -#: ../../mod/mitem.php:157 ../../mod/mitem.php:227 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Bron verwijderen" -#: ../../mod/mitem.php:158 ../../mod/mitem.php:228 -msgid "Order in list" -msgstr "Volgorde in lijst" +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Bron verwijderd" -#: ../../mod/mitem.php:158 ../../mod/mitem.php:228 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Verwijderen bron mislukt." -#: ../../mod/mitem.php:159 -msgid "Submit and finish" -msgstr "Opslaan en afsluiten" +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "Paginatitel" -#: ../../mod/mitem.php:160 -msgid "Submit and continue" -msgstr "Opslaan en doorgaan" +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" -#: ../../mod/mitem.php:166 -msgid "Menu:" -msgstr "Menu:" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" -#: ../../mod/mitem.php:172 -msgid "Edit menu" -msgstr "Menu bewerken" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." -#: ../../mod/mitem.php:175 -msgid "Edit element" -msgstr "Onderdeel bewerken" +#: ../../mod/like.php:21 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account te registreren om verder te kunnen gaan." -#: ../../mod/mitem.php:176 -msgid "Drop element" -msgstr "Onderdeel verwijderen" +#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 +msgid "Invalid request." +msgstr "Ongeldig verzoek" -#: ../../mod/mitem.php:177 -msgid "New element" -msgstr "Nieuw element" +#: ../../mod/like.php:143 +msgid "thing" +msgstr "ding" -#: ../../mod/mitem.php:178 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" +#: ../../mod/like.php:189 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." -#: ../../mod/mitem.php:179 -msgid "Add menu element" -msgstr "Menu-element toevoegen" +#: ../../mod/like.php:231 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" -#: ../../mod/mitem.php:180 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" - -#: ../../mod/mitem.php:181 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" - -#: ../../mod/mitem.php:198 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." - -#: ../../mod/mitem.php:209 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." - -#: ../../mod/mitem.php:211 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." - -#: ../../mod/mitem.php:218 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" - -#: ../../mod/mitem.php:224 -msgid "Link text" -msgstr "Linktekst" - -#: ../../mod/mitem.php:225 -msgid "URL of link" -msgstr "URL of link" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." - -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:286 +#: ../../mod/like.php:401 #, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Welkom %s. Authenticatie op afstand geslaagd." +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s is het eens met %2$s's %3$s" -#: ../../mod/directory.php:224 +#: ../../mod/like.php:403 #, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d beoordeling" -msgstr[1] "%d beoordelingen" +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s is het niet eens met %2$s's %3$s" -#: ../../mod/directory.php:236 -msgid "Gender: " -msgstr "Geslacht:" - -#: ../../mod/directory.php:238 -msgid "Status: " -msgstr "Status: " - -#: ../../mod/directory.php:240 -msgid "Homepage: " -msgstr "Homepage: " - -#: ../../mod/directory.php:243 -msgid "Hometown: " -msgstr "Oorspronkelijk uit: " - -#: ../../mod/directory.php:245 -msgid "About: " -msgstr "Over: " - -#: ../../mod/directory.php:303 -msgid "Public Forum:" -msgstr "Openbaar forum:" - -#: ../../mod/directory.php:306 -msgid "Keywords: " -msgstr "Trefwoorden: " - -#: ../../mod/directory.php:311 +#: ../../mod/like.php:405 #, php-format -msgid "Common connections: %s" -msgstr "Gemeenschappelijke connecties: %s" +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" -#: ../../mod/directory.php:363 -msgid "Finding:" -msgstr "Gezocht naar:" - -#: ../../mod/directory.php:368 -msgid "next page" -msgstr "volgende pagina" - -#: ../../mod/directory.php:368 -msgid "previous page" -msgstr "vorige pagina" - -#: ../../mod/directory.php:385 -msgid "No entries (some entries may be hidden)." -msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." - -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Kanaal exporteren" - -#: ../../mod/uexport.php:35 -msgid "" -"Export your basic channel information to a small file. This acts as a " -"backup of your connections, permissions, profile and basic data, which can " -"be used to import your data to a new hub, but\tdoes not contain your " -"content." -msgstr "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." - -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Inhoud exporteren" - -#: ../../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 "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." - -#: ../../mod/viewconnections.php:62 -msgid "No connections." -msgstr "Geen connecties." - -#: ../../mod/viewconnections.php:75 +#: ../../mod/like.php:407 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bezoek het profiel van %s [%s]" +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s is aanwezig op %2$s's %3$s" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Thema-instellingen bijgewerkt." - -#: ../../mod/admin.php:93 ../../mod/admin.php:445 -msgid "Site" -msgstr "Hub-instellingen" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Accounts" - -#: ../../mod/admin.php:95 ../../mod/admin.php:945 -msgid "Channels" -msgstr "Kanalen" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1036 ../../mod/admin.php:1076 -msgid "Plugins" -msgstr "Plug-ins" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1236 ../../mod/admin.php:1270 -msgid "Themes" -msgstr "Thema's" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Inspecteer berichtenwachtrij" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Profielconfiguratie" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "Database-updates" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1355 -msgid "Logs" -msgstr "Logboeken" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Plug-in-opties" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# accounts" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# geblokkeerde accounts" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "# verlopen accounts" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "# accounts die nog moeten verlopen" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# Kanalen" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "# primair" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# klonen" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "Berichtenwachtrij" - -#: ../../mod/admin.php:240 ../../mod/admin.php:444 ../../mod/admin.php:539 -#: ../../mod/admin.php:808 ../../mod/admin.php:944 ../../mod/admin.php:1035 -#: ../../mod/admin.php:1075 ../../mod/admin.php:1235 ../../mod/admin.php:1269 -#: ../../mod/admin.php:1354 -msgid "Administration" -msgstr "Beheer" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "Samenvatting" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Geregistreerde accounts" - -#: ../../mod/admin.php:245 ../../mod/admin.php:543 -msgid "Pending registrations" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Geregistreerde kanalen" - -#: ../../mod/admin.php:247 ../../mod/admin.php:544 -msgid "Active plugins" -msgstr "Ingeschakelde plug-ins" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Versie" - -#: ../../mod/admin.php:359 -msgid "Site settings updated." -msgstr "Hub-instellingen bijgewerkt." - -#: ../../mod/admin.php:398 -msgid "experimental" -msgstr "experimenteel" - -#: ../../mod/admin.php:400 -msgid "unsupported" -msgstr "Niet ondersteund" - -#: ../../mod/admin.php:425 -msgid "Yes - with approval" -msgstr "Ja - met goedkeuring" - -#: ../../mod/admin.php:431 -msgid "My site is not a public server" -msgstr "Mijn $Projectname-hub is niet openbaar" - -#: ../../mod/admin.php:432 -msgid "My site has paid access only" -msgstr "Mijn $Projectname-hub kent alleen betaalde toegang" - -#: ../../mod/admin.php:433 -msgid "My site has free access only" -msgstr "Mijn $Projectname-hub kent alleen gratis toegang" - -#: ../../mod/admin.php:434 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" - -#: ../../mod/admin.php:447 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registratie" - -#: ../../mod/admin.php:448 -msgid "File upload" -msgstr "Bestand uploaden" - -#: ../../mod/admin.php:449 -msgid "Policies" -msgstr "Beleid" - -#: ../../mod/admin.php:454 -msgid "Site name" -msgstr "Naam van deze $Projectname-hub" - -#: ../../mod/admin.php:455 -msgid "Banner/Logo" -msgstr "Banner/logo" - -#: ../../mod/admin.php:456 -msgid "Administrator Information" -msgstr "Informatie over de beheerder van deze hub" - -#: ../../mod/admin.php:456 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." - -#: ../../mod/admin.php:457 -msgid "System language" -msgstr "Standaardtaal" - -#: ../../mod/admin.php:458 -msgid "System theme" -msgstr "Standaardthema" - -#: ../../mod/admin.php:458 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standaardthema voor $Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen" - -#: ../../mod/admin.php:459 -msgid "Mobile system theme" -msgstr "Standaardthema voor mobiel" - -#: ../../mod/admin.php:459 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" - -#: ../../mod/admin.php:461 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-protocol inschakelen" - -#: ../../mod/admin.php:461 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Communiceer met Diaspora en Friendica (experimenteel)" - -#: ../../mod/admin.php:462 -msgid "Allow Feeds as Connections" -msgstr "Sta feeds toe als connecties" - -#: ../../mod/admin.php:462 -msgid "(Heavy system resource usage)" -msgstr "(sterk negatieve invloed op systeembronnen hub)" - -#: ../../mod/admin.php:463 -msgid "Maximum image size" -msgstr "Maximale grootte van afbeeldingen" - -#: ../../mod/admin.php:463 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." - -#: ../../mod/admin.php:464 -msgid "Does this site allow new member registration?" -msgstr "Staat deze hub nieuwe accounts toe?" - -#: ../../mod/admin.php:465 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Wat voor soort accounts biedt deze $Projectname-hub aan? Kies wat het meest in de buurt komt." - -#: ../../mod/admin.php:466 -msgid "Register text" -msgstr "Tekst tijdens registratie" - -#: ../../mod/admin.php:466 -msgid "Will be displayed prominently on the registration page." -msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." - -#: ../../mod/admin.php:467 -msgid "Accounts abandoned after x days" -msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" - -#: ../../mod/admin.php:467 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." - -#: ../../mod/admin.php:468 -msgid "Allowed friend domains" -msgstr "Toegestane domeinen" - -#: ../../mod/admin.php:468 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze $Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." - -#: ../../mod/admin.php:469 -msgid "Allowed email domains" -msgstr "Toegestane e-maildomeinen" - -#: ../../mod/admin.php:469 -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 "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." - -#: ../../mod/admin.php:470 -msgid "Not allowed email domains" -msgstr "Niet toegestane e-maildomeinen" - -#: ../../mod/admin.php:470 -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 "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " - -#: ../../mod/admin.php:471 -msgid "Block public" -msgstr "Openbare toegang blokkeren" - -#: ../../mod/admin.php:471 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde leden." - -#: ../../mod/admin.php:472 -msgid "Verify Email Addresses" -msgstr "E-mailadres verifieren" - -#: ../../mod/admin.php:472 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." - -#: ../../mod/admin.php:473 -msgid "Force publish" -msgstr "Dwing kanaalvermelding af" - -#: ../../mod/admin.php:473 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." - -#: ../../mod/admin.php:474 -msgid "Disable discovery tab" -msgstr "Ontdekkingstab" - -#: ../../mod/admin.php:474 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen." - -#: ../../mod/admin.php:475 -msgid "No login on Homepage" -msgstr "Geen inlogformulier op de homepage" - -#: ../../mod/admin.php:475 -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 "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde bezoekers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze $Projectname-hub als homepage gebruikt)" - -#: ../../mod/admin.php:477 -msgid "Proxy user" -msgstr "Gebruikersnaam proxy" - -#: ../../mod/admin.php:478 -msgid "Proxy URL" -msgstr "URL proxy" - -#: ../../mod/admin.php:479 -msgid "Network timeout" -msgstr "Netwerktimeout" - -#: ../../mod/admin.php:479 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" - -#: ../../mod/admin.php:480 -msgid "Delivery interval" -msgstr "Afleveringsinterval" - -#: ../../mod/admin.php:480 -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 "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." - -#: ../../mod/admin.php:481 -msgid "Poll interval" -msgstr "Poll-interval" - -#: ../../mod/admin.php:481 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." - -#: ../../mod/admin.php:482 -msgid "Maximum Load Average" -msgstr "Maximaal gemiddelde systeembelasting" - -#: ../../mod/admin.php:482 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." - -#: ../../mod/admin.php:483 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands matrix/netwerk-pagina wordt verwijderd." - -#: ../../mod/admin.php:483 -msgid "0 for no expiration of imported content" -msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." - -#: ../../mod/admin.php:531 -msgid "No server found" -msgstr "Geen hub gevonden" - -#: ../../mod/admin.php:538 ../../mod/admin.php:822 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:538 -msgid "for channel" -msgstr "voor kanaal" - -#: ../../mod/admin.php:538 -msgid "on server" -msgstr "op hub" - -#: ../../mod/admin.php:538 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:540 -msgid "Server" -msgstr "Hubbeheer" - -#: ../../mod/admin.php:557 -msgid "Update has been marked successful" -msgstr "Update is als succesvol gemarkeerd" - -#: ../../mod/admin.php:567 +#: ../../mod/like.php:409 #, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s is niet aanwezig op %2$s's %3$s" -#: ../../mod/admin.php:570 +#: ../../mod/like.php:411 #, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s was geslaagd." +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" -#: ../../mod/admin.php:574 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." +#: ../../mod/like.php:507 +msgid "Action completed." +msgstr "Actie voltooid" -#: ../../mod/admin.php:577 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-functie %s kon niet gevonden worden." +#: ../../mod/like.php:508 +msgid "Thank you." +msgstr "Bedankt" -#: ../../mod/admin.php:593 -msgid "No failed updates." -msgstr "Geen mislukte updates." +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Tag verwijderd" -#: ../../mod/admin.php:597 -msgid "Failed Updates" -msgstr "Mislukte updates" +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Verwijder item-tag" -#: ../../mod/admin.php:599 -msgid "Mark success (if update was manually applied)" -msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Kies een tag om te verwijderen" -#: ../../mod/admin.php:600 -msgid "Attempt to execute this update step automatically" -msgstr "Poging om deze stap van de update automatisch uit te voeren." - -#: ../../mod/admin.php:632 -msgid "Queue Statistics" -msgstr "Wachtrij-statistieken" - -#: ../../mod/admin.php:633 -msgid "Total Entries" -msgstr "Aantal vermeldingen" - -#: ../../mod/admin.php:634 -msgid "Priority" -msgstr "Prioriteit" - -#: ../../mod/admin.php:635 -msgid "Destination URL" -msgstr "Doel-URL" - -#: ../../mod/admin.php:636 -msgid "Mark hub permanently offline" -msgstr "Hub als permanent offline markeren" - -#: ../../mod/admin.php:637 -msgid "Empty queue for this hub" -msgstr "Berichtenwachtrij voor deze hub legen" - -#: ../../mod/admin.php:638 -msgid "Last known contact" -msgstr "Voor het laatst contact" - -#: ../../mod/admin.php:674 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s account geblokkeerd/gedeblokkeerd" -msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" - -#: ../../mod/admin.php:682 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s account verwijderd" -msgstr[1] "%s accounts verwijderd" - -#: ../../mod/admin.php:718 -msgid "Account not found" -msgstr "Account niet gevonden" - -#: ../../mod/admin.php:738 -#, php-format -msgid "User '%s' blocked" -msgstr "Lid '%s' geblokkeerd" - -#: ../../mod/admin.php:746 -#, php-format -msgid "User '%s' unblocked" -msgstr "Account '%s' gedeblokkeerd" - -#: ../../mod/admin.php:809 ../../mod/admin.php:821 -msgid "Users" -msgstr "Accounts" - -#: ../../mod/admin.php:811 ../../mod/admin.php:947 -msgid "select all" -msgstr "alles selecteren" - -#: ../../mod/admin.php:812 -msgid "User registrations waiting for confirm" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../mod/admin.php:813 -msgid "Request date" -msgstr "Tijd/datum verzoek" - -#: ../../mod/admin.php:814 -msgid "No registrations." -msgstr "Geen verzoeken." - -#: ../../mod/admin.php:815 -msgid "Approve" -msgstr "Goedkeuren" - -#: ../../mod/admin.php:816 -msgid "Deny" -msgstr "Afkeuren" - -#: ../../mod/admin.php:818 ../../mod/connedit.php:517 -#: ../../mod/connedit.php:720 -msgid "Block" -msgstr "Blokkeren" - -#: ../../mod/admin.php:819 ../../mod/connedit.php:517 -#: ../../mod/connedit.php:720 -msgid "Unblock" -msgstr "Deblokkeren" - -#: ../../mod/admin.php:822 -msgid "Register date" -msgstr "Geregistreerd" - -#: ../../mod/admin.php:822 -msgid "Last login" -msgstr "Laatste keer ingelogd" - -#: ../../mod/admin.php:822 -msgid "Expires" -msgstr "Verloopt" - -#: ../../mod/admin.php:822 -msgid "Service Class" -msgstr "Abonnementen" - -#: ../../mod/admin.php:824 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" - -#: ../../mod/admin.php:825 -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 "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" - -#: ../../mod/admin.php:859 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanaal gecensureerd/ongecensureerd" -msgstr[1] "%s kanalen gecensureerd/ongecensureerd" - -#: ../../mod/admin.php:866 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanaal verwijderd" -msgstr[1] "%s kanalen verwijderd" - -#: ../../mod/admin.php:886 -msgid "Channel not found" -msgstr "Kanaal niet gevonden" - -#: ../../mod/admin.php:897 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanaal '%s' verwijderd" - -#: ../../mod/admin.php:908 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanaal '%s' ongecensureerd" - -#: ../../mod/admin.php:908 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanaal '%s' gecensureerd" - -#: ../../mod/admin.php:949 -msgid "Censor" -msgstr "Censureren" - -#: ../../mod/admin.php:950 -msgid "Uncensor" -msgstr "Niet censureren" - -#: ../../mod/admin.php:953 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:955 -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 "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" - -#: ../../mod/admin.php:956 -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 "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" - -#: ../../mod/admin.php:996 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-in %s uitgeschakeld." - -#: ../../mod/admin.php:1000 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-in %s ingeschakeld" - -#: ../../mod/admin.php:1010 ../../mod/admin.php:1208 -msgid "Disable" -msgstr "Uitschakelen" - -#: ../../mod/admin.php:1013 ../../mod/admin.php:1210 -msgid "Enable" -msgstr "Inschakelen" - -#: ../../mod/admin.php:1037 ../../mod/admin.php:1237 -msgid "Toggle" -msgstr "Omschakelen" - -#: ../../mod/admin.php:1045 ../../mod/admin.php:1247 -msgid "Author: " -msgstr "Auteur: " - -#: ../../mod/admin.php:1046 ../../mod/admin.php:1248 -msgid "Maintainer: " -msgstr "Beheerder: " - -#: ../../mod/admin.php:1173 -msgid "No themes found." -msgstr "Geen thema's gevonden" - -#: ../../mod/admin.php:1229 -msgid "Screenshot" -msgstr "Schermafdruk" - -#: ../../mod/admin.php:1275 -msgid "[Experimental]" -msgstr "[Experimenteel]" - -#: ../../mod/admin.php:1276 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" - -#: ../../mod/admin.php:1300 -msgid "Log settings updated." -msgstr "Logboek-instellingen bijgewerkt." - -#: ../../mod/admin.php:1357 -msgid "Clear" -msgstr "Leegmaken" - -#: ../../mod/admin.php:1363 -msgid "Debugging" -msgstr "Debuggen" - -#: ../../mod/admin.php:1364 -msgid "Log file" -msgstr "Logbestand" - -#: ../../mod/admin.php:1364 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je $Projectname-installatie." - -#: ../../mod/admin.php:1365 -msgid "Log level" -msgstr "Logniveau" - -#: ../../mod/admin.php:1411 -msgid "New Profile Field" -msgstr "Nieuw profielveld" - -#: ../../mod/admin.php:1412 ../../mod/admin.php:1432 -msgid "Field nickname" -msgstr "Bijnaam voor veld" - -#: ../../mod/admin.php:1412 ../../mod/admin.php:1432 -msgid "System name of field" -msgstr "Systeemnaam voor veld" - -#: ../../mod/admin.php:1413 ../../mod/admin.php:1433 -msgid "Input type" -msgstr "Invoertype" - -#: ../../mod/admin.php:1414 ../../mod/admin.php:1434 -msgid "Field Name" -msgstr "Veldnaam" - -#: ../../mod/admin.php:1414 ../../mod/admin.php:1434 -msgid "Label on profile pages" -msgstr "Tekstlabel voor op profielpagina's" - -#: ../../mod/admin.php:1415 ../../mod/admin.php:1435 -msgid "Help text" -msgstr "Helptekst" - -#: ../../mod/admin.php:1415 ../../mod/admin.php:1435 -msgid "Additional info (optional)" -msgstr "Extra informatie (optioneel)" - -#: ../../mod/admin.php:1425 -msgid "Field definition not found" -msgstr "Velddefinitie niet gevonden" - -#: ../../mod/admin.php:1431 -msgid "Edit Profile Field" -msgstr "Profielveld bewerken" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." - -#: ../../mod/editblock.php:112 -msgid "Edit Block" -msgstr "Blok bewerken" - -#: ../../mod/editblock.php:123 -msgid "Delete block?" -msgstr "Blok verwijderen" - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Registraties op deze $Projectname-hub moeten eerst worden goedgekeurd." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registreer op een andere $Projectname-hub" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze $Projectname-hub" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ik accepteer de %s van deze $Projectname-hub" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Jouw e-mailadres" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" - -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Verwijder dit account" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "WAARSCHUWING: " - -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " - -#: ../../mod/item.php:437 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" - -#: ../../mod/item.php:479 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." - -#: ../../mod/item.php:885 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." - -#: ../../mod/item.php:1103 -msgid "Unable to obtain post information from database." -msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." - -#: ../../mod/item.php:1110 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." - -#: ../../mod/item.php:1117 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." - -#: ../../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 "[Ingesloten inhoud - ververs pagina om te bekijken] " - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "Zichtbaar voor:" - -#: ../../mod/layouts.php:175 -msgid "Comanche page description language help" -msgstr "Hulp met de paginabeschrijvingstaal Comanche" - -#: ../../mod/layouts.php:179 -msgid "Layout Description" -msgstr "Lay-out-omschrijving" - -#: ../../mod/layouts.php:184 -msgid "Download PDL file" -msgstr "Download PDL-bestand" - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Voornaam" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Achternaam" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Bijnaam" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Volledige naam" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Profielfoto 16px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Profielfoto 32px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Profielfoto 48px" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Profielfoto 64px" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Profielfoto 80px" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Profielfoto 128px" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Tijdzone" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "URL homepagina" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Geboortejaar" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Geboortemaand" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Geboortedag" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Geboortedatum" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Geen berichten" - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Verwijder conversatie" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, j M Y - G:i" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totaal aantal stemmen" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Gemiddelde waardering" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" - -#: ../../mod/connedit.php:262 -msgid "is now connected to" -msgstr "is nu verbonden met" - -#: ../../mod/connedit.php:375 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." - -#: ../../mod/connedit.php:389 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" - -#: ../../mod/connedit.php:396 -msgid "Channel has been unblocked" -msgstr "Kanaal is gedeblokkeerd" - -#: ../../mod/connedit.php:397 -msgid "Channel has been blocked" -msgstr "Kanaal is geblokkeerd" - -#: ../../mod/connedit.php:401 ../../mod/connedit.php:413 -#: ../../mod/connedit.php:425 ../../mod/connedit.php:437 -#: ../../mod/connedit.php:453 -msgid "Unable to set address book parameters." -msgstr "Niet in staat om de parameters van connecties in te stellen." - -#: ../../mod/connedit.php:408 -msgid "Channel has been unignored" -msgstr "Kanaal wordt niet meer genegeerd" - -#: ../../mod/connedit.php:409 -msgid "Channel has been ignored" -msgstr "Kanaal wordt genegeerd" - -#: ../../mod/connedit.php:420 -msgid "Channel has been unarchived" -msgstr "Kanaal is niet meer gearchiveerd" - -#: ../../mod/connedit.php:421 -msgid "Channel has been archived" -msgstr "Kanaal is gearchiveerd" - -#: ../../mod/connedit.php:432 -msgid "Channel has been unhidden" -msgstr "Kanaal is niet meer verborgen" - -#: ../../mod/connedit.php:433 -msgid "Channel has been hidden" -msgstr "Kanaal is verborgen" - -#: ../../mod/connedit.php:448 -msgid "Channel has been approved" -msgstr "Connectie/kanaal is geaccepteerd" - -#: ../../mod/connedit.php:449 -msgid "Channel has been unapproved" -msgstr "Connectie/kanaal is afgewezen" - -#: ../../mod/connedit.php:477 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" - -#: ../../mod/connedit.php:497 -#, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" - -#: ../../mod/connedit.php:501 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" - -#: ../../mod/connedit.php:504 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" - -#: ../../mod/connedit.php:508 -msgid "Recent Activity" -msgstr "Recente activiteit" - -#: ../../mod/connedit.php:511 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" - -#: ../../mod/connedit.php:520 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" - -#: ../../mod/connedit.php:524 ../../mod/connedit.php:721 -msgid "Unignore" -msgstr "Niet meer negeren" - -#: ../../mod/connedit.php:524 ../../mod/connedit.php:721 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Negeren" - -#: ../../mod/connedit.php:527 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" - -#: ../../mod/connedit.php:530 -msgid "Unarchive" -msgstr "Niet meer archiveren" - -#: ../../mod/connedit.php:530 -msgid "Archive" -msgstr "Archiveren" - -#: ../../mod/connedit.php:533 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" - -#: ../../mod/connedit.php:536 -msgid "Unhide" -msgstr "Niet meer verbergen" - -#: ../../mod/connedit.php:536 -msgid "Hide" -msgstr "Verbergen" - -#: ../../mod/connedit.php:539 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" - -#: ../../mod/connedit.php:546 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" - -#: ../../mod/connedit.php:637 ../../mod/connedit.php:675 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" - -#: ../../mod/connedit.php:637 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" - -#: ../../mod/connedit.php:653 -#, php-format -msgid "Connections: settings for %s" -msgstr "Connecties: instellingen voor %s" - -#: ../../mod/connedit.php:654 -msgid "Apply these permissions automatically" -msgstr "Deze permissies automatisch toepassen" - -#: ../../mod/connedit.php:658 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen." - -#: ../../mod/connedit.php:662 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" - -#: ../../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 "Voor jouw kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen. Controleer de permissies op deze pagina en verander ze eventueel. Deze nieuwe connectie kan mogelijk nog niet met jou communiceren totdat je deze pagina opslaat, wat ervoor zorgt dat de gekozen permissies actief worden." - -#: ../../mod/connedit.php:674 -msgid "inherited" -msgstr "geërfd" - -#: ../../mod/connedit.php:677 -msgid "Connection has no individual permissions!" -msgstr "Connectie heeft geen individuele permissies!" - -#: ../../mod/connedit.php:678 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." - -#: ../../mod/connedit.php:680 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" - -#: ../../mod/connedit.php:681 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." - -#: ../../mod/connedit.php:682 -msgid "Contact Information / Notes" -msgstr "Informatie/aantekeningen over connectie" - -#: ../../mod/connedit.php:683 -msgid "Edit contact notes" -msgstr "Bewerk aantekeningen over contact" - -#: ../../mod/connedit.php:685 -msgid "Their Settings" -msgstr "Hun instellingen" - -#: ../../mod/connedit.php:686 -msgid "My Settings" -msgstr "Mijn instellingen" - -#: ../../mod/connedit.php:688 -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 "Voor dit kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen en er zijn momenteel geen standaard permissies aanwezig. Controleer/verander de permissies op deze pagina en klik op [Opslaan] om deze te activeren." - -#: ../../mod/connedit.php:689 -msgid "Clear/Disable Automatic Permissions" -msgstr "Verwijderen/uitschakelen automatische permissies" - -#: ../../mod/connedit.php:690 -msgid "Forum Members" -msgstr "Forumleden" - -#: ../../mod/connedit.php:691 -msgid "Soapbox" -msgstr "Zeepkist" - -#: ../../mod/connedit.php:692 -msgid "Full Sharing (typical social network permissions)" -msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" - -#: ../../mod/connedit.php:693 -msgid "Cautious Sharing " -msgstr "Voorzichtig delen" - -#: ../../mod/connedit.php:694 -msgid "Follow Only" -msgstr "Alleen volgen" - -#: ../../mod/connedit.php:695 -msgid "Individual Permissions" -msgstr "Individuele permissies" - -#: ../../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 "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." - -#: ../../mod/connedit.php:697 -msgid "Advanced Permissions" -msgstr "Geavanceerde permissies" - -#: ../../mod/connedit.php:698 -msgid "Simple Permissions (select one and submit)" -msgstr "Eenvoudige permissies (selecteer er één en opslaan)" - -#: ../../mod/connedit.php:702 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Profiel van %s bezoeken - %s" - -#: ../../mod/connedit.php:703 -msgid "Block/Unblock contact" -msgstr "Connectie blokkeren/deblokkeren" - -#: ../../mod/connedit.php:704 -msgid "Ignore contact" -msgstr "Connectie negeren" - -#: ../../mod/connedit.php:705 -msgid "Repair URL settings" -msgstr "URL-instellingen repareren" - -#: ../../mod/connedit.php:706 -msgid "View conversations" -msgstr "Conversaties weergeven" - -#: ../../mod/connedit.php:708 -msgid "Delete contact" -msgstr "Connectie verwijderen" - -#: ../../mod/connedit.php:712 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: ../../mod/connedit.php:714 -msgid "Update public posts" -msgstr "Openbare berichten updaten" - -#: ../../mod/connedit.php:716 -msgid "Update now" -msgstr "Nu updaten" - -#: ../../mod/connedit.php:722 -msgid "Currently blocked" -msgstr "Momenteel geblokkeerd" - -#: ../../mod/connedit.php:723 -msgid "Currently ignored" -msgstr "Momenteel genegeerd" - -#: ../../mod/connedit.php:724 -msgid "Currently archived" -msgstr "Momenteel gearchiveerd" - -#: ../../mod/connedit.php:725 -msgid "Currently pending" -msgstr "Moeten nog geaccepteerd of afgewezen worden" - -#: ../../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 "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "Het foutbericht was:" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Authenticeren" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Bericht ingetrokken." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Privébericht versturen" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "Aan:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Onderwerp:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Verzenden" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Bericht niet gevonden" - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Bericht verwijderen" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Bericht intrekken" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Privéconversatie" - -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Antwoord versturen" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Annuleren" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Inloggen." - -#: ../../mod/post.php:235 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Kanaal toevoegen" - -#: ../../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 "Naast een account moet je tenminste één kanaal aanmaken. Een kanaal is een persoonlijke verzameling (gerelateerde) berichten en media, zoals je misschien gewend bent van sociale netwerken. Een kanaal kan gebruikt worden voor social media, een blog, forum, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Jouw naam of een andere relevante naam. Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Familieforum\"" - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Korte bijnaam" - -#: ../../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 "Deze bijnaam (geen spaties) wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) en het internetadres (URL) van jouw kanaal aan te maken, die je dan met anderen kunt delen. Voorbeeld: janp wordt janp@jouw_hub.nl en https://jouw_hub.nl/channel/janp." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie." - -#: ../../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 "Kies een kanaaltype en het door jouw gewenste privacy-niveau, zodat automatisch de beste permissies kunnen worden ingesteld. Dit kan later, indien gewenst, worden veranderd." - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Kanaaltype" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Lees meer over kanaaltypes" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App geïnstalleerd" - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Misvormde app." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Insluitcode" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bewerken" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App maken" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Naam van app" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL van pictogram" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versie-ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Prijs van de app" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "Collectie niet gevonden" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "Niet zo'n kanaal" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "Collectie is leeg" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "Collectie: " - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "Connectie: " - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "Ongeldige connectie." - -#: ../../mod/page.php:119 -msgid "Ipsum Lorem" -msgstr "Lorem ipsum" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Poll" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Bekijk resultaten" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Geen abonnementsbeperkingen gevonden." - -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "Bestanden: met mij gedeeld" - -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "NIEUW" - -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "Verwijder alle bestanden" - -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "Verwijder dit bestand" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Standaardschema" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Schreefloos" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Theme settings" -msgstr "Thema-instellingen" - -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Schema van thema instellen" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set font-size for posts and comments" -msgstr "Lettergrootte voor berichten en reacties instellen" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Lettertypefamilie instellen" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Pictogrammenset instellen" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Een grote schaduwgrootte instellen (standaard 15px 15px 15px)" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Een kleine schaduwgrootte instellen (standaard 5px 5px 5px)" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Schaduwkleur instellen (standaard #000)" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Radius instellen (standaard 5px)" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Lijnhoogte voor berichten en reacties instellen" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Achtergrondafbeelding instellen" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Gedrag achtergrondafbeelding instellen" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Achtergrondkleur instellen" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Achtergrondafbeelding van sectie instellen" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Achtergrondkleur van sectie instellen" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Tekstkleur van items instellen (gebruik hexadecimaal)" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Kleur van links instellen (gebruik hexadecimaal)" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Maximale breedte van items instellen (standaard 400px)" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Minimale breedte van items instellen (standaard 240px)" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Breedte van de generieke content-wrapper instellen (standaard 48%)" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Tekstkleur instellen (gebruik hexadecimaal)" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Grootte achtergrondafbeelding instellen" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Ondoorzichtigheid item" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Alleen voorvertoning berichten weergeven" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Zijbalk op kanaalpagina weergeven" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Kleur van de navigatiebalk" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Item float" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Linker offset van het sectie-element" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Rechter offset van het sectie-element" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Breedte van sectie" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Rechter offset van aside (zijbalk)" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Rechter offset van het aside-element" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Red Matrix default)" -msgstr "Light ($Projectname-standaard)" - -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Select scheme" -msgstr "Kies schema van thema" - -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Narrow navbar" -msgstr "Smalle navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Navigation bar background color" -msgstr "Achtergrondkleur navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Navigation bar gradient top color" -msgstr "Bovenste gradiëntkleur navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar gradient bottom color" -msgstr "Onderste gradiëntkleur navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation active button gradient top color" -msgstr "Bovenste gradiëntkleur actieve knop navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation active button gradient bottom color" -msgstr "Onderste gradiëntkleur actieve knop op navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation bar border color " -msgstr "Randkleur navigatiebalk " - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation bar icon color " -msgstr "Pictogramkleur navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar active icon color " -msgstr "Actieve pictogramkleur navigatiebalk" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "link color" -msgstr "Linkkleur instellen" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set font-color for banner" -msgstr "Tekstkleur van banner instellen" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set the background color" -msgstr "Achtergrondkleur instellen" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set the background image" -msgstr "Achtergrondafbeelding instellen" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color of items" -msgstr "Achtergrondkleur items instellen" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background color of comments" -msgstr "Achtergrondkleur reacties instellen" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the border color of comments" -msgstr "Randkleur reacties instellen" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the indent for comments" -msgstr "Inspringen reacties instellen" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the basic color for item icons" -msgstr "Basiskleur itempictogrammen instellen" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the hover color for item icons" -msgstr "Hoverkleur itempictogrammen instellen" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set font-size for the entire application" -msgstr "Tekstgrootte van de volledige applicatie instellen" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Example: 14px" -msgstr "Voorbeeld: 14px" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-color for posts and comments" -msgstr "Tekstkleur van berichten en reacties" - -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set radius of corners" -msgstr "Radius van hoeken instellen" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set shadow depth of photos" -msgstr "Schaduwdiepte van foto's instellen" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set maximum width of content region in pixel" -msgstr "Maximumbreedte conversatieruimte instellen (in pixels)" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Leave empty for default width" -msgstr "Laat leeg voor standaardbreedte" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Center page content" -msgstr "Inhoud centreren" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Set size of conversation author photo" -msgstr "Grootte profielfoto's van berichten instellen" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set size of followup author photos" -msgstr "Grootte profielfoto's van reacties instellen" - -#: ../../boot.php:1345 +#: ../../boot.php:1355 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1348 +#: ../../boot.php:1358 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1515 +#: ../../boot.php:1525 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van $Projectname" -#: ../../boot.php:1543 +#: ../../boot.php:1553 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1544 +#: ../../boot.php:1554 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1547 +#: ../../boot.php:1557 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2166 +#: ../../boot.php:2177 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2301 +#: ../../boot.php:2312 msgid "Website SSL certificate is not valid. Please correct." msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." -#: ../../boot.php:2304 +#: ../../boot.php:2315 #, php-format msgid "[red] Website SSL error for %s" msgstr "[red] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2341 +#: ../../boot.php:2352 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2345 +#: ../../boot.php:2356 #, php-format msgid "[red] Cron tasks not running on %s" msgstr "[red] Cron-taken zijn niet actief op %s" diff --git a/view/nl/strings.php b/view/nl/strings.php index 37bb0c32b..554b947c5 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -5,38 +5,6 @@ function string_plural_select_nl($n){ return ($n != 1);; }} ; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; -$a->strings["Profile Photos"] = "Profielfoto's"; -$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."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; -$a->strings["created a new post"] = "maakte een nieuw bericht aan"; -$a->strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; -$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."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; -$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; -$a->strings["All Channels"] = "Alle kanalen"; -$a->strings["edit"] = "bewerken"; -$a->strings["Collections"] = "Collecties"; -$a->strings["Edit collection"] = "Collectie bewerken"; -$a->strings["Add new collection"] = "Nieuwe collectie toevoegen"; -$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; -$a->strings["add"] = "toevoegen"; -$a->strings["Not a valid email address"] = "Geen geldig e-mailadres"; -$a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; -$a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; -$a->strings["An invitation is required."] = "Een uitnodiging is vereist"; -$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; -$a->strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -$a->strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -$a->strings["Registration request at %s"] = "Registratiebevestiging voor %s"; -$a->strings["Administrator"] = "Beheerder"; -$a->strings["your registration password"] = "jouw registratiewachtwoord"; -$a->strings["Registration details for %s"] = "Registratiegegevens voor %s"; -$a->strings["Account approved."] = "Account goedgekeurd"; -$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -$a->strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; -$a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -$a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; $a->strings["Miscellaneous"] = "Diversen"; $a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; $a->strings["Required"] = "Vereist"; @@ -59,92 +27,410 @@ $a->strings["seconds"] = "seconden"; $a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; $a->strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; $a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; -$a->strings["New Page"] = "Nieuwe pagina"; -$a->strings["Edit"] = "Bewerken"; -$a->strings["View"] = "Weergeven"; +$a->strings["photo"] = "foto"; +$a->strings["event"] = "gebeurtenis"; +$a->strings["channel"] = "kanaal"; +$a->strings["status"] = "bericht"; +$a->strings["comment"] = "reactie"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; +$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; +$a->strings["poked"] = "aangestoten"; +$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; +$a->strings["__ctx:title__ Likes"] = "vinden dit leuk"; +$a->strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; +$a->strings["__ctx:title__ Agree"] = "eens"; +$a->strings["__ctx:title__ Disagree"] = "oneens"; +$a->strings["__ctx:title__ Abstain"] = "onthouding"; +$a->strings["__ctx:title__ Attending"] = "aanwezig"; +$a->strings["__ctx:title__ Not attending"] = "niet aanwezig"; +$a->strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; +$a->strings["Select"] = "Kies"; +$a->strings["Delete"] = "Verwijderen"; +$a->strings["Private Message"] = "Privébericht"; +$a->strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; +$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; +$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +$a->strings["Categories:"] = "Categorieën:"; +$a->strings["Filed under:"] = "Bewaard onder:"; +$a->strings["from %s"] = "van %s"; +$a->strings["last edited: %s"] = "laatst bewerkt: %s"; +$a->strings["Expires: %s"] = "Verloopt: %s"; +$a->strings["View in context"] = "In context bekijken"; +$a->strings["Please wait"] = "Even wachten"; +$a->strings["remove"] = "verwijderen"; +$a->strings["Loading..."] = "Aan het laden..."; +$a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; +$a->strings["View Source"] = "Bron weergeven"; +$a->strings["Follow Thread"] = "Conversatie volgen"; +$a->strings["View Status"] = "Status weergeven"; +$a->strings["View Profile"] = "Profiel weergeven"; +$a->strings["View Photos"] = "Foto's weergeven"; +$a->strings["Matrix Activity"] = "Kanaal-activiteit"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Edit Contact"] = "Contact bewerken"; +$a->strings["Send PM"] = "Privébericht verzenden"; +$a->strings["Poke"] = "Aanstoten"; +$a->strings["Unknown"] = "Onbekend"; +$a->strings["%s likes this."] = "%s vindt dit leuk."; +$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +$a->strings["%2\$d people like this."] = array( + 0 => "%2\$d persoon vindt dit leuk.", + 1 => "%2\$d personen vinden dit leuk.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "%2\$d persoon vindt dit niet leuk.", + 1 => "%2\$d personen vinden dit niet leuk.", +); +$a->strings["and"] = "en"; +$a->strings[", and %d other people"] = array( + 0 => ", en %d ander persoon", + 1 => ", en %d andere personen", +); +$a->strings["%s like this."] = "%s vinden dit leuk."; +$a->strings["%s don't like this."] = "%s vinden dit niet leuk."; +$a->strings["Visible to everybody"] = "Voor iedereen zichtbaar"; +$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; +$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; +$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Save to Folder:"] = "Bewaar in map: "; +$a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; $a->strings["Preview"] = "Voorvertoning"; -$a->strings["Actions"] = "Acties"; -$a->strings["Page Link"] = "Paginalink"; -$a->strings["Title"] = "Titel"; -$a->strings["Created"] = "Aangemaakt"; -$a->strings["Edited"] = "Bewerkt"; -$a->strings["Public Timeline"] = "Openbare tijdlijn"; -$a->strings["Default"] = "Standaard"; +$a->strings["Share"] = "Delen"; +$a->strings["Page link name"] = "Linknaam pagina"; +$a->strings["Post as"] = "Bericht plaatsen als"; +$a->strings["Bold"] = "Vet"; +$a->strings["Italic"] = "Cursief"; +$a->strings["Underline"] = "Onderstrepen"; +$a->strings["Quote"] = "Citeren"; +$a->strings["Code"] = "Broncode"; +$a->strings["Upload photo"] = "Foto uploaden"; +$a->strings["upload photo"] = "foto uploaden"; +$a->strings["Attach file"] = "Bestand toevoegen"; +$a->strings["attach file"] = "bestand toevoegen"; +$a->strings["Insert web link"] = "Weblink invoegen"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Videolink invoegen"; +$a->strings["video link"] = "videolink"; +$a->strings["Insert audio link"] = "Audiolink invoegen"; +$a->strings["audio link"] = "audiolink"; +$a->strings["Set your location"] = "Locatie instellen"; +$a->strings["set location"] = "locatie instellen"; +$a->strings["Toggle voting"] = "Stemmen in- of uitschakelen"; +$a->strings["Clear browser location"] = "Locatie van webbrowser wissen"; +$a->strings["clear location"] = "locatie wissen"; +$a->strings["Title (optional)"] = "Titel (optioneel)"; +$a->strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +$a->strings["Permission settings"] = "Permissies"; +$a->strings["permissions"] = "permissies"; +$a->strings["Public post"] = "Openbaar bericht"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be"; +$a->strings["Set expiration date"] = "Verloopdatum instellen"; +$a->strings["Encrypt text"] = "Tekst versleutelen"; +$a->strings["OK"] = "OK"; +$a->strings["Cancel"] = "Annuleren"; +$a->strings["Discover"] = "Ontdekken"; +$a->strings["Imported public streams"] = "Openbare streams importeren"; +$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; +$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; +$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +$a->strings["Personal"] = "Persoonlijk"; +$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; +$a->strings["New"] = "Nieuw"; +$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +$a->strings["Starred"] = "Met ster"; +$a->strings["Favourite Posts"] = "Favoriete berichten"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; +$a->strings["Channel"] = "Kanaal"; +$a->strings["Status Messages and Posts"] = "Berichten in dit kanaal"; +$a->strings["About"] = "Over"; +$a->strings["Profile Details"] = "Profiel"; +$a->strings["Photos"] = "Foto's"; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Files"] = "Bestanden"; +$a->strings["Files and Storage"] = "Bestanden en opslagruimte"; +$a->strings["Chatrooms"] = "Chatkanalen"; +$a->strings["Bookmarks"] = "Bladwijzers"; +$a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +$a->strings["Webpages"] = "Webpagina's"; +$a->strings["Manage Webpages"] = "Webpagina's beheren"; +$a->strings["View all"] = "Toon alles"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "vindt dit niet leuk", + 1 => "vinden dit niet leuk", +); +$a->strings["__ctx:noun__ Attending"] = array( + 0 => "aanwezig", + 1 => "aanwezig", +); +$a->strings["__ctx:noun__ Not Attending"] = array( + 0 => "niet aanwezig", + 1 => "niet aanwezig", +); +$a->strings["__ctx:noun__ Undecided"] = array( + 0 => "nog niet beslist", + 1 => "nog niet beslist", +); +$a->strings["__ctx:noun__ Agree"] = array( + 0 => "eens", + 1 => "eens", +); +$a->strings["__ctx:noun__ Disagree"] = array( + 0 => "oneens", + 1 => "oneens", +); +$a->strings["__ctx:noun__ Abstain"] = array( + 0 => "onthouding", + 1 => "onthoudingen", +); +$a->strings["Edit"] = "Bewerken"; $a->strings["Directory Options"] = "Opties kanalengids"; -$a->strings["Alphabetic"] = "Alfabetisch"; -$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; -$a->strings["Newest to Oldest"] = "Nieuw naar oud"; -$a->strings["Oldest to Newest"] = "Oud naar nieuw"; -$a->strings["Sort"] = "Sorteren"; $a->strings["Safe Mode"] = "Veilig zoeken"; +$a->strings["No"] = "Nee"; +$a->strings["Yes"] = "Ja"; $a->strings["Public Forums Only"] = "Alleen openbare forums"; $a->strings["This Website Only"] = "Alleen deze hub"; +$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."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["Install %s element: "] = "Installeer %s-element: "; +$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; +$a->strings["webpage"] = "Webpagina"; +$a->strings["layout"] = "lay-out"; +$a->strings["block"] = "blok"; +$a->strings["menu"] = "menu"; +$a->strings["QR code"] = "QR-code"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; +$a->strings["post"] = "bericht"; +$a->strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; +$a->strings["$1 spoiler"] = "$1 spoiler"; +$a->strings["$1 wrote:"] = "$1 schreef:"; +$a->strings["Permission denied."] = "Toegang geweigerd"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["No source file."] = "Geen bronbestand."; +$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +$a->strings["Path not available."] = "Pad niet beschikbaar."; +$a->strings["Empty pathname"] = "Padnaam leeg"; +$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; +$a->strings["Path not found."] = "Pad niet gevonden"; +$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +$a->strings["database storage failed."] = "opslag in database mislukt."; +$a->strings["Profile Photos"] = "Profielfoto's"; +$a->strings["Frequently"] = "Regelmatig"; +$a->strings["Hourly"] = "Elk uur"; +$a->strings["Twice daily"] = "Twee keer per dag"; +$a->strings["Daily"] = "Dagelijks"; +$a->strings["Weekly"] = "Wekelijks"; +$a->strings["Monthly"] = "Maandelijks"; +$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["Tags"] = "Tags"; +$a->strings["Categories"] = "Categorieën"; +$a->strings["Keywords"] = "Trefwoorden"; +$a->strings["have"] = "heb"; +$a->strings["has"] = "heeft"; +$a->strings["want"] = "wil"; +$a->strings["wants"] = "wil"; +$a->strings["like"] = "vind dit leuk"; +$a->strings["likes"] = "vindt dit leuk"; +$a->strings["dislike"] = "vind dit niet leuk"; +$a->strings["dislikes"] = "vindt dit niet leuk"; +$a->strings["Invalid data packet"] = "Datapakket ongeldig"; +$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; +$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; +$a->strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +$a->strings["Advanced"] = "Geavanceerd"; +$a->strings["Find Channels"] = "Kanalen vinden"; +$a->strings["Enter name or interest"] = "Vul naam of interesse in"; +$a->strings["Connect/Follow"] = "Verbinden/volgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; +$a->strings["Find"] = "Vinden"; +$a->strings["Channel Suggestions"] = "Voorgestelde kanalen"; +$a->strings["Random Profile"] = "Willekeurig profiel"; +$a->strings["Invite Friends"] = "Vrienden uitnodigen"; +$a->strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; +$a->strings["Saved Folders"] = "Bewaarde mappen"; +$a->strings["Everything"] = "Alles"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemeenschappelijke connectie", + 1 => "%d gemeenschappelijke connecties", +); +$a->strings["show more"] = "meer connecties weergeven"; +$a->strings["created a new post"] = "maakte een nieuw bericht aan"; +$a->strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["(Unknown)"] = "(Onbekend)"; +$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; +$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["Collection not found."] = "Collectie niet gevonden."; +$a->strings["Collection is empty."] = "Collectie is leeg"; +$a->strings["Collection: %s"] = "Collectie: %s"; +$a->strings["Connection: %s"] = "Connectie: %s"; +$a->strings["Connection not found."] = "Connectie niet gevonden."; +$a->strings["Missing room name"] = "Naam chatkanaal ontbreekt"; +$a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; +$a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; +$a->strings["Room not found."] = "Chatkanaal niet gevonden"; +$a->strings["Room is full"] = "Chatkanaal is vol"; +$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."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; +$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; +$a->strings["All Channels"] = "Alle kanalen"; +$a->strings["edit"] = "bewerken"; +$a->strings["Collections"] = "Collecties"; +$a->strings["Edit collection"] = "Collectie bewerken"; +$a->strings["Add new collection"] = "Nieuwe collectie toevoegen"; +$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; +$a->strings["add"] = "toevoegen"; +$a->strings["Site Admin"] = "Hubbeheerder"; +$a->strings["Address Book"] = "Connecties"; +$a->strings["Login"] = "Inloggen"; +$a->strings["Channel Manager"] = "Kanaalbeheer"; +$a->strings["Matrix"] = "Matrix"; +$a->strings["Settings"] = "Instellingen"; +$a->strings["Channel Home"] = "Tijdlijn kanaal"; +$a->strings["Profile"] = "Profiel"; +$a->strings["Events"] = "Agenda"; +$a->strings["Directory"] = "Kanalengids"; +$a->strings["Help"] = "Hulp"; +$a->strings["Mail"] = "Privéberichten"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Chat"] = "Chatten"; +$a->strings["Search"] = "Zoeken"; +$a->strings["Probe"] = "Onderzoeken"; +$a->strings["Suggest"] = "Voorstellen"; +$a->strings["Random Channel"] = "Willekeurig kanaal"; +$a->strings["Invite"] = "Uitnodigen "; +$a->strings["Features"] = "Extra functies"; +$a->strings["Language"] = "Taal"; +$a->strings["Post"] = "Bericht"; +$a->strings["Profile Photo"] = "Profielfoto"; +$a->strings["Update"] = "Bijwerken"; +$a->strings["Install"] = "Installeren"; +$a->strings["Purchase"] = "Aanschaffen"; +$a->strings["Not a valid email address"] = "Geen geldig e-mailadres"; +$a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; +$a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; +$a->strings["An invitation is required."] = "Een uitnodiging is vereist"; +$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; +$a->strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +$a->strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +$a->strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +$a->strings["Administrator"] = "Beheerder"; +$a->strings["your registration password"] = "jouw registratiewachtwoord"; +$a->strings["Registration details for %s"] = "Registratiegegevens voor %s"; +$a->strings["Account approved."] = "Account goedgekeurd"; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; +$a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +$a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +$a->strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; +$a->strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; +$a->strings["Import completed."] = "Import voltooid."; +$a->strings["Attachments:"] = "Bijlagen:"; $a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["\$Projectname event notification:"] = "Notificatie -gebeurtenis:"; $a->strings["Starts:"] = "Start:"; $a->strings["Finishes:"] = "Einde:"; $a->strings["Location:"] = "Plaats:"; -$a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -$a->strings["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["Comment"] = "Reactie"; -$a->strings["[+] show all"] = "[+] alle"; -$a->strings["[-] show less"] = "[-] minder reacties weergeven"; -$a->strings["[+] expand"] = "[+] uitklappen"; -$a->strings["[-] collapse"] = "[-] inklappen"; -$a->strings["Password too short"] = "Wachtwoord te kort"; -$a->strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; -$a->strings["everybody"] = "iedereen"; -$a->strings["Secret Passphrase"] = "Geheim wachtwoord"; -$a->strings["Passphrase hint"] = "Wachtwoordhint"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen."; -$a->strings["close all"] = "Alles sluiten"; -$a->strings["Nothing new here"] = "Niets nieuw hier"; -$a->strings["Rate This Channel (this is public)"] = "Beoordeel dit kanaal (dit is openbaar)"; -$a->strings["Rating"] = "Beoordeling"; -$a->strings["Describe (optional)"] = "Omschrijving (optioneel)"; -$a->strings["Submit"] = "Opslaan"; -$a->strings["Please enter a link URL"] = "Vul een internetadres/URL in:"; -$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -$a->strings["ago"] = "geleden"; -$a->strings["from now"] = "vanaf nu"; -$a->strings["less than a minute"] = "minder dan een minuut"; -$a->strings["about a minute"] = "ongeveer een minuut"; -$a->strings["%d minutes"] = "%d minuten"; -$a->strings["about an hour"] = "ongeveer een uur"; -$a->strings["about %d hours"] = "ongeveer %d uren"; -$a->strings["a day"] = "een dag"; -$a->strings["%d days"] = "%d dagen"; -$a->strings["about a month"] = "ongeveer een maand"; -$a->strings["%d months"] = "%d maanden"; -$a->strings["about a year"] = "ongeveer een jaar"; -$a->strings["%d years"] = "%d jaren"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; -$a->strings["parent"] = "omhoog"; -$a->strings["Collection"] = "map"; -$a->strings["Principal"] = "principal"; -$a->strings["Addressbook"] = "Adresboek"; -$a->strings["Calendar"] = "Agenda"; -$a->strings["Schedule Inbox"] = "Planning-postvak IN"; -$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; -$a->strings["Unknown"] = "Onbekend"; -$a->strings["%1\$s used"] = "%1\$s gebruikt"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s van %2\$s gebruikt (%3\$s%)"; -$a->strings["Files"] = "Bestanden"; -$a->strings["Total"] = "Totaal"; -$a->strings["Shared"] = "Gedeeld"; -$a->strings["Create"] = "Aanmaken"; -$a->strings["Upload"] = "Uploaden"; -$a->strings["Name"] = "Naam"; -$a->strings["Type"] = "Type"; -$a->strings["Size"] = "Grootte"; -$a->strings["Last Modified"] = "Laatst gewijzigd"; -$a->strings["Delete"] = "Verwijderen"; -$a->strings["Create new folder"] = "Nieuwe map aanmaken"; -$a->strings["Upload file"] = "Bestand uploaden"; +$a->strings[" and "] = " en "; +$a->strings["public profile"] = "openbaar profiel"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; +$a->strings["New window"] = "Nieuw venster"; +$a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; $a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -$a->strings["view full size"] = "volledige grootte tonen"; +$a->strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +$a->strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +$a->strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +$a->strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +$a->strings["Protocol disabled."] = "Protocol uitgeschakeld."; +$a->strings["Protocol blocked for this channel."] = "Dit protocol is voor dit kanaal niet toegestaan."; +$a->strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +$a->strings["local account not found."] = "lokale account niet gevonden."; +$a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; +$a->strings["Public Timeline"] = "Openbare tijdlijn"; +$a->strings["Apps"] = "Apps"; +$a->strings["System"] = "Systeem"; +$a->strings["Create Personal App"] = "Persoonlijke app maken"; +$a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; +$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; +$a->strings["Suggestions"] = "Voorgestelde kanalen"; +$a->strings["See more..."] = "Meer..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +$a->strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +$a->strings["Enter the channel address"] = "Vul het adres van het nieuwe kanaal in"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: bob@example.com, http://example.com/barbara"; +$a->strings["Notes"] = "Aantekeningen"; +$a->strings["Save"] = "Opslaan"; +$a->strings["Remove term"] = "Verwijder zoekterm"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["Archives"] = "Archieven"; +$a->strings["Me"] = "Ik"; +$a->strings["Family"] = "Familie"; +$a->strings["Friends"] = "Vrienden"; +$a->strings["Acquaintances"] = "Kennissen"; +$a->strings["All"] = "Alles"; +$a->strings["Refresh"] = "Vernieuwen"; +$a->strings["Account settings"] = "Account"; +$a->strings["Channel settings"] = "Kanaal"; +$a->strings["Additional features"] = "Extra functies"; +$a->strings["Feature/Addon settings"] = "Extra functie- en plugin-instellingen"; +$a->strings["Display settings"] = "Weergave"; +$a->strings["Connected apps"] = "Verbonden applicaties"; +$a->strings["Export channel"] = "Kanaal exporteren"; +$a->strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; +$a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +$a->strings["Channel Sources"] = "Kanaalbronnen"; +$a->strings["Messages"] = "Berichten"; +$a->strings["Check Mail"] = "Controleer op nieuwe berichten"; +$a->strings["New Message"] = "Nieuw bericht"; +$a->strings["Chat Rooms"] = "Chatkanalen"; +$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +$a->strings["photo/image"] = "foto/afbeelding"; +$a->strings["Rate Me"] = "Beoordeel mij"; +$a->strings["View Ratings"] = "Bekijk beoordelingen"; +$a->strings["Public Hubs"] = "Openbare hubs"; +$a->strings["Logged out."] = "Uitgelogd."; +$a->strings["Failed authentication"] = "Mislukte authenticatie"; +$a->strings["Login failed."] = "Inloggen mislukt."; $a->strings["General Features"] = "Algemene functies"; $a->strings["Content Expiration"] = "Inhoud laten verlopen"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; @@ -171,7 +457,6 @@ $a->strings["Use Markdown"] = "Markdown gebruiken"; $a->strings["Allow use of \"Markdown\" to format posts"] = "Sta het gebruik van \"markdown\" toe om berichten mee op te maken."; $a->strings["Large Photos"] = "Grote foto's"; $a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Toon grote (640px) voorbeeldfoto's in berichten. Standaard worden kleine voorbeeldfoto's (320px) getoond. "; -$a->strings["Channel Sources"] = "Kanaalbronnen"; $a->strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; $a->strings["Even More Encryption"] = "Extra encryptie"; $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; @@ -182,7 +467,6 @@ $a->strings["Search by Date"] = "Zoek op datum"; $a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; $a->strings["Collections Filter"] = "Filter op collecties"; $a->strings["Enable widget to display Network posts only from selected collections"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties"; -$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; $a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; $a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; $a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; @@ -190,6 +474,8 @@ $a->strings["Network New Tab"] = "Nieuwe netwerktab"; $a->strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; $a->strings["Affinity Tool"] = "Verwantschapsfilter"; $a->strings["Filter stream activity by depth of relationships"] = "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag"; +$a->strings["Connection Filtering"] = "berichtenfilters"; +$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden/inhoud"; $a->strings["Suggest Channels"] = "Kanalen voorstellen"; $a->strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; $a->strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; @@ -197,7 +483,6 @@ $a->strings["Tagging"] = "Taggen"; $a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te taggen"; $a->strings["Post Categories"] = "Categorieën berichten"; $a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -$a->strings["Saved Folders"] = "Bewaarde mappen"; $a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; $a->strings["Dislike Posts"] = "Vind berichten niet leuk"; $a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; @@ -205,184 +490,6 @@ $a->strings["Star Posts"] = "Geef berichten een ster"; $a->strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; $a->strings["Tag Cloud"] = "Tagwolk"; $a->strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; -$a->strings["Categories"] = "Categorieën"; -$a->strings["Apps"] = "Apps"; -$a->strings["System"] = "Systeem"; -$a->strings["Personal"] = "Persoonlijk"; -$a->strings["Create Personal App"] = "Persoonlijke app maken"; -$a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; -$a->strings["Suggestions"] = "Voorgestelde kanalen"; -$a->strings["See more..."] = "Meer..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -$a->strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -$a->strings["Enter the channel address"] = "Vul het adres van het nieuwe kanaal in"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: bob@example.com, http://example.com/barbara"; -$a->strings["Notes"] = "Aantekeningen"; -$a->strings["Save"] = "Opslaan"; -$a->strings["Remove term"] = "Verwijder zoekterm"; -$a->strings["Everything"] = "Alles"; -$a->strings["Archives"] = "Archieven"; -$a->strings["Me"] = "Ik"; -$a->strings["Family"] = "Familie"; -$a->strings["Friends"] = "Vrienden"; -$a->strings["Acquaintances"] = "Kennissen"; -$a->strings["All"] = "Alles"; -$a->strings["Refresh"] = "Vernieuwen"; -$a->strings["Account settings"] = "Account"; -$a->strings["Channel settings"] = "Kanaal"; -$a->strings["Additional features"] = "Extra functies"; -$a->strings["Feature/Addon settings"] = "Extra functie- en plugin-instellingen"; -$a->strings["Display settings"] = "Weergave"; -$a->strings["Connected apps"] = "Verbonden applicaties"; -$a->strings["Export channel"] = "Kanaal exporteren"; -$a->strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; -$a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -$a->strings["Settings"] = "Instellingen"; -$a->strings["Messages"] = "Berichten"; -$a->strings["Check Mail"] = "Controleer op nieuwe berichten"; -$a->strings["New Message"] = "Nieuw bericht"; -$a->strings["Chat Rooms"] = "Chatkanalen"; -$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -$a->strings["photo/image"] = "foto/afbeelding"; -$a->strings["Rate Me"] = "Beoordeel mij"; -$a->strings["View Ratings"] = "Bekijk beoordelingen"; -$a->strings["Public Hubs"] = "Openbare hubs"; -$a->strings["\$Projectname Notification"] = "\$Projectname-notificatie"; -$a->strings["\$projectname"] = "\$projectname"; -$a->strings["Thank You,"] = "Bedankt,"; -$a->strings["%s Administrator"] = "Beheerder %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notificatie] Nieuw privébericht ontvangen op %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; -$a->strings["a private message"] = "een privébericht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notificatie] %s heeft je genoemd"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notificatie] %1\$s heeft je aangestoten"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notificatie] %s heeft jouw bericht getagd"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Notificatie] Connectieverzoek ontvangen"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; -$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificatie] Kanaalvoorstel ontvangen"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; -$a->strings["Name:"] = "Naam:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; -$a->strings["[Red:Notify]"] = "[Red:Notificatie]"; -$a->strings["Frequently"] = "Regelmatig"; -$a->strings["Hourly"] = "Elk uur"; -$a->strings["Twice daily"] = "Twee keer per dag"; -$a->strings["Daily"] = "Dagelijks"; -$a->strings["Weekly"] = "Wekelijks"; -$a->strings["Monthly"] = "Maandelijks"; -$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."] = "Geen ontvanger opgegeven."; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -$a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; -$a->strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -$a->strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -$a->strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -$a->strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -$a->strings["Protocol disabled."] = "Protocol uitgeschakeld."; -$a->strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -$a->strings["local account not found."] = "lokale account niet gevonden."; -$a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; -$a->strings["Private Message"] = "Privébericht"; -$a->strings["Select"] = "Kies"; -$a->strings["Save to Folder"] = "In map opslaan"; -$a->strings["I will attend"] = "Aanwezig"; -$a->strings["I will not attend"] = "Niet aanwezig"; -$a->strings["I might attend"] = "Mogelijk aanwezig"; -$a->strings["I agree"] = "Eens"; -$a->strings["I disagree"] = "Oneens"; -$a->strings["I abstain"] = "Onthouding"; -$a->strings["View all"] = "Toon alles"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "vindt dit niet leuk", - 1 => "vinden dit niet leuk", -); -$a->strings["Add Star"] = "Ster toevoegen"; -$a->strings["Remove Star"] = "Ster verwijderen"; -$a->strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; -$a->strings["starred"] = "met ster"; -$a->strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; -$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; -$a->strings["Add Tag"] = "Tag toevoegen"; -$a->strings["I like this (toggle)"] = "Vind ik leuk"; -$a->strings["like"] = "vind dit leuk"; -$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -$a->strings["dislike"] = "vind dit niet leuk"; -$a->strings["Share This"] = "Delen"; -$a->strings["share"] = "delen"; -$a->strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties weergeven", -); -$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; -$a->strings["to"] = "aan"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; -$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; -$a->strings["from %s"] = "van %s"; -$a->strings["last edited: %s"] = "laatst bewerkt: %s"; -$a->strings["Expires: %s"] = "Verloopt: %s"; -$a->strings["Save Bookmarks"] = "Bladwijzers opslaan"; -$a->strings["Add to Calendar"] = "Aan agenda toevoegen"; -$a->strings["Mark all seen"] = "Markeer alles als bekeken"; -$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk"; -$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -$a->strings["Close"] = "Sluiten"; -$a->strings["Please wait"] = "Even wachten"; -$a->strings["This is you"] = "Dit ben jij"; -$a->strings["Bold"] = "Vet"; -$a->strings["Italic"] = "Cursief"; -$a->strings["Underline"] = "Onderstrepen"; -$a->strings["Quote"] = "Citeren"; -$a->strings["Code"] = "Broncode"; -$a->strings["Image"] = "Afbeelding"; -$a->strings["Insert Link"] = "Link invoegen"; -$a->strings["Video"] = "Video"; -$a->strings["Encrypt text"] = "Tekst versleutelen"; -$a->strings["New window"] = "Nieuw venster"; -$a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; -$a->strings["Attachments:"] = "Bijlagen:"; -$a->strings["\$Projectname event notification:"] = "Notificatie -gebeurtenis:"; $a->strings["prev"] = "vorige"; $a->strings["first"] = "eerste"; $a->strings["last"] = "laatste"; @@ -395,9 +502,7 @@ $a->strings["%d Connection"] = array( 1 => "%d connecties", ); $a->strings["View Connections"] = "Connecties weergeven"; -$a->strings["Search"] = "Zoeken"; $a->strings["poke"] = "aanstoten"; -$a->strings["poked"] = "aangestoten"; $a->strings["ping"] = "ping"; $a->strings["pinged"] = "gepingd"; $a->strings["prod"] = "por"; @@ -459,326 +564,54 @@ $a->strings["Page layout"] = "Pagina-lay-out"; $a->strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs"; $a->strings["Page content type"] = "Opmaaktype pagina"; $a->strings["Select an alternate language"] = "Kies een andere taal"; -$a->strings["photo"] = "foto"; -$a->strings["event"] = "gebeurtenis"; -$a->strings["status"] = "bericht"; -$a->strings["comment"] = "reactie"; $a->strings["activity"] = "activiteit"; $a->strings["Design Tools"] = "Ontwerp-hulpmiddelen"; $a->strings["Blocks"] = "Blokken"; $a->strings["Menus"] = "Menu's"; $a->strings["Layouts"] = "Lay-outs"; $a->strings["Pages"] = "Pagina's"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["End this session"] = "Beëindig deze sessie"; -$a->strings["Home"] = "Home"; -$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; -$a->strings["View Profile"] = "Profiel weergeven"; -$a->strings["Your profile page"] = "Jouw profielpagina"; -$a->strings["Edit Profiles"] = "Bewerk profielen"; -$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Edit Profile"] = "Profiel bewerken"; -$a->strings["Edit your profile"] = "Jouw profiel bewerken"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Your files"] = "Jouw bestanden"; -$a->strings["Chat"] = "Chatten"; -$a->strings["Your chatrooms"] = "Jouw chatkanalen"; -$a->strings["Bookmarks"] = "Bladwijzers"; -$a->strings["Your bookmarks"] = "Jouw bladwijzers"; -$a->strings["Webpages"] = "Webpagina's"; -$a->strings["Your webpages"] = "Jouw webpagina's"; -$a->strings["Login"] = "Inloggen"; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; -$a->strings["Remote authentication"] = "Authenticatie op afstand"; -$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registreren"; -$a->strings["Create an account"] = "Maak een account aan"; -$a->strings["Help"] = "Hulp"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Applications, utilities, links, games"] = "Apps"; -$a->strings["Search site content"] = "Inhoud van deze hub doorzoeken"; -$a->strings["Directory"] = "Kanalengids"; -$a->strings["Channel Directory"] = "Kanalengids"; -$a->strings["Matrix"] = "Matrix"; -$a->strings["Your matrix"] = "Jouw matrix"; -$a->strings["Mark all matrix notifications seen"] = "Markeer alle matrixnotificaties als bekeken"; -$a->strings["Channel Home"] = "Tijdlijn kanaal"; -$a->strings["Channel home"] = "Tijdlijn kanaal"; -$a->strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -$a->strings["Connections"] = "Connecties"; -$a->strings["Notices"] = "Notificaties"; -$a->strings["Notifications"] = "Notificaties"; -$a->strings["See all notifications"] = "Alle notificaties weergeven"; -$a->strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; -$a->strings["Mail"] = "Privéberichten"; -$a->strings["Private mail"] = "Privéberichten"; -$a->strings["See all private messages"] = "Alle privéberichten weergeven"; -$a->strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -$a->strings["Inbox"] = "Postvak IN"; -$a->strings["Outbox"] = "Postvak UIT"; -$a->strings["Events"] = "Agenda"; -$a->strings["Event Calendar"] = "Agenda"; -$a->strings["See all events"] = "Alle gebeurtenissen weergeven"; -$a->strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -$a->strings["Channel Manager"] = "Kanaalbeheer"; -$a->strings["Manage Your Channels"] = "Beheer je kanalen"; -$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -$a->strings["Admin"] = "Beheer"; -$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -$a->strings["Loading..."] = "Aan het laden..."; -$a->strings["@name, #tag, content"] = "@kanaal, #label, inhoud"; -$a->strings["Please wait..."] = "Wachten aub..."; -$a->strings["Tags"] = "Tags"; -$a->strings["Keywords"] = "Trefwoorden"; -$a->strings["have"] = "heb"; -$a->strings["has"] = "heeft"; -$a->strings["want"] = "wil"; -$a->strings["wants"] = "wil"; -$a->strings["likes"] = "vindt dit leuk"; -$a->strings["dislikes"] = "vindt dit niet leuk"; -$a->strings[" and "] = " en "; -$a->strings["public profile"] = "openbaar profiel"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; -$a->strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["Install design element: "] = "Installeer ontwerpelement: "; -$a->strings["QR code"] = "QR-code"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -$a->strings["post"] = "bericht"; -$a->strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; -$a->strings["$1 spoiler"] = "$1 spoiler"; -$a->strings["$1 wrote:"] = "$1 schreef:"; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["(Unknown)"] = "(Onbekend)"; -$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; -$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["Collection not found."] = "Collectie niet gevonden."; -$a->strings["Collection is empty."] = "Collectie is leeg"; -$a->strings["Collection: %s"] = "Collectie: %s"; -$a->strings["Connection: %s"] = "Connectie: %s"; -$a->strings["Connection not found."] = "Connectie niet gevonden."; -$a->strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; -$a->strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; -$a->strings["Can view my photo albums"] = "Kan mijn fotoalbums bekijken"; -$a->strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; -$a->strings["Can view my file storage"] = "Kan mijn bestanden bekijken"; -$a->strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; -$a->strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; -$a->strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; -$a->strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; -$a->strings["Can post photos to my photo albums"] = "Kan foto's aan mijn fotoalbums toevoegen"; -$a->strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; -$a->strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -$a->strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; -$a->strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; -$a->strings["Can write to my file storage"] = "Kan bestanden aan mijn bestandsopslag toevoegen"; -$a->strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; -$a->strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; -$a->strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; -$a->strings["Social Networking"] = "Sociaal netwerk"; -$a->strings["Mostly Public"] = "Vrijwel alles openbaar"; -$a->strings["Restricted"] = "Beperkt zichtbaar"; -$a->strings["Private"] = "Verborgen kanaal"; -$a->strings["Community Forum"] = "Groepsforum"; -$a->strings["Feed Republish"] = "Feed herpubliceren"; -$a->strings["Special Purpose"] = "Speciaal doel"; -$a->strings["Celebrity/Soapbox"] = "Beroemdheid/alleen volgen"; -$a->strings["Group Repository"] = "Groepsopslag"; -$a->strings["Other"] = "Anders"; -$a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; -$a->strings["channel"] = "kanaal"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; -$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; -$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; -$a->strings["__ctx:title__ Likes"] = "vinden dit leuk"; -$a->strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; -$a->strings["__ctx:title__ Agree"] = "eens"; -$a->strings["__ctx:title__ Disagree"] = "oneens"; -$a->strings["__ctx:title__ Abstain"] = "onthoudingen"; -$a->strings["__ctx:title__ Attending"] = "aanwezig"; -$a->strings["__ctx:title__ Not attending"] = "niet aanwezig"; -$a->strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; -$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -$a->strings["Categories:"] = "Categorieën:"; -$a->strings["Filed under:"] = "Bewaard onder:"; -$a->strings["View in context"] = "In context bekijken"; -$a->strings["remove"] = "verwijderen"; -$a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; -$a->strings["View Source"] = "Bron weergeven"; -$a->strings["Follow Thread"] = "Conversatie volgen"; -$a->strings["View Status"] = "Status weergeven"; -$a->strings["View Photos"] = "Foto's weergeven"; -$a->strings["Matrix Activity"] = "Kanaal-activiteit"; -$a->strings["Edit Contact"] = "Contact bewerken"; -$a->strings["Send PM"] = "Privébericht verzenden"; -$a->strings["Poke"] = "Aanstoten"; -$a->strings["%s likes this."] = "%s vindt dit leuk."; -$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -$a->strings["%2\$d people like this."] = array( - 0 => "%2\$d persoon vindt dit leuk.", - 1 => "%2\$d personen vinden dit leuk.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "%2\$d persoon vindt dit niet leuk.", - 1 => "%2\$d personen vinden dit niet leuk.", -); -$a->strings["and"] = "en"; -$a->strings[", and %d other people"] = array( - 0 => ", en %d ander persoon", - 1 => ", en %d andere personen", -); -$a->strings["%s like this."] = "%s vinden dit leuk."; -$a->strings["%s don't like this."] = "%s vinden dit niet leuk."; -$a->strings["Visible to everybody"] = "Voor iedereen zichtbaar"; -$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; -$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; -$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Save to Folder:"] = "Bewaar in map: "; -$a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; -$a->strings["Share"] = "Delen"; -$a->strings["Page link name"] = "Linknaam pagina"; -$a->strings["Post as"] = "Bericht plaatsen als"; -$a->strings["Upload photo"] = "Foto uploaden"; -$a->strings["upload photo"] = "foto uploaden"; -$a->strings["Attach file"] = "Bestand toevoegen"; -$a->strings["attach file"] = "bestand toevoegen"; -$a->strings["Insert web link"] = "Weblink invoegen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Videolink invoegen"; -$a->strings["video link"] = "videolink"; -$a->strings["Insert audio link"] = "Audiolink invoegen"; -$a->strings["audio link"] = "audiolink"; -$a->strings["Set your location"] = "Locatie instellen"; -$a->strings["set location"] = "locatie instellen"; -$a->strings["Toggle voting"] = "Stemmen in- of uitschakelen"; -$a->strings["Clear browser location"] = "Locatie van webbrowser wissen"; -$a->strings["clear location"] = "locatie wissen"; -$a->strings["Title (optional)"] = "Titel (optioneel)"; -$a->strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -$a->strings["Permission settings"] = "Permissies"; -$a->strings["permissions"] = "permissies"; -$a->strings["Public post"] = "Openbaar bericht"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be"; -$a->strings["Set expiration date"] = "Verloopdatum instellen"; -$a->strings["OK"] = "OK"; -$a->strings["Cancel"] = "Annuleren"; -$a->strings["Discover"] = "Ontdekken"; -$a->strings["Imported public streams"] = "Openbare streams importeren"; -$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; -$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; -$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; -$a->strings["New"] = "Nieuw"; -$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -$a->strings["Starred"] = "Met ster"; -$a->strings["Favourite Posts"] = "Favoriete berichten"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; -$a->strings["Channel"] = "Kanaal"; -$a->strings["Status Messages and Posts"] = "Berichten in dit kanaal"; -$a->strings["About"] = "Over"; -$a->strings["Profile Details"] = "Profiel"; -$a->strings["Photo Albums"] = "Fotoalbums"; -$a->strings["Files and Storage"] = "Bestanden en opslagruimte"; -$a->strings["Chatrooms"] = "Chatkanalen"; -$a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; -$a->strings["Manage Webpages"] = "Webpagina's beheren"; -$a->strings["__ctx:noun__ Attending"] = array( - 0 => "aanwezig", - 1 => "aanwezig", -); -$a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "niet aanwezig", - 1 => "niet aanwezig", -); -$a->strings["__ctx:noun__ Undecided"] = array( - 0 => "nog niet beslist", - 1 => "nog niet beslist", -); -$a->strings["__ctx:noun__ Agree"] = array( - 0 => "eens", - 1 => "eens", -); -$a->strings["__ctx:noun__ Disagree"] = array( - 0 => "oneens", - 1 => "oneens", -); -$a->strings["__ctx:noun__ Abstain"] = array( - 0 => "onthouding", - 1 => "onthoudingen", -); -$a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; -$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; -$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; -$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -$a->strings["Invalid data packet"] = "Datapakket ongeldig"; -$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; -$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; -$a->strings["Embedded content"] = "Ingesloten inhoud"; -$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; -$a->strings["Logged out."] = "Uitgelogd."; -$a->strings["Failed authentication"] = "Mislukte authenticatie"; -$a->strings["Login failed."] = "Inloggen mislukt."; -$a->strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -$a->strings["Advanced"] = "Geavanceerd"; -$a->strings["Find Channels"] = "Kanalen vinden"; -$a->strings["Enter name or interest"] = "Vul naam of interesse in"; -$a->strings["Connect/Follow"] = "Verbinden/volgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; -$a->strings["Find"] = "Vinden"; -$a->strings["Channel Suggestions"] = "Voorgestelde kanalen"; -$a->strings["Random Profile"] = "Willekeurig profiel"; -$a->strings["Invite Friends"] = "Vrienden uitnodigen"; -$a->strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; -$a->strings["%d connection in common"] = array( - 0 => "%d gemeenschappelijke connectie", - 1 => "%d gemeenschappelijke connecties", -); -$a->strings["show more"] = "meer connecties weergeven"; -$a->strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; -$a->strings["Show"] = "Tonen"; -$a->strings["Don't show"] = "Niet tonen"; -$a->strings["Permissions"] = "Permissies"; -$a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["No source file."] = "Geen bronbestand."; -$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -$a->strings["Path not available."] = "Pad niet beschikbaar."; -$a->strings["Empty pathname"] = "Padnaam leeg"; -$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -$a->strings["Path not found."] = "Pad niet gevonden"; -$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -$a->strings["database storage failed."] = "opslag in database mislukt."; +$a->strings["Collection"] = "map"; +$a->strings["\$Projectname Notification"] = "\$Projectname-notificatie"; +$a->strings["\$projectname"] = "\$projectname"; +$a->strings["Thank You,"] = "Bedankt,"; +$a->strings["%s Administrator"] = "Beheerder %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notificatie] Nieuw privébericht ontvangen op %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; +$a->strings["a private message"] = "een privébericht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notificatie] %s heeft je genoemd"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notificatie] %1\$s heeft je aangestoten"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notificatie] %s heeft jouw bericht getagd"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Notificatie] Connectieverzoek ontvangen"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; +$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificatie] Kanaalvoorstel ontvangen"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; +$a->strings["Name:"] = "Naam:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; +$a->strings["[Red:Notify]"] = "[Red:Notificatie]"; +$a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; $a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; $a->strings["Empty name"] = "Ontbrekende naam"; $a->strings["Name too long"] = "Naam te lang"; @@ -794,6 +627,7 @@ $a->strings["Change profile photo"] = "Profielfoto veranderen"; $a->strings["Profiles"] = "Profielen"; $a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken"; $a->strings["Create New Profile"] = "Nieuw profiel aanmaken"; +$a->strings["Edit Profile"] = "Profiel bewerken"; $a->strings["Profile Image"] = "Profielfoto"; $a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; $a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; @@ -809,7 +643,6 @@ $a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; $a->strings["[No description]"] = "[Geen omschrijving]"; $a->strings["Event Reminders"] = "Herinneringen"; $a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["Profile"] = "Profiel"; $a->strings["Full Name:"] = "Volledige naam:"; $a->strings["Like this channel"] = "Vind dit kanaal leuk"; $a->strings["j F, Y"] = "F j Y"; @@ -848,6 +681,7 @@ $a->strings["Transsexual"] = "Transseksueel"; $a->strings["Hermaphrodite"] = "Hermafrodiet"; $a->strings["Neuter"] = "Genderneutraal"; $a->strings["Non-specific"] = "Niet gespecificeerd"; +$a->strings["Other"] = "Anders"; $a->strings["Undecided"] = "Nog niet beslist"; $a->strings["Males"] = "Mannen"; $a->strings["Females"] = "Vrouwen"; @@ -892,498 +726,252 @@ $a->strings["Uncertain"] = "Onzeker"; $a->strings["It's complicated"] = "Het is ingewikkeld"; $a->strings["Don't care"] = "Maakt mij niks uit"; $a->strings["Ask me"] = "Vraag het me"; -$a->strings["Site Admin"] = "Hubbeheerder"; -$a->strings["Address Book"] = "Connecties"; -$a->strings["Mood"] = "Stemming"; -$a->strings["Probe"] = "Onderzoeken"; -$a->strings["Suggest"] = "Voorstellen"; -$a->strings["Random Channel"] = "Willekeurig kanaal"; -$a->strings["Invite"] = "Uitnodigen "; -$a->strings["Features"] = "Extra functies"; -$a->strings["Language"] = "Taal"; -$a->strings["Post"] = "Bericht"; -$a->strings["Profile Photo"] = "Profielfoto"; -$a->strings["Update"] = "Bijwerken"; -$a->strings["Install"] = "Installeren"; -$a->strings["Purchase"] = "Aanschaffen"; -$a->strings["Missing room name"] = "Naam chatkanaal ontbreekt"; -$a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; -$a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; -$a->strings["Room not found."] = "Chatkanaal niet gevonden"; -$a->strings["Room is full"] = "Chatkanaal is vol"; +$a->strings["New Page"] = "Nieuwe pagina"; +$a->strings["View"] = "Weergeven"; +$a->strings["Actions"] = "Acties"; +$a->strings["Page Link"] = "Paginalink"; +$a->strings["Title"] = "Titel"; +$a->strings["Created"] = "Aangemaakt"; +$a->strings["Edited"] = "Bewerkt"; +$a->strings["No recipient provided."] = "Geen ontvanger opgegeven."; +$a->strings["[no subject]"] = "[geen onderwerp]"; +$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +$a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; +$a->strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; +$a->strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; +$a->strings["Can view my photo albums"] = "Kan mijn fotoalbums bekijken"; +$a->strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; +$a->strings["Can view my file storage"] = "Kan mijn bestanden bekijken"; +$a->strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; +$a->strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; +$a->strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; +$a->strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; +$a->strings["Can post photos to my photo albums"] = "Kan foto's aan mijn fotoalbums toevoegen"; +$a->strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; +$a->strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +$a->strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; +$a->strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; +$a->strings["Can write to my file storage"] = "Kan bestanden aan mijn bestandsopslag toevoegen"; +$a->strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; +$a->strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; +$a->strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +$a->strings["Social Networking"] = "Sociaal netwerk"; +$a->strings["Mostly Public"] = "Vrijwel alles openbaar"; +$a->strings["Restricted"] = "Beperkt zichtbaar"; +$a->strings["Private"] = "Verborgen kanaal"; +$a->strings["Community Forum"] = "Groepsforum"; +$a->strings["Feed Republish"] = "Feed herpubliceren"; +$a->strings["Special Purpose"] = "Speciaal doel"; +$a->strings["Celebrity/Soapbox"] = "Beroemdheid/alleen volgen"; +$a->strings["Group Repository"] = "Groepsopslag"; +$a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["End this session"] = "Beëindig deze sessie"; +$a->strings["Home"] = "Home"; +$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; +$a->strings["Your profile page"] = "Jouw profielpagina"; +$a->strings["Edit Profiles"] = "Bewerk profielen"; +$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["Edit your profile"] = "Jouw profiel bewerken"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Your files"] = "Jouw bestanden"; +$a->strings["Your chatrooms"] = "Jouw chatkanalen"; +$a->strings["Your bookmarks"] = "Jouw bladwijzers"; +$a->strings["Your webpages"] = "Jouw webpagina's"; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; +$a->strings["Remote authentication"] = "Authenticatie op afstand"; +$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Register"] = "Registreren"; +$a->strings["Create an account"] = "Maak een account aan"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Applications, utilities, links, games"] = "Apps"; +$a->strings["Search site content"] = "Inhoud van deze hub doorzoeken"; +$a->strings["Channel Directory"] = "Kanalengids"; +$a->strings["Your matrix"] = "Jouw matrix"; +$a->strings["Mark all matrix notifications seen"] = "Markeer alle matrixnotificaties als bekeken"; +$a->strings["Channel home"] = "Tijdlijn kanaal"; +$a->strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +$a->strings["Connections"] = "Connecties"; +$a->strings["Notices"] = "Notificaties"; +$a->strings["Notifications"] = "Notificaties"; +$a->strings["See all notifications"] = "Alle notificaties weergeven"; +$a->strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["See all private messages"] = "Alle privéberichten weergeven"; +$a->strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +$a->strings["Inbox"] = "Postvak IN"; +$a->strings["Outbox"] = "Postvak UIT"; +$a->strings["Event Calendar"] = "Agenda"; +$a->strings["See all events"] = "Alle gebeurtenissen weergeven"; +$a->strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +$a->strings["Manage Your Channels"] = "Beheer je kanalen"; +$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +$a->strings["Admin"] = "Beheer"; +$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +$a->strings["@name, #tag, content"] = "@kanaal, #label, inhoud"; +$a->strings["Please wait..."] = "Wachten aub..."; $a->strings["Please choose"] = "Maak een keuze"; $a->strings["Agree"] = "Eens"; $a->strings["Disagree"] = "Oneens"; $a->strings["Abstain"] = "onthouding"; -$a->strings["projectname"] = "projectname"; -$a->strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; -$a->strings["Create a new channel"] = "Nieuw kanaal aanmaken"; -$a->strings["Current Channel"] = "Huidig kanaal"; -$a->strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; -$a->strings["Default Channel"] = "Standaardkanaal"; -$a->strings["Make Default"] = "Als standaard instellen"; -$a->strings["%d new messages"] = "%d nieuwe berichten"; -$a->strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; -$a->strings["Delegated Channels"] = "Uitbestede kanalen"; -$a->strings["Name is required"] = "Naam is vereist"; -$a->strings["Key and Secret are required"] = "Key en secret zijn vereist"; -$a->strings["Diaspora Policy Settings updated."] = "Beleidsinstellingen Diaspora bijgewerkt."; -$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; -$a->strings["Password changed."] = "Wachtwoord veranderd."; -$a->strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; -$a->strings["Not valid email."] = "Geen geldig e-mailadres."; -$a->strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; -$a->strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; -$a->strings["Settings updated."] = "Instellingen bijgewerkt."; -$a->strings["No"] = "Nee"; -$a->strings["Yes"] = "Ja"; -$a->strings["Add application"] = "Applicatie toevoegen"; -$a->strings["Name of application"] = "Naam van applicatie"; -$a->strings["Consumer Key"] = "Consumer key"; -$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; -$a->strings["Consumer Secret"] = "Consumer secret"; -$a->strings["Redirect"] = "Redirect/doorverwijzing"; -$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; -$a->strings["Icon url"] = "URL van pictogram"; -$a->strings["Optional"] = "Optioneel"; -$a->strings["You can't edit this application."] = "Je kan deze applicatie niet bewerken"; -$a->strings["Connected Apps"] = "Verbonden applicaties"; -$a->strings["Client key starts with"] = "Client key begint met"; -$a->strings["No name"] = "Geen naam"; -$a->strings["Remove authorization"] = "Autorisatie verwijderen"; -$a->strings["No feature settings configured"] = "Geen extra functie- of plugin-instellingen"; -$a->strings["Feature/Addon Settings"] = "Extra functie- en plugin-instellingen"; -$a->strings["Settings for the built-in Diaspora emulator"] = "Instellingen voor de ingebouwde Diaspora-emulator"; -$a->strings["Allow any Diaspora member to comment on your public posts"] = "Sta toe dat elk Diaspora-lid op jouw openbare berichten kan reageren."; -$a->strings["Diaspora Policy Settings"] = "Beleidsinstellingen Diaspora"; -$a->strings["Prevent your hashtags from being redirected to other sites"] = "Voorkom dat jouw tags naar andere websites worden doorverwezen"; -$a->strings["Account Settings"] = "Account-instellingen"; -$a->strings["Enter New Password:"] = "Nieuw wachtwoord invoeren:"; -$a->strings["Confirm New Password:"] = "Nieuw wachtwoord bevestigen:"; -$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; -$a->strings["Email Address:"] = "E-mailadres:"; -$a->strings["Remove Account"] = "Account verwijderen"; -$a->strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; -$a->strings["Off"] = "Uit"; -$a->strings["On"] = "Aan"; -$a->strings["Additional Features"] = "Extra functies"; -$a->strings["Connector Settings"] = "Instellingen externe koppelingen"; -$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; -$a->strings["%s - (Experimental)"] = "%s - (experimenteel)"; -$a->strings["mobile"] = "mobiel"; -$a->strings["Display Settings"] = "Weergave-instellingen"; -$a->strings["Display Theme:"] = "Gebruik thema:"; -$a->strings["Mobile Theme:"] = "Mobiel thema:"; -$a->strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; -$a->strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; -$a->strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; -$a->strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; -$a->strings["Show emoticons (smilies) as images"] = "Toon emoticons (smilies) als afbeeldingen"; -$a->strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; -$a->strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; -$a->strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; -$a->strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; -$a->strings["Use blog/list mode on matrix page"] = "Gebruik blog/lijst-modus op matrixpagina"; -$a->strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; -$a->strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; -$a->strings["Matrix page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op matrixpagina (in pixels)"; -$a->strings["Nobody except yourself"] = "Niemand, behalve jezelf"; -$a->strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; -$a->strings["Approved connections"] = "Geaccepteerde connecties"; -$a->strings["Any connections"] = "Alle connecties"; -$a->strings["Anybody on this website"] = "Iedereen op deze hub"; -$a->strings["Anybody in this network"] = "Iedereen in dit netwerk"; -$a->strings["Anybody authenticated"] = "Geauthenticeerd"; -$a->strings["Anybody on the internet"] = "Iedereen op het internet"; -$a->strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; -$a->strings["or"] = "of"; -$a->strings["Your channel address is"] = "Jouw kanaaladres is"; -$a->strings["Channel Settings"] = "Kanaal-instellingen"; -$a->strings["Basic Settings"] = "Basis-instellingen"; -$a->strings["Your Timezone:"] = "Jouw tijdzone:"; -$a->strings["Default Post Location:"] = "Standaardlocatie bericht:"; -$a->strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; -$a->strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; -$a->strings["Adult Content"] = "Inhoud voor volwassenen"; -$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; -$a->strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; -$a->strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; -$a->strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; -$a->strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op \$Projectname aanwezig bent"; -$a->strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; -$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; -$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; -$a->strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; -$a->strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; -$a->strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; -$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; -$a->strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen"; -$a->strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; -$a->strings["0 or blank prevents expiration"] = "0 of leeg voorkomt het verlopen"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; -$a->strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; -$a->strings["Default Post Permissions"] = "Standaard permissies voor nieuwe berichten"; -$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -$a->strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; -$a->strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; -$a->strings["Notification Settings"] = "Notificatie-instellingen"; -$a->strings["By default post a status message when:"] = "Plaats automatisch een statusbericht wanneer:"; -$a->strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; -$a->strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; -$a->strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; -$a->strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; -$a->strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; -$a->strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; -$a->strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; -$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; -$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; -$a->strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; -$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; -$a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; -$a->strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; -$a->strings["Unseen matrix activity"] = "Niet bekeken matrix-activiteit"; -$a->strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; -$a->strings["Unseen private messages"] = "Niet bekeken privéberichten"; -$a->strings["Recommended"] = "Aanbevolen"; -$a->strings["Upcoming events"] = "Aankomende gebeurtenissen"; -$a->strings["Events today"] = "Gebeurtissen van vandaag"; -$a->strings["Upcoming birthdays"] = "Aankomende verjaardagen"; -$a->strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; -$a->strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; -$a->strings["System info messages"] = "Systeemmededelingen"; -$a->strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; -$a->strings["New connections"] = "Nieuwe connecties"; -$a->strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; -$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; -$a->strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; -$a->strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; -$a->strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; -$a->strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; -$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; -$a->strings["Miscellaneous Settings"] = "Diverse instellingen"; -$a->strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; -$a->strings["Remove Channel"] = "Kanaal verwijderen"; -$a->strings["Remove this channel."] = "Verwijder dit kanaal."; -$a->strings["Xchan Lookup"] = "Xchan opzoeken"; -$a->strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; -$a->strings["Not found."] = "Niet gevonden."; -$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -$a->strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -$a->strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; -$a->strings["Page Title"] = "Paginatitel"; -$a->strings["Channel added."] = "Kanaal toegevoegd."; -$a->strings["Tag removed"] = "Tag verwijderd"; -$a->strings["Remove Item Tag"] = "Verwijder item-tag"; -$a->strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; -$a->strings["Remove"] = "Verwijderen"; -$a->strings["Continue"] = "Ga verder"; -$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -$a->strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; -$a->strings["Thing updated"] = "Ding bijgewerkt"; -$a->strings["Object store: failed"] = "Opslaan van ding mislukt"; -$a->strings["Thing added"] = "Ding toegevoegd"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Ding weergeven"; -$a->strings["item not found."] = "Item niet gevonden"; -$a->strings["Edit Thing"] = "Ding bewerken"; -$a->strings["Select a profile"] = "Kies een profiel"; -$a->strings["Post an activity"] = "Plaats een bericht"; -$a->strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -$a->strings["Name of thing e.g. something"] = "Naam van ding"; -$a->strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -$a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optioneel)"; -$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; -$a->strings["Item not available."] = "Item is niet aanwezig."; -$a->strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -$a->strings["\$Projectname"] = "\$Projectname"; -$a->strings["Welcome to %s"] = "Welkom op %s"; -$a->strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; -$a->strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; -$a->strings["Image exceeds size limit of %d"] = "Afbeeldingsgrootte overschrijdt het limiet van %d"; -$a->strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken."; -$a->strings["Photo not available."] = "Foto niet beschikbaar."; -$a->strings["Upload File:"] = "Bestand uploaden:"; -$a->strings["Select a profile:"] = "Kies een profiel:"; -$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; -$a->strings["skip this step"] = "sla deze stap over"; -$a->strings["select a photo from your photo albums"] = "Kies een foto uit jouw fotoalbums"; -$a->strings["Crop Image"] = "Afbeelding bijsnijden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; -$a->strings["Done Editing"] = "Klaar met bewerken"; -$a->strings["Image uploaded successfully."] = "Uploaden afbeelding geslaagd"; -$a->strings["Image upload failed."] = "Uploaden afbeelding mislukt"; -$a->strings["Image size reduction [%s] failed."] = "Verkleinen [%s] van afbeelding mislukt."; -$a->strings["Invalid item."] = "Ongeldig item."; -$a->strings["Channel not found."] = "Kanaal niet gevonden."; -$a->strings["Page not found."] = "Pagina niet gevonden."; -$a->strings["Like/Dislike"] = "Leuk/niet leuk"; -$a->strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; -$a->strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account te registreren om verder te kunnen gaan."; -$a->strings["Invalid request."] = "Ongeldig verzoek"; -$a->strings["thing"] = "ding"; -$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -$a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; -$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; -$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; -$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; -$a->strings["Action completed."] = "Actie voltooid"; -$a->strings["Thank you."] = "Bedankt"; -$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -$a->strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; -$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Gebeurtenis bewerken"; -$a->strings["Delete event"] = "Gebeurtenis verwijderen"; -$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; -$a->strings["Previous"] = "Vorige"; -$a->strings["Next"] = "Volgende"; -$a->strings["Export"] = "Exporteren"; -$a->strings["Event removed"] = "Gebeurtenis verwijderd"; -$a->strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; -$a->strings["Event details"] = "Details van gebeurtenis"; -$a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; -$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -$a->strings["Event Starts:"] = "Begin gebeurtenis:"; -$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant"; -$a->strings["Event Finishes:"] = "Einde gebeurtenis:"; -$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; -$a->strings["Description:"] = "Omschrijving:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; -$a->strings["Public Sites"] = "Openbare hubs"; -$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."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het \$Projectname-netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -$a->strings["Rate this hub"] = "Beoordeel deze hub"; -$a->strings["Site URL"] = "URL hub"; -$a->strings["Access Type"] = "Toegangstype"; -$a->strings["Registration Policy"] = "Registratiebeleid"; -$a->strings["Location"] = "Locatie"; -$a->strings["View hub ratings"] = "Bekijk hubbeoordelingen"; -$a->strings["Rate"] = "Beoordeel"; -$a->strings["View ratings"] = "Bekijk beoordelingen"; -$a->strings["Edit post"] = "Bericht bewerken"; -$a->strings["\$Projectname channel"] = "\$Projectname-kanaal"; -$a->strings["Collection created."] = "Collectie aangemaakt"; -$a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden"; -$a->strings["Collection updated."] = "Collectie bijgewerkt."; -$a->strings["Create a collection of channels."] = "Kanaalcollectie aanmaken"; -$a->strings["Collection Name: "] = "Naam collectie:"; -$a->strings["Members are visible to other channels"] = "Kanalen in deze collectie zijn zichtbaar voor andere kanalen"; -$a->strings["Collection removed."] = "Collectie verwijderd"; -$a->strings["Unable to remove collection."] = "Verwijderen collectie mislukt"; -$a->strings["Collection Editor"] = "Collectiebewerker"; -$a->strings["Members"] = "Kanalen"; -$a->strings["All Connected Channels"] = "Alle kanaalconnecties"; -$a->strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; -$a->strings["Version %s"] = "Versie %s"; -$a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; -$a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps"; -$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; -$a->strings["Tag: "] = "Tag: "; -$a->strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; -$a->strings["Running at web location"] = "Draaiend op weblocatie"; -$a->strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Bezoek redmatrix.me om meer over \$Projectname te leren."; -$a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - punt - com"; -$a->strings["Site Administrators"] = "Hubbeheerders: "; -$a->strings["Help:"] = "Hulp:"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; +$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["view full size"] = "volledige grootte tonen"; +$a->strings["No Subject"] = "Geen onderwerp"; +$a->strings["Default"] = "Standaard"; +$a->strings["parent"] = "omhoog"; +$a->strings["Principal"] = "principal"; +$a->strings["Addressbook"] = "Adresboek"; +$a->strings["Calendar"] = "Agenda"; +$a->strings["Schedule Inbox"] = "Planning-postvak IN"; +$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; +$a->strings["%1\$s used"] = "%1\$s gebruikt"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s van %2\$s gebruikt (%3\$s%)"; +$a->strings["Total"] = "Totaal"; +$a->strings["Shared"] = "Gedeeld"; +$a->strings["Create"] = "Aanmaken"; +$a->strings["Upload"] = "Uploaden"; +$a->strings["Name"] = "Naam"; +$a->strings["Type"] = "Type"; +$a->strings["Size"] = "Grootte"; +$a->strings["Last Modified"] = "Laatst gewijzigd"; +$a->strings["Create new folder"] = "Nieuwe map aanmaken"; +$a->strings["Upload file"] = "Bestand uploaden"; +$a->strings["Embedded content"] = "Ingesloten inhoud"; +$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; +$a->strings["Comment"] = "Reactie"; +$a->strings["[+] show all"] = "[+] alle"; +$a->strings["[-] show less"] = "[-] minder reacties weergeven"; +$a->strings["[+] expand"] = "[+] uitklappen"; +$a->strings["[-] collapse"] = "[-] inklappen"; +$a->strings["Password too short"] = "Wachtwoord te kort"; +$a->strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; +$a->strings["everybody"] = "iedereen"; +$a->strings["Secret Passphrase"] = "Geheim wachtwoord"; +$a->strings["Passphrase hint"] = "Wachtwoordhint"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen."; +$a->strings["close all"] = "Alles sluiten"; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["Rate This Channel (this is public)"] = "Beoordeel dit kanaal (dit is openbaar)"; +$a->strings["Rating"] = "Beoordeling"; +$a->strings["Describe (optional)"] = "Omschrijving (optioneel)"; +$a->strings["Submit"] = "Opslaan"; +$a->strings["Please enter a link URL"] = "Vul een internetadres/URL in:"; +$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +$a->strings["ago"] = "geleden"; +$a->strings["from now"] = "vanaf nu"; +$a->strings["less than a minute"] = "minder dan een minuut"; +$a->strings["about a minute"] = "ongeveer een minuut"; +$a->strings["%d minutes"] = "%d minuten"; +$a->strings["about an hour"] = "ongeveer een uur"; +$a->strings["about %d hours"] = "ongeveer %d uren"; +$a->strings["a day"] = "een dag"; +$a->strings["%d days"] = "%d dagen"; +$a->strings["about a month"] = "ongeveer een maand"; +$a->strings["%d months"] = "%d maanden"; +$a->strings["about a year"] = "ongeveer een jaar"; +$a->strings["%d years"] = "%d jaren"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["Save to Folder"] = "In map opslaan"; +$a->strings["I will attend"] = "Aanwezig"; +$a->strings["I will not attend"] = "Niet aanwezig"; +$a->strings["I might attend"] = "Mogelijk aanwezig"; +$a->strings["I agree"] = "Eens"; +$a->strings["I disagree"] = "Oneens"; +$a->strings["I abstain"] = "Onthouding"; +$a->strings["Add Star"] = "Ster toevoegen"; +$a->strings["Remove Star"] = "Ster verwijderen"; +$a->strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; +$a->strings["starred"] = "met ster"; +$a->strings["Add Tag"] = "Tag toevoegen"; +$a->strings["I like this (toggle)"] = "Vind ik leuk"; +$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +$a->strings["Share This"] = "Delen"; +$a->strings["share"] = "delen"; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties weergeven", +); +$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; +$a->strings["to"] = "aan"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; +$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; +$a->strings["Save Bookmarks"] = "Bladwijzers opslaan"; +$a->strings["Add to Calendar"] = "Aan agenda toevoegen"; +$a->strings["Mark all seen"] = "Markeer alles als bekeken"; +$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk"; +$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +$a->strings["Close"] = "Sluiten"; +$a->strings["This is you"] = "Dit ben jij"; +$a->strings["Image"] = "Afbeelding"; +$a->strings["Insert Link"] = "Link invoegen"; +$a->strings["Video"] = "Video"; +$a->strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; +$a->strings["Show"] = "Tonen"; +$a->strings["Don't show"] = "Niet tonen"; +$a->strings["Permissions"] = "Permissies"; $a->strings["Not Found"] = "Niet gevonden"; -$a->strings["\$Projectname Server - Setup"] = "\$Projectname Server - Setup"; -$a->strings["Could not connect to database."] = "Could not connect to database."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; -$a->strings["Could not create table."] = "Could not create table."; -$a->strings["Your site database has been installed."] = "Your hub database has been installed."; -$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; -$a->strings["System check"] = "System check"; -$a->strings["Check again"] = "Check again"; -$a->strings["Database connection"] = "Database connection"; -$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "In order to install \$Projectname we need to know how to connect to your database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; -$a->strings["Database Server Name"] = "Database Server Name"; -$a->strings["Default is localhost"] = "Default is localhost"; -$a->strings["Database Port"] = "Database Port"; -$a->strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; -$a->strings["Database Login Name"] = "Database Login Name"; -$a->strings["Database Login Password"] = "Database Login Password"; -$a->strings["Database Name"] = "Database Name"; -$a->strings["Database Type"] = "Database Type"; -$a->strings["Site administrator email address"] = "Hub administrator email address"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; -$a->strings["Website URL"] = "Hub URL"; -$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; -$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; -$a->strings["Site settings"] = "Hub settings"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server 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."] = "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."; -$a->strings["PHP executable path"] = "PHP executable path"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; -$a->strings["Command line PHP"] = "Command line PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; -$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; -$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"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generate encryption keys"; -$a->strings["libCurl PHP module"] = "libCurl PHP module"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; -$a->strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; -$a->strings["mb_string PHP module"] = "mb_string PHP module"; -$a->strings["mcrypt PHP module"] = "mcrypt PHP module"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; -$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"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; -$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; -$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; -$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."] = "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."; -$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."] = "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."; -$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."] = "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."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; -$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."] = "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."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; -$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."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; -$a->strings["%s is writable"] = "%s is writable"; -$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 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"; -$a->strings["store is writable"] = "store is writable"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; -$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!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own 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."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; -$a->strings["SSL certificate validation"] = "SSL certificate validation"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; -$a->strings["Url rewrite is working"] = "Url rewrite is working"; -$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."] = "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."; -$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; -$a->strings["

What next

"] = "

Wat nu

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; -$a->strings["No channel."] = "Geen kanaal."; -$a->strings["Common connections"] = "Veel voorkomende connecties"; -$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; -$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; -$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; -$a->strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; -$a->strings["Connection updated."] = "Connectie bijgewerkt."; -$a->strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; -$a->strings["Blocked"] = "Geblokkeerd"; -$a->strings["Ignored"] = "Genegeerd"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Archived"] = "Gearchiveerd"; -$a->strings["Suggest new connections"] = "Nieuwe kanalen voorstellen"; -$a->strings["New Connections"] = "Nieuwe connecties"; -$a->strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; -$a->strings["All Connections"] = "Alle connecties"; -$a->strings["Show all connections"] = "Toon alle connecties"; -$a->strings["Unblocked"] = "Niet geblokkeerd"; -$a->strings["Only show unblocked connections"] = "Toon alleen niet geblokkeerde connecties"; -$a->strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; -$a->strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; -$a->strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; -$a->strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit connection"] = "Connectie bewerken"; -$a->strings["Search your connections"] = "Doorzoek jouw connecties"; -$a->strings["Finding: "] = "Zoeken naar: "; -$a->strings["Block Name"] = "Bloknaam"; -$a->strings["Block Title"] = "Bloktitel"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; -$a->strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "\$Projectname - gasttoegang: Accountnaam: {jouw e-mailadres}, wachtwoord: +++"; -$a->strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; -$a->strings["Album not found."] = "Album niet gevonden."; -$a->strings["Delete Album"] = "Verwijder album"; -$a->strings["Delete Photo"] = "Verwijder foto"; -$a->strings["Public access denied."] = "Openbare toegang geweigerd."; -$a->strings["No photos selected"] = "Geen foto's geselecteerd"; -$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; -$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; -$a->strings["Upload Photos"] = "Foto's uploaden"; -$a->strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; -$a->strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -$a->strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload."; -$a->strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; -$a->strings["Contact Photos"] = "Connectiefoto's"; -$a->strings["Show Newest First"] = "Nieuwste eerst weergeven"; -$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; -$a->strings["View Photo"] = "Foto weergeven"; -$a->strings["Edit Album"] = "Album bewerken"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; -$a->strings["Photo not available"] = "Foto niet aanwezig"; -$a->strings["Use as profile photo"] = "Als profielfoto gebruiken"; -$a->strings["Private Photo"] = "Privéfoto"; -$a->strings["View Full Size"] = "Volledige grootte weergeven"; -$a->strings["Edit photo"] = "Foto bewerken"; -$a->strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; -$a->strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; -$a->strings["Caption"] = "Bijschrift"; -$a->strings["Add a Tag"] = "Tag toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; -$a->strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; -$a->strings["In This Photo:"] = "Op deze foto:"; -$a->strings["Map"] = "Kaart"; -$a->strings["View Album"] = "Album weergeven"; -$a->strings["Recent Photos"] = "Recente foto's"; -$a->strings["Profile Match"] = "Profielovereenkomst"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; -$a->strings["is interested in:"] = "is geïnteresseerd in:"; -$a->strings["No matches"] = "Geen overeenkomsten"; -$a->strings["Away"] = "Afwezig"; -$a->strings["Online"] = "Online"; -$a->strings["Select a bookmark folder"] = "Kies een bladwijzermap"; -$a->strings["Save Bookmark"] = "Bladwijzer opslaan"; -$a->strings["URL of bookmark"] = "URL van bladwijzer"; -$a->strings["Description"] = "Omschrijving"; -$a->strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; -$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; -$a->strings["System Notifications"] = "Systeemnotificaties"; -$a->strings["network"] = "netwerk"; -$a->strings["RSS"] = "RSS"; -$a->strings["Layout updated."] = "Lay-out bijgewerkt."; -$a->strings["Edit System Page Description"] = "Systeempagina's bewerken"; -$a->strings["Layout not found."] = "Lay-out niet gevonden."; -$a->strings["Module Name:"] = "Modulenaam:"; -$a->strings["Layout Help"] = "Lay-out-hulp"; -$a->strings["- select -"] = "- kies map -"; +$a->strings["Page not found."] = "Pagina niet gevonden."; +$a->strings["Light (Red Matrix default)"] = "Light (\$Projectname-standaard)"; +$a->strings["Theme settings"] = "Thema-instellingen"; +$a->strings["Select scheme"] = "Kies schema van thema"; +$a->strings["Narrow navbar"] = "Smalle navigatiebalk"; +$a->strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk"; +$a->strings["Navigation bar gradient top color"] = "Bovenste gradiëntkleur navigatiebalk"; +$a->strings["Navigation bar gradient bottom color"] = "Onderste gradiëntkleur navigatiebalk"; +$a->strings["Navigation active button gradient top color"] = "Bovenste gradiëntkleur actieve knop navigatiebalk"; +$a->strings["Navigation active button gradient bottom color"] = "Onderste gradiëntkleur actieve knop op navigatiebalk"; +$a->strings["Navigation bar border color "] = "Randkleur navigatiebalk "; +$a->strings["Navigation bar icon color "] = "Pictogramkleur navigatiebalk"; +$a->strings["Navigation bar active icon color "] = "Actieve pictogramkleur navigatiebalk"; +$a->strings["link color"] = "Linkkleur instellen"; +$a->strings["Set font-color for banner"] = "Tekstkleur van banner instellen"; +$a->strings["Set the background color"] = "Achtergrondkleur instellen"; +$a->strings["Set the background image"] = "Achtergrondafbeelding instellen"; +$a->strings["Set the background color of items"] = "Achtergrondkleur items instellen"; +$a->strings["Set the background color of comments"] = "Achtergrondkleur reacties instellen"; +$a->strings["Set the border color of comments"] = "Randkleur reacties instellen"; +$a->strings["Set the indent for comments"] = "Inspringen reacties instellen"; +$a->strings["Set the basic color for item icons"] = "Basiskleur itempictogrammen instellen"; +$a->strings["Set the hover color for item icons"] = "Hoverkleur itempictogrammen instellen"; +$a->strings["Set font-size for the entire application"] = "Tekstgrootte van de volledige applicatie instellen"; +$a->strings["Example: 14px"] = "Voorbeeld: 14px"; +$a->strings["Set font-size for posts and comments"] = "Lettergrootte voor berichten en reacties instellen"; +$a->strings["Set font-color for posts and comments"] = "Tekstkleur van berichten en reacties"; +$a->strings["Set radius of corners"] = "Radius van hoeken instellen"; +$a->strings["Set shadow depth of photos"] = "Schaduwdiepte van foto's instellen"; +$a->strings["Set maximum width of content region in pixel"] = "Maximumbreedte conversatieruimte instellen (in pixels)"; +$a->strings["Leave empty for default width"] = "Laat leeg voor standaardbreedte"; +$a->strings["Center page content"] = "Inhoud centreren"; +$a->strings["Set minimum opacity of nav bar - to hide it"] = "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)"; +$a->strings["Set size of conversation author photo"] = "Grootte profielfoto's van berichten instellen"; +$a->strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen"; $a->strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; $a->strings["Nothing to import."] = "Niets gevonden om te importeren"; $a->strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; $a->strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; +$a->strings["The data provided is not compatible with this project."] = "De geïmporteerde gegevens zijn niet compatibel met dit project."; +$a->strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; $a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; -$a->strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; $a->strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; $a->strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; -$a->strings["Import completed."] = "Import voltooid."; $a->strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; $a->strings["Import Channel"] = "Kanaal importeren"; -$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."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken. Alleen de identiteit en de connecties zullen geïmporteerd worden. Het importeren van inhoud is nog niet beschikbaar."; +$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."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; $a->strings["File to Upload"] = "Bestand om te uploaden"; $a->strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; $a->strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; @@ -1391,29 +979,93 @@ $a->strings["Your old login email address"] = "Het e-mailadres van je oude accou $a->strings["Your old login password"] = "Wachtwoord van jouw oude account"; $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."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; $a->strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; -$a->strings["Import existing posts if possible"] = "Importeer bestaande berichten (wanneer mogelijk)"; -$a->strings["Item not found"] = "Item niet gevonden"; -$a->strings["Edit Layout"] = "Lay-out bewerken"; -$a->strings["Delete layout?"] = "Lay-out verwijderen?"; -$a->strings["Insert YouTube video"] = "YouTube-video invoegen"; -$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen"; -$a->strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; +$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van hoeveelheid geheugen hub)"; +$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; +$a->strings["Public access denied."] = "Openbare toegang geweigerd."; +$a->strings["Items tagged with: %s"] = "Items getagd met %s"; +$a->strings["Search results for: %s"] = "Zoekresultaten voor %s"; +$a->strings["network"] = "netwerk"; +$a->strings["RSS"] = "RSS"; +$a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; +$a->strings["Away"] = "Afwezig"; +$a->strings["Online"] = "Online"; +$a->strings["Menu not found."] = "Menu niet gevonden."; +$a->strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; +$a->strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; +$a->strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; +$a->strings["Not found."] = "Niet gevonden."; +$a->strings["Menu Item Permissions"] = "Permissies menu-item"; +$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +$a->strings["Link Name"] = "Linknaam"; +$a->strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; +$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; +$a->strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; +$a->strings["Open link in new window"] = "Open link in nieuw venster"; +$a->strings["Order in list"] = "Volgorde in lijst"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +$a->strings["Submit and finish"] = "Opslaan en afsluiten"; +$a->strings["Submit and continue"] = "Opslaan en doorgaan"; +$a->strings["Menu:"] = "Menu:"; +$a->strings["Link Target"] = "Linkdoel"; +$a->strings["Edit menu"] = "Menu bewerken"; +$a->strings["Edit element"] = "Onderdeel bewerken"; +$a->strings["Drop element"] = "Onderdeel verwijderen"; +$a->strings["New element"] = "Nieuw element"; +$a->strings["Edit this menu container"] = "Deze menu-container bewerken"; +$a->strings["Add menu element"] = "Menu-element toevoegen"; +$a->strings["Delete this menu item"] = "Dit menu-item verwijderen"; +$a->strings["Edit this menu item"] = "Dit menu-item bewerken"; +$a->strings["Menu item not found."] = "Menu-item niet gevonden."; +$a->strings["Menu item deleted."] = "Menu-item verwijderd."; +$a->strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; +$a->strings["Edit Menu Element"] = "Menu-element bewerken"; +$a->strings["Link text"] = "Linktekst"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +$a->strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; +$a->strings["Edit post"] = "Bericht bewerken"; +$a->strings["Invalid item."] = "Ongeldig item."; +$a->strings["Channel not found."] = "Kanaal niet gevonden."; +$a->strings["Lorem Ipsum"] = "Lorem Ipsum"; +$a->strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; +$a->strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; +$a->strings["Menu Name"] = "Menunaam"; +$a->strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; +$a->strings["Menu Title"] = "Menutitel"; +$a->strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; +$a->strings["Allow Bookmarks"] = "Bladwijzers toestaan"; +$a->strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; +$a->strings["Submit and proceed"] = "Opslaan en doorgaan"; +$a->strings["Drop"] = "Verwijderen"; +$a->strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; +$a->strings["Delete this menu"] = "Menu verwijderen"; +$a->strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; +$a->strings["Edit this menu"] = "Dit menu bewerken"; +$a->strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; +$a->strings["Edit Menu"] = "Menu bewerken"; +$a->strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; +$a->strings["Menu name"] = "Naam van menu"; +$a->strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; +$a->strings["Menu title"] = "Titel van menu"; +$a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; +$a->strings["Allow bookmarks"] = "Bladwijzers toestaan"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; +$a->strings["Location not found."] = "Locatie niet gevonden."; +$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; +$a->strings["No locations found."] = "Geen locaties gevonden."; +$a->strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +$a->strings["Location (address)"] = "Locatie (adres)"; +$a->strings["Primary Location"] = "Primaire locatie"; +$a->strings["Drop location"] = "Locatie verwijderen"; +$a->strings["Poke/Prod"] = "Aanstoten/porren"; +$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; +$a->strings["Recipient"] = "Ontvanger"; +$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +$a->strings["Make this post private"] = "Maak dit bericht privé"; $a->strings["Layout Name"] = "Naam lay-out"; -$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -$a->strings["Room not found"] = "Chatkanaal niet gevonden"; -$a->strings["Leave Room"] = "Chatkanaal verlaten"; -$a->strings["Delete This Room"] = "Chatkanaal verwijderen"; -$a->strings["I am away right now"] = "Ik ben momenteel afwezig"; -$a->strings["I am online"] = "Ik ben online"; -$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -$a->strings["New Chatroom"] = "Nieuw chatkanaal"; -$a->strings["Chatroom Name"] = "Naam chatkanaal"; -$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -$a->strings["Delete webpage?"] = "Webpagina verwijderen?"; -$a->strings["Page link title"] = "Titel van paginalink"; -$a->strings["Edit Webpage"] = "Webpagina bewerken"; -$a->strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; +$a->strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; +$a->strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; +$a->strings["Layout Description"] = "Lay-out-omschrijving"; +$a->strings["Download PDL file"] = "Download PDL-bestand"; $a->strings["No valid account found."] = "Geen geldige account gevonden."; $a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; $a->strings["Site Member (%s)"] = "Lid van hub (%s)"; @@ -1430,12 +1082,30 @@ $a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; $a->strings["Email Address"] = "E-mailadres"; $a->strings["Reset"] = "Opnieuw instellen"; -$a->strings["Website:"] = "Website:"; -$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; -$a->strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; -$a->strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; -$a->strings["Item is not editable"] = "Item is niet te bewerken"; -$a->strings["Delete item?"] = "Item verwijderen?"; +$a->strings["Layout updated."] = "Lay-out bijgewerkt."; +$a->strings["Edit System Page Description"] = "Systeempagina's bewerken"; +$a->strings["Layout not found."] = "Lay-out niet gevonden."; +$a->strings["Module Name:"] = "Modulenaam:"; +$a->strings["Layout Help"] = "Lay-out-hulp"; +$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; +$a->strings["Remove This Account"] = "Verwijder dit account"; +$a->strings["WARNING: "] = "WAARSCHUWING: "; +$a->strings["This account and all its channels will be completely removed from the network. "] = "Dit account en al zijn kanalen worden volledig uit het \$Projectname-netwerk verwijderd."; +$a->strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!"; +$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; +$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het \$Projectname-netwerk verwijderen"; +$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het \$Projectname-netwerk verwijderd"; +$a->strings["Remove Account"] = "Account verwijderen"; +$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +$a->strings["Item not found"] = "Item niet gevonden"; +$a->strings["Delete block?"] = "Blok verwijderen"; +$a->strings["Insert YouTube video"] = "YouTube-video invoegen"; +$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen"; +$a->strings["Edit Block"] = "Blok bewerken"; +$a->strings["Hub not found."] = "Hub niet gevonden."; +$a->strings["Item not available."] = "Item is niet aanwezig."; $a->strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; $a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; $a->strings["Please join us on Red"] = "Uitnodiging voor \$Projectname"; @@ -1455,203 +1125,164 @@ $a->strings["1. Register at any \$Projectname location (they are all inter-conne $a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; $a->strings["or visit "] = "of bezoek "; $a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -$a->strings["Location not found."] = "Locatie niet gevonden."; -$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; -$a->strings["No locations found."] = "Geen locaties gevonden."; -$a->strings["Manage Channel Locations"] = "Kanaallocaties beheren"; -$a->strings["Location (address)"] = "Locatie (adres)"; -$a->strings["Primary Location"] = "Primaire locatie"; -$a->strings["Drop location"] = "Locatie verwijderen"; -$a->strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; -$a->strings["Source created."] = "Bron aangemaakt."; -$a->strings["Source updated."] = "Bron aangemaakt."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; -$a->strings["New Source"] = "Nieuwe bron"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; -$a->strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; -$a->strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; +$a->strings["No ratings"] = "Geen beoordelingen"; +$a->strings["Ratings"] = "Beoordelingen"; +$a->strings["Rating: "] = "Beoordeling:"; +$a->strings["Website: "] = "Website: "; +$a->strings["Description: "] = "Omschrijving: "; +$a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +$a->strings["Discard"] = "Annuleren"; +$a->strings["Ignore"] = "Negeren"; +$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; +$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["App installed."] = "App geïnstalleerd"; +$a->strings["Malformed app."] = "Misvormde app."; +$a->strings["Embed code"] = "Insluitcode"; +$a->strings["Edit App"] = "App bewerken"; +$a->strings["Create App"] = "App maken"; +$a->strings["Name of app"] = "Naam van app"; +$a->strings["Location (URL) of app"] = "Locatie (URL) van app"; +$a->strings["Description"] = "Omschrijving"; +$a->strings["Photo icon URL"] = "URL van pictogram"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +$a->strings["Version ID"] = "Versie-ID"; +$a->strings["Price of app"] = "Prijs van de app"; +$a->strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +$a->strings["Source of Item"] = "Bron van item"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; +$a->strings["Profile Match"] = "Profielovereenkomst"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; +$a->strings["is interested in:"] = "is geïnteresseerd in:"; +$a->strings["No matches"] = "Geen overeenkomsten"; +$a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; +$a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +$a->strings["Help:"] = "Hulp:"; +$a->strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; +$a->strings["Create a new channel"] = "Nieuw kanaal aanmaken"; +$a->strings["Current Channel"] = "Huidig kanaal"; +$a->strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; +$a->strings["Default Channel"] = "Standaardkanaal"; +$a->strings["Make Default"] = "Als standaard instellen"; +$a->strings["%d new messages"] = "%d nieuwe berichten"; +$a->strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; +$a->strings["Delegated Channels"] = "Uitbestede kanalen"; +$a->strings["Please login."] = "Inloggen."; +$a->strings["First Name"] = "Voornaam"; +$a->strings["Last Name"] = "Achternaam"; +$a->strings["Nickname"] = "Bijnaam"; +$a->strings["Full Name"] = "Volledige naam"; +$a->strings["Profile Photo 16px"] = "Profielfoto 16px"; +$a->strings["Profile Photo 32px"] = "Profielfoto 32px"; +$a->strings["Profile Photo 48px"] = "Profielfoto 48px"; +$a->strings["Profile Photo 64px"] = "Profielfoto 64px"; +$a->strings["Profile Photo 80px"] = "Profielfoto 80px"; +$a->strings["Profile Photo 128px"] = "Profielfoto 128px"; +$a->strings["Timezone"] = "Tijdzone"; +$a->strings["Homepage URL"] = "URL homepagina"; +$a->strings["Birth Year"] = "Geboortejaar"; +$a->strings["Birth Month"] = "Geboortemaand"; +$a->strings["Birth Day"] = "Geboortedag"; +$a->strings["Birthdate"] = "Geboortedatum"; +$a->strings["Gender"] = "Geslacht"; +$a->strings["Add a Channel"] = "Kanaal toevoegen"; +$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."] = "Naast een account moet je tenminste één kanaal aanmaken. Een kanaal is een persoonlijke verzameling (gerelateerde) berichten en media, zoals je misschien gewend bent van sociale netwerken. Een kanaal kan gebruikt worden voor social media, een blog, forum, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat."; $a->strings["Channel Name"] = "Kanaalnaam"; -$a->strings["Source not found."] = "Bron niet gevonden"; -$a->strings["Edit Source"] = "Bron bewerken"; -$a->strings["Delete Source"] = "Bron verwijderen"; -$a->strings["Source removed"] = "Bron verwijderd"; -$a->strings["Unable to remove source."] = "Verwijderen bron mislukt."; -$a->strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; -$a->strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; -$a->strings["Menu Name"] = "Menunaam"; -$a->strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; -$a->strings["Menu Title"] = "Menutitel"; -$a->strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; -$a->strings["Allow Bookmarks"] = "Bladwijzers toestaan"; -$a->strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; -$a->strings["Submit and proceed"] = "Opslaan en doorgaan"; -$a->strings["Drop"] = "Verwijderen"; -$a->strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; -$a->strings["Delete this menu"] = "Menu verwijderen"; -$a->strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; -$a->strings["Edit this menu"] = "Dit menu bewerken"; -$a->strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; -$a->strings["Menu not found."] = "Menu niet gevonden."; -$a->strings["Edit Menu"] = "Menu bewerken"; -$a->strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; -$a->strings["Menu name"] = "Naam van menu"; -$a->strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; -$a->strings["Menu title"] = "Titel van menu"; -$a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; -$a->strings["Allow bookmarks"] = "Bladwijzers toestaan"; -$a->strings["Modify"] = "Wijzigen"; -$a->strings["Permission Denied."] = "Toegang geweigerd"; -$a->strings["File not found."] = "Bestand niet gevonden."; -$a->strings["Edit file permissions"] = "Bestandsrechten bewerken"; -$a->strings["Set/edit permissions"] = "Rechten instellen/bewerken"; -$a->strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; -$a->strings["Return to file list"] = "Terugkeren naar bestandlijst "; -$a->strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; -$a->strings["Share this file"] = "Dit bestand delen"; -$a->strings["Show URL to this file"] = "Toon URL van dit bestand"; -$a->strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; -$a->strings["Contact not found."] = "Contact niet gevonden"; -$a->strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; -$a->strings["Suggest Friends"] = "Kanalen voorstellen"; -$a->strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s"; -$a->strings["Hub not found."] = "Hub niet gevonden."; -$a->strings["Poke/Prod"] = "Aanstoten/porren"; -$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; -$a->strings["Recipient"] = "Ontvanger"; -$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -$a->strings["Make this post private"] = "Maak dit bericht privé"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Jouw naam of een andere relevante naam. Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Familieforum\""; +$a->strings["Choose a short nickname"] = "Korte bijnaam"; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Deze bijnaam (geen spaties) wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) en het internetadres (URL) van jouw kanaal aan te maken, die je dan met anderen kunt delen. Voorbeeld: janp wordt janp@jouw_hub.nl en https://jouw_hub.nl/channel/janp."; +$a->strings["Or import an existing channel from another location"] = "Of importeer een bestaand kanaal vanaf een andere locatie."; +$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"] = "Kies een kanaaltype en het door jouw gewenste privacy-niveau, zodat automatisch de beste permissies kunnen worden ingesteld. Dit kan later, indien gewenst, worden veranderd."; +$a->strings["Channel Type"] = "Kanaaltype"; +$a->strings["Read more about roles"] = "Lees meer over kanaaltypes"; $a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; $a->strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; $a->strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; $a->strings["Visible To"] = "Zichtbaar voor"; -$a->strings["webpage"] = "Webpagina"; -$a->strings["block"] = "blok"; -$a->strings["layout"] = "lay-out"; -$a->strings["%s element installed"] = "%s onderdeel geïnstalleerd"; -$a->strings["Profile not found."] = "Profiel niet gevonden."; -$a->strings["Profile deleted."] = "Profiel verwijderd."; -$a->strings["Profile-"] = "Profiel-"; -$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; -$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; -$a->strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; -$a->strings["Profile Name is required."] = "Profielnaam is vereist"; -$a->strings["Marital Status"] = "Huwelijke status"; -$a->strings["Romantic Partner"] = "Romantische partner"; -$a->strings["Likes"] = "Houdt van"; -$a->strings["Dislikes"] = "Houdt niet van"; -$a->strings["Work/Employment"] = "Werk/arbeid"; -$a->strings["Religion"] = "Religie"; -$a->strings["Political Views"] = "Politieke overtuigingen"; -$a->strings["Gender"] = "Geslacht"; -$a->strings["Sexual Preference"] = "Seksuele voorkeur"; -$a->strings["Homepage"] = "Homepage"; -$a->strings["Interests"] = "Interesses"; -$a->strings["Address"] = "Kanaaladres"; -$a->strings["Profile updated."] = "Profiel bijgewerkt"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; -$a->strings["Edit Profile Details"] = "Profiel bewerken"; -$a->strings["View this profile"] = "Profiel weergeven"; -$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; -$a->strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; -$a->strings["Clone this profile"] = "Dit profiel klonen"; -$a->strings["Delete this profile"] = "Dit profiel verwijderen"; -$a->strings["Import profile from file"] = "Profiel vanuit bestand importeren"; -$a->strings["Export profile to file"] = "Profiel naar bestand exporteren"; -$a->strings["Profile Name:"] = "Profielnaam:"; -$a->strings["Your Full Name:"] = "Jouw volledige naam:"; -$a->strings["Title/Description:"] = "Titel/omschrijving:"; -$a->strings["Your Gender:"] = "Jouw geslacht"; -$a->strings["Birthday :"] = "Verjaardag: "; -$a->strings["Street Address:"] = "Straat en huisnummer:"; -$a->strings["Locality/City:"] = "Woonplaats:"; -$a->strings["Postal/Zip Code:"] = "Postcode:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:"; -$a->strings[" Marital Status:"] = " Huwelijkse staat:"; -$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; -$a->strings["Since [date]:"] = "Sinds [datum]:"; -$a->strings["Homepage URL:"] = "Adres homepage:"; -$a->strings["Religious Views:"] = "Religieuze overtuigingen"; -$a->strings["Keywords:"] = "Trefwoorden"; -$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; -$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt"; -$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf..."; -$a->strings["Hobbies/Interests"] = "Hobby's/interesses"; -$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; -$a->strings["My other channels"] = "Mijn andere kanalen"; -$a->strings["Musical interests"] = "Muzikale interesses"; -$a->strings["Books, literature"] = "Boeken/literatuur"; -$a->strings["Television"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment"; -$a->strings["Love/romance"] = "Liefde/romantiek"; -$a->strings["Work/employment"] = "Werk/arbeid"; -$a->strings["School/education"] = "School/onderwijs"; -$a->strings["This is your default profile."] = "Dit is jouw standaardprofiel"; -$a->strings["Age: "] = "Leeftijd:"; -$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren"; -$a->strings["Add profile things"] = "Dingen aan je profiel toevoegen"; -$a->strings["Include desirable objects in your profile"] = "Voeg door jou gewenste dingen aan jouw profiel toe"; -$a->strings["No ratings"] = "Geen beoordelingen"; -$a->strings["Ratings"] = "Waarderingen"; -$a->strings["Rating: "] = "Waardering: "; -$a->strings["Website: "] = "Website: "; -$a->strings["Description: "] = "Omschrijving: "; -$a->strings["Source of Item"] = "Bron van item"; -$a->strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; -$a->strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; -$a->strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; -$a->strings["Menu Item Permissions"] = "Permissies menu-item"; -$a->strings["Link Name"] = "Linknaam"; -$a->strings["Link Target"] = "Linkdoel"; -$a->strings["Use RedMatrix magic-auth if available"] = "Gebruik RedMatrix' magic-auth wanneer beschikbaar"; -$a->strings["Open link in new window"] = "Open link in nieuw venster"; -$a->strings["Order in list"] = "Volgorde in lijst"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -$a->strings["Submit and finish"] = "Opslaan en afsluiten"; -$a->strings["Submit and continue"] = "Opslaan en doorgaan"; -$a->strings["Menu:"] = "Menu:"; -$a->strings["Edit menu"] = "Menu bewerken"; -$a->strings["Edit element"] = "Onderdeel bewerken"; -$a->strings["Drop element"] = "Onderdeel verwijderen"; -$a->strings["New element"] = "Nieuw element"; -$a->strings["Edit this menu container"] = "Deze menu-container bewerken"; -$a->strings["Add menu element"] = "Menu-element toevoegen"; -$a->strings["Delete this menu item"] = "Dit menu-item verwijderen"; -$a->strings["Edit this menu item"] = "Dit menu-item bewerken"; -$a->strings["Menu item not found."] = "Menu-item niet gevonden."; -$a->strings["Menu item deleted."] = "Menu-item verwijderd."; -$a->strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; -$a->strings["Edit Menu Element"] = "Menu-element bewerken"; -$a->strings["Link text"] = "Linktekst"; -$a->strings["URL of link"] = "URL of link"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -$a->strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; -$a->strings["%d rating"] = array( - 0 => "%d beoordeling", - 1 => "%d beoordelingen", -); -$a->strings["Gender: "] = "Geslacht:"; -$a->strings["Status: "] = "Status: "; -$a->strings["Homepage: "] = "Homepage: "; -$a->strings["Hometown: "] = "Oorspronkelijk uit: "; -$a->strings["About: "] = "Over: "; -$a->strings["Public Forum:"] = "Openbaar forum:"; -$a->strings["Keywords: "] = "Trefwoorden: "; -$a->strings["Common connections: %s"] = "Gemeenschappelijke connecties: %s"; -$a->strings["Finding:"] = "Gezocht naar:"; -$a->strings["next page"] = "volgende pagina"; -$a->strings["previous page"] = "vorige pagina"; -$a->strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; -$a->strings["Export Channel"] = "Kanaal exporteren"; -$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."] = "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; -$a->strings["Export Content"] = "Inhoud exporteren"; -$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."] = "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; -$a->strings["No connections."] = "Geen connecties."; -$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; -$a->strings["invalid target signature"] = "ongeldig doelkenmerk"; +$a->strings["All Connections"] = "Alle connecties"; +$a->strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "\$Projectname - gasttoegang: Accountnaam: {jouw e-mailadres}, wachtwoord: +++"; +$a->strings["\$Projectname"] = "\$Projectname"; +$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; +$a->strings["Room not found"] = "Chatkanaal niet gevonden"; +$a->strings["Leave Room"] = "Chatkanaal verlaten"; +$a->strings["Delete This Room"] = "Chatkanaal verwijderen"; +$a->strings["I am away right now"] = "Ik ben momenteel afwezig"; +$a->strings["I am online"] = "Ik ben online"; +$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +$a->strings["New Chatroom"] = "Nieuw chatkanaal"; +$a->strings["Chatroom Name"] = "Naam chatkanaal"; +$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; +$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +$a->strings["Message deleted."] = "Bericht verwijderd."; +$a->strings["Message recalled."] = "Bericht ingetrokken."; +$a->strings["Send Private Message"] = "Privébericht versturen"; +$a->strings["To:"] = "Aan:"; +$a->strings["Subject:"] = "Onderwerp:"; +$a->strings["Send"] = "Verzenden"; +$a->strings["Message not found."] = "Bericht niet gevonden"; +$a->strings["Delete message"] = "Bericht verwijderen"; +$a->strings["Recall message"] = "Bericht intrekken"; +$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; +$a->strings["Private Conversation"] = "Privéconversatie"; +$a->strings["Delete conversation"] = "Verwijder conversatie"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +$a->strings["Send Reply"] = "Antwoord versturen"; +$a->strings["Collection created."] = "Collectie aangemaakt"; +$a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden"; +$a->strings["Collection updated."] = "Collectie bijgewerkt."; +$a->strings["Create a collection of channels."] = "Kanaalcollectie aanmaken"; +$a->strings["Collection Name: "] = "Naam collectie:"; +$a->strings["Members are visible to other channels"] = "Kanalen in deze collectie zijn zichtbaar voor andere kanalen"; +$a->strings["Collection removed."] = "Collectie verwijderd"; +$a->strings["Unable to remove collection."] = "Verwijderen collectie mislukt"; +$a->strings["Collection Editor"] = "Collectiebewerker"; +$a->strings["Members"] = "Kanalen"; +$a->strings["All Connected Channels"] = "Alle kanaalconnecties"; +$a->strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; +$a->strings["Delete layout?"] = "Lay-out verwijderen?"; +$a->strings["Edit Layout"] = "Lay-out bewerken"; +$a->strings["Public Sites"] = "Openbare hubs"; +$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."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het \$Projectname-netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +$a->strings["Rate this hub"] = "Beoordeel deze hub"; +$a->strings["Site URL"] = "URL hub"; +$a->strings["Access Type"] = "Toegangstype"; +$a->strings["Registration Policy"] = "Registratiebeleid"; +$a->strings["Location"] = "Locatie"; +$a->strings["View hub ratings"] = "Bekijk hubbeoordelingen"; +$a->strings["Rate"] = "Beoordeel"; +$a->strings["View ratings"] = "Bekijk beoordelingen"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; +$a->strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; +$a->strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze \$Projectname-hub."; +$a->strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; +$a->strings["Registration on this site/hub is by approval only."] = "Registraties op deze \$Projectname-hub moeten eerst worden goedgekeurd."; +$a->strings["Register at another affiliated site/hub"] = "Registreer op een andere \$Projectname-hub"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze \$Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; +$a->strings["Terms of Service"] = "Gebruiksvoorwaarden"; +$a->strings["I accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub"; +$a->strings["Registration"] = "Registratie"; +$a->strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; +$a->strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; +$a->strings["Your email address"] = "Jouw e-mailadres"; +$a->strings["Choose a password"] = "Geef een wachtwoord op"; +$a->strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; +$a->strings["No channel."] = "Geen kanaal."; +$a->strings["Common connections"] = "Gemeenschappelijke connecties"; +$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +$a->strings["Item is not editable"] = "Item is niet te bewerken"; +$a->strings["Delete item?"] = "Item verwijderen?"; +$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; +$a->strings["Delete webpage?"] = "Webpagina verwijderen?"; +$a->strings["Page link title"] = "Titel van paginalink"; +$a->strings["Edit Webpage"] = "Webpagina bewerken"; $a->strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; $a->strings["Site"] = "Hub-instellingen"; $a->strings["Accounts"] = "Accounts"; @@ -1680,6 +1311,7 @@ $a->strings["Registered channels"] = "Geregistreerde kanalen"; $a->strings["Active plugins"] = "Ingeschakelde plug-ins"; $a->strings["Version"] = "Versie"; $a->strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; +$a->strings["mobile"] = "mobiel"; $a->strings["experimental"] = "experimenteel"; $a->strings["unsupported"] = "Niet ondersteund"; $a->strings["Yes - with approval"] = "Ja - met goedkeuring"; @@ -1687,7 +1319,6 @@ $a->strings["My site is not a public server"] = "Mijn \$Projectname-hub is niet $a->strings["My site has paid access only"] = "Mijn \$Projectname-hub kent alleen betaalde toegang"; $a->strings["My site has free access only"] = "Mijn \$Projectname-hub kent alleen gratis toegang"; $a->strings["My site offers free accounts with optional paid upgrades"] = "Mijn \$Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; -$a->strings["Registration"] = "Registratie"; $a->strings["File upload"] = "Bestand uploaden"; $a->strings["Policies"] = "Beleid"; $a->strings["Site name"] = "Naam van deze \$Projectname-hub"; @@ -1709,6 +1340,10 @@ $a->strings["Does this site allow new member registration?"] = "Staat deze hub n $a->strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze \$Projectname-hub aan? Kies wat het meest in de buurt komt."; $a->strings["Register text"] = "Tekst tijdens registratie"; $a->strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond."; +$a->strings["Site homepage to show visitors (default: login box)"] = "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)"; +$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."] = "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken."; +$a->strings["Preserve site homepage URL"] = "Behoudt de URL van de hub (/)"; +$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)"; $a->strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; $a->strings["Allowed friend domains"] = "Toegestane domeinen"; @@ -1725,8 +1360,8 @@ $a->strings["Force publish"] = "Dwing kanaalvermelding af"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; $a->strings["Disable discovery tab"] = "Ontdekkingstab"; $a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen."; -$a->strings["No login on Homepage"] = "Geen inlogformulier op de 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)."] = "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde bezoekers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze \$Projectname-hub als homepage gebruikt)"; +$a->strings["login on Homepage"] = "Inlogformulier op de homepagina"; +$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. "; $a->strings["Proxy user"] = "Gebruikersnaam proxy"; $a->strings["Proxy URL"] = "URL proxy"; $a->strings["Network timeout"] = "Netwerktimeout"; @@ -1792,17 +1427,26 @@ $a->strings["%s channel censored/uncensored"] = array( 0 => "%s kanaal gecensureerd/ongecensureerd", 1 => "%s kanalen gecensureerd/ongecensureerd", ); +$a->strings["%s channel code allowed/disallowed"] = array( + 0 => "Code toegestaan/niet toegestaan voor %s kanaal", + 1 => "Scripts toegestaan/niet toegestaan voor %s kanalen ", +); $a->strings["%s channel deleted"] = array( 0 => "%s kanaal verwijderd", 1 => "%s kanalen verwijderd", ); $a->strings["Channel not found"] = "Kanaal niet gevonden"; $a->strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; -$a->strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; $a->strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; +$a->strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; +$a->strings["Channel '%s' code allowed"] = "Scripts toegestaan voor kanaal '%s'"; +$a->strings["Channel '%s' code disallowed"] = "Scripts niet toegestaan voor kanaal '%s'"; $a->strings["Censor"] = "Censureren"; $a->strings["Uncensor"] = "Niet censureren"; +$a->strings["Allow Code"] = "Scripts toestaan"; +$a->strings["Disallow Code"] = "Scripts niet toestaan"; $a->strings["UID"] = "UID"; +$a->strings["Address"] = "Kanaaladres"; $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?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; $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?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; $a->strings["Plugin %s disabled."] = "Plug-in %s uitgeschakeld."; @@ -1832,90 +1476,112 @@ $a->strings["Help text"] = "Helptekst"; $a->strings["Additional info (optional)"] = "Extra informatie (optioneel)"; $a->strings["Field definition not found"] = "Velddefinitie niet gevonden"; $a->strings["Edit Profile Field"] = "Profielveld bewerken"; -$a->strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -$a->strings["Post successful."] = "Verzenden bericht geslaagd."; -$a->strings["Edit Block"] = "Blok bewerken"; -$a->strings["Delete block?"] = "Blok verwijderen"; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; -$a->strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; -$a->strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze \$Projectname-hub."; -$a->strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; -$a->strings["Registration on this site/hub is by approval only."] = "Registraties op deze \$Projectname-hub moeten eerst worden goedgekeurd."; -$a->strings["Register at another affiliated site/hub"] = "Registreer op een andere \$Projectname-hub"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze \$Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; -$a->strings["Terms of Service"] = "Gebruiksvoorwaarden"; -$a->strings["I accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub"; -$a->strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; -$a->strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; -$a->strings["Your email address"] = "Jouw e-mailadres"; -$a->strings["Choose a password"] = "Geef een wachtwoord op"; -$a->strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; -$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; -$a->strings["Remove This Account"] = "Verwijder dit account"; -$a->strings["WARNING: "] = "WAARSCHUWING: "; -$a->strings["This account and all its channels will be completely removed from the network. "] = "Dit account en al zijn kanalen worden volledig uit het \$Projectname-netwerk verwijderd."; -$a->strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!"; -$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; -$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het \$Projectname-netwerk verwijderen"; -$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het \$Projectname-netwerk verwijderd"; -$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; -$a->strings["Empty post discarded."] = "Leeg bericht geannuleerd"; -$a->strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; -$a->strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; -$a->strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; -$a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; -$a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -$a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; -$a->strings["Layout Description"] = "Lay-out-omschrijving"; -$a->strings["Download PDL file"] = "Download PDL-bestand"; -$a->strings["First Name"] = "Voornaam"; -$a->strings["Last Name"] = "Achternaam"; -$a->strings["Nickname"] = "Bijnaam"; -$a->strings["Full Name"] = "Volledige naam"; -$a->strings["Profile Photo 16px"] = "Profielfoto 16px"; -$a->strings["Profile Photo 32px"] = "Profielfoto 32px"; -$a->strings["Profile Photo 48px"] = "Profielfoto 48px"; -$a->strings["Profile Photo 64px"] = "Profielfoto 64px"; -$a->strings["Profile Photo 80px"] = "Profielfoto 80px"; -$a->strings["Profile Photo 128px"] = "Profielfoto 128px"; -$a->strings["Timezone"] = "Tijdzone"; -$a->strings["Homepage URL"] = "URL homepagina"; -$a->strings["Birth Year"] = "Geboortejaar"; -$a->strings["Birth Month"] = "Geboortemaand"; -$a->strings["Birth Day"] = "Geboortedag"; -$a->strings["Birthdate"] = "Geboortedatum"; -$a->strings["Conversation removed."] = "Conversatie verwijderd"; -$a->strings["No messages."] = "Geen berichten"; -$a->strings["Delete conversation"] = "Verwijder conversatie"; -$a->strings["D, d M Y - g:i A"] = "D, j M Y - G:i"; -$a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; -$a->strings["Total votes"] = "Totaal aantal stemmen"; -$a->strings["Average Rating"] = "Gemiddelde waardering"; +$a->strings["Permission Denied."] = "Toegang geweigerd"; +$a->strings["File not found."] = "Bestand niet gevonden."; +$a->strings["Edit file permissions"] = "Bestandsrechten bewerken"; +$a->strings["Set/edit permissions"] = "Rechten instellen/bewerken"; +$a->strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; +$a->strings["Return to file list"] = "Terugkeren naar bestandlijst "; +$a->strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; +$a->strings["Share this file"] = "Dit bestand delen"; +$a->strings["Show URL to this file"] = "Toon URL van dit bestand"; +$a->strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; +$a->strings["Bookmark added"] = "Bladwijzer toegevoegd"; +$a->strings["My Bookmarks"] = "Mijn bladwijzers"; +$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +$a->strings["Channel added."] = "Kanaal toegevoegd."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; +$a->strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +$a->strings["Contact not found."] = "Contact niet gevonden"; +$a->strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; +$a->strings["Suggest Friends"] = "Kanalen voorstellen"; +$a->strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s"; +$a->strings["No connections."] = "Geen connecties."; +$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; +$a->strings["invalid target signature"] = "ongeldig doelkenmerk"; +$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +$a->strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +$a->strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; $a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; $a->strings["Remove This Channel"] = "Verwijder dit kanaal"; $a->strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het \$Projectname-netwerk verwijderd."; $a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; $a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; +$a->strings["Remove Channel"] = "Kanaal verwijderen"; +$a->strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; +$a->strings["No calendar entries found."] = "Geen agenda-items gevonden."; +$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +$a->strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; +$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["Delete event"] = "Gebeurtenis verwijderen"; +$a->strings["calendar"] = "agenda"; +$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; +$a->strings["Previous"] = "Vorige"; +$a->strings["Next"] = "Volgende"; +$a->strings["Export"] = "Exporteren"; +$a->strings["Import"] = "Importeren"; +$a->strings["Event removed"] = "Gebeurtenis verwijderd"; +$a->strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; +$a->strings["Event details"] = "Details van gebeurtenis"; +$a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; +$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +$a->strings["Event Starts:"] = "Begin gebeurtenis:"; +$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant"; +$a->strings["Event Finishes:"] = "Einde gebeurtenis:"; +$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; +$a->strings["Description:"] = "Omschrijving:"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Deel deze gebeurtenis"; +$a->strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; +$a->strings["Configuration Editor"] = "Configuratiebewerker"; +$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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; +$a->strings["Xchan Lookup"] = "Xchan opzoeken"; +$a->strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; +$a->strings["Export Channel"] = "Kanaal exporteren"; +$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."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; +$a->strings["Export Content"] = "Inhoud exporteren"; +$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."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +$a->strings["Export your posts from a given year or month:"] = "Exporteer jouw berichten van een bepaald jaar of een bepaalde maand:"; +$a->strings["You may also export your posts and conversations for a particular year or month. Click on one of the recent years or months below."] = "Je kan ook jouw berichten en conversaties van een bepaald jaar of een bepaalde maand exporteren. Klik hieronder op een van de recente jaren of maanden."; +$a->strings["Jan"] = "jan"; +$a->strings["Feb"] = "feb"; +$a->strings["Mar"] = "mrt"; +$a->strings["Apr"] = "apr"; +$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"] = "dec"; +$a->strings["If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), kies een kleiner datumbereik en probeer het dan nogmaals."; +$a->strings["Or adjust the date in your browser location bar to select other dates. For example the year 2013; %1\$s/2013 or the month September 2013; %1\$s/2013/9"] = "Of pas de datum aan in de adresbalk van je browser om zo andere jaren of maanden te kiezen. Bijvoorbeeld het jaar 2013; %1\$s/2013 of de maand september 2013; %1\$s/2013/9."; +$a->strings["Please visit"] = "Bezoek"; +$a->strings["on another hub to import the backup files(s)."] = "op een andere hub om het back-upbestand of de back-upbestanden te importeren."; +$a->strings["We advise you to clone the channel on the new hub first and than to import the backup file(s) (from the same channel) in chronological order. Importing the backup files into another channel will certainly give permission issues."] = "Wij adviseren om eerst het kanaal op de nieuwe hub te klonen en dan vervolgens het back-upbestand of de back-upbestanden in chronologische volgorde te importeren (van hetzelfde kanaal). Het importeren van back-upbestanden in een ander kanaal veroorzaakt zeker permissieproblemen."; +$a->strings["Continue"] = "Ga verder"; +$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +$a->strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; +$a->strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; +$a->strings["Connection updated."] = "Connectie bijgewerkt."; +$a->strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; $a->strings["is now connected to"] = "is nu verbonden met"; $a->strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; $a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; -$a->strings["Channel has been unblocked"] = "Kanaal is gedeblokkeerd"; -$a->strings["Channel has been blocked"] = "Kanaal is geblokkeerd"; $a->strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; -$a->strings["Channel has been unignored"] = "Kanaal wordt niet meer genegeerd"; -$a->strings["Channel has been ignored"] = "Kanaal wordt genegeerd"; -$a->strings["Channel has been unarchived"] = "Kanaal is niet meer gearchiveerd"; -$a->strings["Channel has been archived"] = "Kanaal is gearchiveerd"; -$a->strings["Channel has been unhidden"] = "Kanaal is niet meer verborgen"; -$a->strings["Channel has been hidden"] = "Kanaal is verborgen"; -$a->strings["Channel has been approved"] = "Connectie/kanaal is geaccepteerd"; -$a->strings["Channel has been unapproved"] = "Connectie/kanaal is afgewezen"; $a->strings["Connection has been removed."] = "Connectie is verwijderd"; $a->strings["View %s's profile"] = "Profiel van %s weergeven"; $a->strings["Refresh Permissions"] = "Permissies vernieuwen"; @@ -1923,107 +1589,429 @@ $a->strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; $a->strings["Recent Activity"] = "Recente activiteit"; $a->strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; $a->strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; +$a->strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; $a->strings["Unignore"] = "Niet meer negeren"; -$a->strings["Ignore"] = "Negeren"; $a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; +$a->strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; $a->strings["Unarchive"] = "Niet meer archiveren"; $a->strings["Archive"] = "Archiveren"; $a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; +$a->strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; $a->strings["Unhide"] = "Niet meer verbergen"; $a->strings["Hide"] = "Verbergen"; $a->strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; +$a->strings["This connection is hidden!"] = "Deze connectie is verborgen!"; $a->strings["Delete this connection"] = "Deze connectie verwijderen"; $a->strings["Approve this connection"] = "Deze connectie accepteren"; $a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; -$a->strings["Connections: settings for %s"] = "Connecties: instellingen voor %s"; +$a->strings["Set Affinity"] = "Verwantschapsfilter instellen"; +$a->strings["Set Profile"] = "Profiel instellen"; +$a->strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; $a->strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; -$a->strings["Apply the permissions indicated on this page to all new connections."] = "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen."; +$a->strings["This connection's address is"] = "Het adres van deze connectie is"; +$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."; $a->strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; -$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."] = "Voor jouw kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen. Controleer de permissies op deze pagina en verander ze eventueel. Deze nieuwe connectie kan mogelijk nog niet met jou communiceren totdat je deze pagina opslaat, wat ervoor zorgt dat de gekozen permissies actief worden."; +$a->strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; +$a->strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; +$a->strings["Custom Filter"] = "Berichtenfilter"; +$a->strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; +$a->strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "woorden (één per regel), #tags of /patterns/, laat leeg om alle berichten te importeren"; +$a->strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; +$a->strings["This information is public!"] = "Deze informatie is openbaar!"; +$a->strings["Connection Pending Approval"] = "Connectie moet nog goedgekeurd worden"; +$a->strings["Connection Request"] = "Connectieverzoek"; +$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) wil met jou verbinden. Keur dit connectieverzoek goed om onderling te kunnen communiceren."; +$a->strings["Approve Later"] = "Later goedkeuren"; $a->strings["inherited"] = "geërfd"; -$a->strings["Connection has no individual permissions!"] = "Connectie heeft geen individuele permissies!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan."; -$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; -$a->strings["Contact Information / Notes"] = "Informatie/aantekeningen over connectie"; -$a->strings["Edit contact notes"] = "Bewerk aantekeningen over contact"; $a->strings["Their Settings"] = "Hun instellingen"; $a->strings["My Settings"] = "Mijn instellingen"; -$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."] = "Voor dit kanaaltype geldende standaard permissies zijn (zonet) toegepast. Ze zijn echter nog niet opgeslagen en er zijn momenteel geen standaard permissies aanwezig. Controleer/verander de permissies op deze pagina en klik op [Opslaan] om deze te activeren."; -$a->strings["Clear/Disable Automatic Permissions"] = "Verwijderen/uitschakelen automatische permissies"; -$a->strings["Forum Members"] = "Forumleden"; -$a->strings["Soapbox"] = "Zeepkist"; -$a->strings["Full Sharing (typical social network permissions)"] = "Voluit delen (vergelijkbaar met die van sociale netwerken)"; -$a->strings["Cautious Sharing "] = "Voorzichtig delen"; -$a->strings["Follow Only"] = "Alleen volgen"; $a->strings["Individual Permissions"] = "Individuele permissies"; -$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."] = "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect."; -$a->strings["Advanced Permissions"] = "Geavanceerde permissies"; -$a->strings["Simple Permissions (select one and submit)"] = "Eenvoudige permissies (selecteer er één en opslaan)"; -$a->strings["Visit %s's profile - %s"] = "Profiel van %s bezoeken - %s"; -$a->strings["Block/Unblock contact"] = "Connectie blokkeren/deblokkeren"; -$a->strings["Ignore contact"] = "Connectie negeren"; -$a->strings["Repair URL settings"] = "URL-instellingen repareren"; -$a->strings["View conversations"] = "Conversaties weergeven"; -$a->strings["Delete contact"] = "Connectie verwijderen"; +$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."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; +$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."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; $a->strings["Last update:"] = "Laatste wijziging:"; -$a->strings["Update public posts"] = "Openbare berichten updaten"; -$a->strings["Update now"] = "Nu updaten"; -$a->strings["Currently blocked"] = "Momenteel geblokkeerd"; -$a->strings["Currently ignored"] = "Momenteel genegeerd"; -$a->strings["Currently archived"] = "Momenteel gearchiveerd"; -$a->strings["Currently pending"] = "Moeten nog geaccepteerd of afgewezen worden"; +$a->strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; +$a->strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; +$a->strings["Image exceeds size limit of %d"] = "Afbeeldingsgrootte overschrijdt het limiet van %d"; +$a->strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken."; +$a->strings["Photo not available."] = "Foto niet beschikbaar."; +$a->strings["Upload File:"] = "Bestand uploaden:"; +$a->strings["Select a profile:"] = "Kies een profiel:"; +$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; +$a->strings["or"] = "of"; +$a->strings["skip this step"] = "sla deze stap over"; +$a->strings["select a photo from your photo albums"] = "Kies een foto uit jouw fotoalbums"; +$a->strings["Crop Image"] = "Afbeelding bijsnijden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; +$a->strings["Done Editing"] = "Klaar met bewerken"; +$a->strings["Image uploaded successfully."] = "Uploaden afbeelding geslaagd"; +$a->strings["Image upload failed."] = "Uploaden afbeelding mislukt"; +$a->strings["Image size reduction [%s] failed."] = "Verkleinen [%s] van afbeelding mislukt."; +$a->strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; +$a->strings["NEW"] = "NIEUW"; +$a->strings["Remove all files"] = "Verwijder alle bestanden"; +$a->strings["Remove this file"] = "Verwijder dit bestand"; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; $a->strings["The error message was:"] = "Het foutbericht was:"; $a->strings["Authentication failed."] = "Authenticatie mislukt."; $a->strings["Remote Authentication"] = "Authenticatie op afstand"; $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; $a->strings["Authenticate"] = "Authenticeren"; -$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -$a->strings["Message deleted."] = "Bericht verwijderd."; -$a->strings["Message recalled."] = "Bericht ingetrokken."; -$a->strings["Send Private Message"] = "Privébericht versturen"; -$a->strings["To:"] = "Aan:"; -$a->strings["Subject:"] = "Onderwerp:"; -$a->strings["Send"] = "Verzenden"; -$a->strings["Message not found."] = "Bericht niet gevonden"; -$a->strings["Delete message"] = "Bericht verwijderen"; -$a->strings["Recall message"] = "Bericht intrekken"; -$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; -$a->strings["Private Conversation"] = "Privéconversatie"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -$a->strings["Send Reply"] = "Antwoord versturen"; -$a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -$a->strings["Discard"] = "Annuleren"; -$a->strings["Please login."] = "Inloggen."; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; -$a->strings["Add a Channel"] = "Kanaal toevoegen"; -$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."] = "Naast een account moet je tenminste één kanaal aanmaken. Een kanaal is een persoonlijke verzameling (gerelateerde) berichten en media, zoals je misschien gewend bent van sociale netwerken. Een kanaal kan gebruikt worden voor social media, een blog, forum, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Jouw naam of een andere relevante naam. Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Familieforum\""; -$a->strings["Choose a short nickname"] = "Korte bijnaam"; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Deze bijnaam (geen spaties) wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) en het internetadres (URL) van jouw kanaal aan te maken, die je dan met anderen kunt delen. Voorbeeld: janp wordt janp@jouw_hub.nl en https://jouw_hub.nl/channel/janp."; -$a->strings["Or import an existing channel from another location"] = "Of importeer een bestaand kanaal vanaf een andere locatie."; -$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"] = "Kies een kanaaltype en het door jouw gewenste privacy-niveau, zodat automatisch de beste permissies kunnen worden ingesteld. Dit kan later, indien gewenst, worden veranderd."; -$a->strings["Channel Type"] = "Kanaaltype"; -$a->strings["Read more about roles"] = "Lees meer over kanaaltypes"; -$a->strings["App installed."] = "App geïnstalleerd"; -$a->strings["Malformed app."] = "Misvormde app."; -$a->strings["Embed code"] = "Insluitcode"; -$a->strings["Edit App"] = "App bewerken"; -$a->strings["Create App"] = "App maken"; -$a->strings["Name of app"] = "Naam van app"; -$a->strings["Location (URL) of app"] = "Locatie (URL) van app"; -$a->strings["Photo icon URL"] = "URL van pictogram"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -$a->strings["Version ID"] = "Versie-ID"; -$a->strings["Price of app"] = "Prijs van de app"; -$a->strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +$a->strings["Select a bookmark folder"] = "Kies een bladwijzermap"; +$a->strings["Save Bookmark"] = "Bladwijzer opslaan"; +$a->strings["URL of bookmark"] = "URL van bladwijzer"; +$a->strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; +$a->strings["Thing updated"] = "Ding bijgewerkt"; +$a->strings["Object store: failed"] = "Opslaan van ding mislukt"; +$a->strings["Thing added"] = "Ding toegevoegd"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Ding weergeven"; +$a->strings["item not found."] = "Item niet gevonden"; +$a->strings["Edit Thing"] = "Ding bewerken"; +$a->strings["Select a profile"] = "Kies een profiel"; +$a->strings["Post an activity"] = "Plaats een bericht"; +$a->strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +$a->strings["Name of thing e.g. something"] = "Naam van ding"; +$a->strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +$a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optioneel)"; +$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; +$a->strings["Blocked"] = "Geblokkeerd"; +$a->strings["Ignored"] = "Genegeerd"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Archived"] = "Gearchiveerd"; +$a->strings["Suggest new connections"] = "Nieuwe kanalen voorstellen"; +$a->strings["New Connections"] = "Nieuwe connecties"; +$a->strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; +$a->strings["Show all connections"] = "Toon alle connecties"; +$a->strings["Unblocked"] = "Niet geblokkeerd"; +$a->strings["Only show unblocked connections"] = "Toon alleen niet geblokkeerde connecties"; +$a->strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; +$a->strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; +$a->strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; +$a->strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit connection"] = "Connectie bewerken"; +$a->strings["Search your connections"] = "Doorzoek jouw connecties"; +$a->strings["Finding: "] = "Zoeken naar: "; +$a->strings["Website:"] = "Website:"; +$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; +$a->strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; +$a->strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; +$a->strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; +$a->strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +$a->strings["Post successful."] = "Verzenden bericht geslaagd."; +$a->strings["Name is required"] = "Naam is vereist"; +$a->strings["Key and Secret are required"] = "Key en secret zijn vereist"; +$a->strings["Diaspora Policy Settings updated."] = "Beleidsinstellingen Diaspora bijgewerkt."; +$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; +$a->strings["Password changed."] = "Wachtwoord veranderd."; +$a->strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; +$a->strings["Not valid email."] = "Geen geldig e-mailadres."; +$a->strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; +$a->strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; +$a->strings["Settings updated."] = "Instellingen bijgewerkt."; +$a->strings["Add application"] = "Applicatie toevoegen"; +$a->strings["Name of application"] = "Naam van applicatie"; +$a->strings["Consumer Key"] = "Consumer key"; +$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; +$a->strings["Consumer Secret"] = "Consumer secret"; +$a->strings["Redirect"] = "Redirect/doorverwijzing"; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; +$a->strings["Icon url"] = "URL van pictogram"; +$a->strings["Optional"] = "Optioneel"; +$a->strings["You can't edit this application."] = "Je kan deze applicatie niet bewerken"; +$a->strings["Connected Apps"] = "Verbonden applicaties"; +$a->strings["Client key starts with"] = "Client key begint met"; +$a->strings["No name"] = "Geen naam"; +$a->strings["Remove authorization"] = "Autorisatie verwijderen"; +$a->strings["No feature settings configured"] = "Geen extra functie- of plugin-instellingen"; +$a->strings["Feature/Addon Settings"] = "Extra functie- en plugin-instellingen"; +$a->strings["Settings for the built-in Diaspora emulator"] = "Instellingen voor de ingebouwde Diaspora-emulator"; +$a->strings["Allow any Diaspora member to comment on your public posts"] = "Sta toe dat elk Diaspora-lid op jouw openbare berichten kan reageren."; +$a->strings["Enable the Diaspora protocol for this channel"] = "Diaspora-protocol voor dit kanaal inschakelen"; +$a->strings["Diaspora Policy Settings"] = "Beleidsinstellingen Diaspora"; +$a->strings["Prevent your hashtags from being redirected to other sites"] = "Voorkom dat jouw tags naar andere websites worden doorverwezen"; +$a->strings["Account Settings"] = "Account-instellingen"; +$a->strings["Enter New Password:"] = "Nieuw wachtwoord invoeren:"; +$a->strings["Confirm New Password:"] = "Nieuw wachtwoord bevestigen:"; +$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; +$a->strings["Email Address:"] = "E-mailadres:"; +$a->strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; +$a->strings["Off"] = "Uit"; +$a->strings["On"] = "Aan"; +$a->strings["Additional Features"] = "Extra functies"; +$a->strings["Connector Settings"] = "Instellingen externe koppelingen"; +$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; +$a->strings["%s - (Experimental)"] = "%s - (experimenteel)"; +$a->strings["Display Settings"] = "Weergave-instellingen"; +$a->strings["Theme Settings"] = "Thema-instellingen"; +$a->strings["Custom Theme Settings"] = "Handmatige thema-instellingen"; +$a->strings["Content Settings"] = "Inhoudsinstellingen"; +$a->strings["Display Theme:"] = "Gebruik thema:"; +$a->strings["Mobile Theme:"] = "Mobiel thema:"; +$a->strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; +$a->strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; +$a->strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; +$a->strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; +$a->strings["Show emoticons (smilies) as images"] = "Toon emoticons (smilies) als afbeeldingen"; +$a->strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; +$a->strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; +$a->strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; +$a->strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; +$a->strings["Use blog/list mode on matrix page"] = "Gebruik blog/lijst-modus op matrixpagina"; +$a->strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; +$a->strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; +$a->strings["Matrix page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op matrixpagina (in pixels)"; +$a->strings["Nobody except yourself"] = "Niemand, behalve jezelf"; +$a->strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; +$a->strings["Approved connections"] = "Geaccepteerde connecties"; +$a->strings["Any connections"] = "Alle connecties"; +$a->strings["Anybody on this website"] = "Iedereen op deze hub"; +$a->strings["Anybody in this network"] = "Iedereen in dit netwerk"; +$a->strings["Anybody authenticated"] = "Geauthenticeerd"; +$a->strings["Anybody on the internet"] = "Iedereen op het internet"; +$a->strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; +$a->strings["Your channel address is"] = "Jouw kanaaladres is"; +$a->strings["Channel Settings"] = "Kanaal-instellingen"; +$a->strings["Basic Settings"] = "Basis-instellingen"; +$a->strings["Your Timezone:"] = "Jouw tijdzone:"; +$a->strings["Default Post Location:"] = "Standaardlocatie bericht:"; +$a->strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; +$a->strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; +$a->strings["Adult Content"] = "Inhoud voor volwassenen"; +$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; +$a->strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; +$a->strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; +$a->strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; +$a->strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op \$Projectname aanwezig bent"; +$a->strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; +$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; +$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; +$a->strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; +$a->strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; +$a->strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; +$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; +$a->strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen"; +$a->strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; +$a->strings["0 or blank prevents expiration"] = "0 of leeg voorkomt het verlopen"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; +$a->strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; +$a->strings["Default Post Permissions"] = "Standaard permissies voor nieuwe berichten"; +$a->strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; +$a->strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; +$a->strings["Notification Settings"] = "Notificatie-instellingen"; +$a->strings["By default post a status message when:"] = "Plaats automatisch een statusbericht wanneer:"; +$a->strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; +$a->strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; +$a->strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; +$a->strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; +$a->strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; +$a->strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; +$a->strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; +$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; +$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; +$a->strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; +$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +$a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; +$a->strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; +$a->strings["Unseen matrix activity"] = "Niet bekeken matrix-activiteit"; +$a->strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; +$a->strings["Unseen private messages"] = "Niet bekeken privéberichten"; +$a->strings["Recommended"] = "Aanbevolen"; +$a->strings["Upcoming events"] = "Aankomende gebeurtenissen"; +$a->strings["Events today"] = "Gebeurtissen van vandaag"; +$a->strings["Upcoming birthdays"] = "Aankomende verjaardagen"; +$a->strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; +$a->strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; +$a->strings["System info messages"] = "Systeemmededelingen"; +$a->strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; +$a->strings["New connections"] = "Nieuwe connecties"; +$a->strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; +$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; +$a->strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; +$a->strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; +$a->strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; +$a->strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; +$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; +$a->strings["Miscellaneous Settings"] = "Diverse instellingen"; +$a->strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; +$a->strings["Remove this channel."] = "Verwijder dit kanaal."; +$a->strings["- select -"] = "- kies map -"; +$a->strings["Version %s"] = "Versie %s"; +$a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; +$a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps"; +$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; +$a->strings["Tag: "] = "Tag: "; +$a->strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +$a->strings["Running at web location"] = "Draaiend op weblocatie"; +$a->strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Bezoek redmatrix.me om meer over \$Projectname te leren."; +$a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +$a->strings["\$projectname issues"] = "\$projectname-issues"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - punt - com"; +$a->strings["Site Administrators"] = "Hubbeheerders: "; +$a->strings["%s element installed"] = "%s onderdeel geïnstalleerd"; +$a->strings["%s element installation failed"] = "Installatie %s-element mislukt"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; +$a->strings["Conversation removed."] = "Conversatie verwijderd"; +$a->strings["No messages."] = "Geen berichten"; +$a->strings["D, d M Y - g:i A"] = "D, j M Y - G:i"; $a->strings["sent you a private message"] = "stuurde jou een privébericht"; $a->strings["added your channel"] = "voegde jouw kanaal toe"; $a->strings["posted an event"] = "plaatste een gebeurtenis"; +$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; +$a->strings["Empty post discarded."] = "Leeg bericht geannuleerd"; +$a->strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; +$a->strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; +$a->strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; +$a->strings["\$Projectname Server - Setup"] = "\$Projectname Server - Setup"; +$a->strings["Could not connect to database."] = "Could not connect to database."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; +$a->strings["Could not create table."] = "Could not create table."; +$a->strings["Your site database has been installed."] = "Your hub database has been installed."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; +$a->strings["System check"] = "System check"; +$a->strings["Check again"] = "Check again"; +$a->strings["Database connection"] = "Database connection"; +$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "In order to install \$Projectname we need to know how to connect to your database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; +$a->strings["Database Server Name"] = "Database Server Name"; +$a->strings["Default is localhost"] = "Default is localhost"; +$a->strings["Database Port"] = "Database Port"; +$a->strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; +$a->strings["Database Login Name"] = "Database Login Name"; +$a->strings["Database Login Password"] = "Database Login Password"; +$a->strings["Database Name"] = "Database Name"; +$a->strings["Database Type"] = "Database Type"; +$a->strings["Site administrator email address"] = "Hub administrator email address"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +$a->strings["Website URL"] = "Hub URL"; +$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; +$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; +$a->strings["Site settings"] = "Hub settings"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server 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."] = "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."; +$a->strings["PHP executable path"] = "PHP executable path"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; +$a->strings["Command line PHP"] = "Command line PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; +$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; +$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."] = "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."; +$a->strings["You can adjust these settings in the servers php.ini."] = "You can adjust these settings in the servers php.ini."; +$a->strings["PHP upload limits"] = "PHP upload limits"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generate encryption keys"; +$a->strings["libCurl PHP module"] = "libCurl PHP module"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +$a->strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; +$a->strings["mb_string PHP module"] = "mb_string PHP module"; +$a->strings["mcrypt PHP module"] = "mcrypt PHP module"; +$a->strings["xml PHP module"] = "xml PHP module"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; +$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"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; +$a->strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed."; +$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."] = "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."; +$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."] = "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."; +$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."] = "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."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; +$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."] = "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."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; +$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."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; +$a->strings["%s is writable"] = "%s is writable"; +$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 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"; +$a->strings["store is writable"] = "store is writable"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; +$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!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own 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."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; +$a->strings["SSL certificate validation"] = "SSL certificate validation"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; +$a->strings["Url rewrite is working"] = "Url rewrite is working"; +$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."] = "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."; +$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; +$a->strings["

What next

"] = "

Wat nu

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +$a->strings["\$Projectname channel"] = "\$Projectname-kanaal"; +$a->strings["%d rating"] = array( + 0 => "%d beoordeling", + 1 => "%d beoordelingen", +); +$a->strings["Gender: "] = "Geslacht:"; +$a->strings["Status: "] = "Status: "; +$a->strings["Homepage: "] = "Homepagina: "; +$a->strings["Public Forum:"] = "Openbaar forum:"; +$a->strings["Keywords: "] = "Trefwoorden: "; +$a->strings["Don't suggest"] = "Niet voorstellen"; +$a->strings["Common connections:"] = "Gemeenschappelijke connecties:"; +$a->strings["Global Directory"] = "Volledige kanalengids"; +$a->strings["Local Directory"] = "Lokale kanalengids"; +$a->strings["Finding:"] = "Gezocht naar:"; +$a->strings["next page"] = "volgende pagina"; +$a->strings["previous page"] = "vorige pagina"; +$a->strings["Sort options"] = "Sorteeropties"; +$a->strings["Alphabetic"] = "Alfabetisch"; +$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; +$a->strings["Newest to Oldest"] = "Nieuw naar oud"; +$a->strings["Oldest to Newest"] = "Oud naar nieuw"; +$a->strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; +$a->strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; +$a->strings["Album not found."] = "Album niet gevonden."; +$a->strings["Delete Album"] = "Verwijder album"; +$a->strings["Delete Photo"] = "Verwijder foto"; +$a->strings["No photos selected"] = "Geen foto's geselecteerd"; +$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; +$a->strings["Upload Photos"] = "Foto's uploaden"; +$a->strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; +$a->strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +$a->strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload."; +$a->strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; +$a->strings["Contact Photos"] = "Connectiefoto's"; +$a->strings["Show Newest First"] = "Nieuwste eerst weergeven"; +$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; +$a->strings["View Photo"] = "Foto weergeven"; +$a->strings["Edit Album"] = "Album bewerken"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; +$a->strings["Photo not available"] = "Foto niet aanwezig"; +$a->strings["Use as profile photo"] = "Als profielfoto gebruiken"; +$a->strings["Private Photo"] = "Privéfoto"; +$a->strings["View Full Size"] = "Volledige grootte weergeven"; +$a->strings["Remove"] = "Verwijderen"; +$a->strings["Edit photo"] = "Foto bewerken"; +$a->strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; +$a->strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; +$a->strings["Caption"] = "Bijschrift"; +$a->strings["Add a Tag"] = "Tag toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; +$a->strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; +$a->strings["In This Photo:"] = "Op deze foto:"; +$a->strings["Map"] = "Kaart"; +$a->strings["View Album"] = "Album weergeven"; +$a->strings["Recent Photos"] = "Recente foto's"; $a->strings["No such group"] = "Collectie niet gevonden"; $a->strings["No such channel"] = "Niet zo'n kanaal"; $a->strings["Search Results For:"] = "Zoekresultaten voor:"; @@ -2031,86 +2019,104 @@ $a->strings["Collection is empty"] = "Collectie is leeg"; $a->strings["Collection: "] = "Collectie: "; $a->strings["Connection: "] = "Connectie: "; $a->strings["Invalid connection."] = "Ongeldige connectie."; -$a->strings["Ipsum Lorem"] = "Lorem ipsum"; -$a->strings["Bookmark added"] = "Bladwijzer toegevoegd"; -$a->strings["My Bookmarks"] = "Mijn bladwijzers"; -$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; -$a->strings["Poll"] = "Poll"; -$a->strings["View Results"] = "Bekijk resultaten"; -$a->strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; -$a->strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; -$a->strings["NEW"] = "NIEUW"; -$a->strings["Remove all files"] = "Verwijder alle bestanden"; -$a->strings["Remove this file"] = "Verwijder dit bestand"; -$a->strings["Schema Default"] = "Standaardschema"; -$a->strings["Sans-Serif"] = "Schreefloos"; -$a->strings["Monospace"] = "Monospace"; -$a->strings["Theme settings"] = "Thema-instellingen"; -$a->strings["Set scheme"] = "Schema van thema instellen"; -$a->strings["Set font-size for posts and comments"] = "Lettergrootte voor berichten en reacties instellen"; -$a->strings["Set font face"] = "Lettertypefamilie instellen"; -$a->strings["Set iconset"] = "Pictogrammenset instellen"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Een grote schaduwgrootte instellen (standaard 15px 15px 15px)"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Een kleine schaduwgrootte instellen (standaard 5px 5px 5px)"; -$a->strings["Set shadow color, default #000"] = "Schaduwkleur instellen (standaard #000)"; -$a->strings["Set radius size, default 5px"] = "Radius instellen (standaard 5px)"; -$a->strings["Set line-height for posts and comments"] = "Lijnhoogte voor berichten en reacties instellen"; -$a->strings["Set background image"] = "Achtergrondafbeelding instellen"; -$a->strings["Set background attachment"] = "Gedrag achtergrondafbeelding instellen"; -$a->strings["Set background color"] = "Achtergrondkleur instellen"; -$a->strings["Set section background image"] = "Achtergrondafbeelding van sectie instellen"; -$a->strings["Set section background color"] = "Achtergrondkleur van sectie instellen"; -$a->strings["Set color of items - use hex"] = "Tekstkleur van items instellen (gebruik hexadecimaal)"; -$a->strings["Set color of links - use hex"] = "Kleur van links instellen (gebruik hexadecimaal)"; -$a->strings["Set max-width for items. Default 400px"] = "Maximale breedte van items instellen (standaard 400px)"; -$a->strings["Set min-width for items. Default 240px"] = "Minimale breedte van items instellen (standaard 240px)"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Breedte van de generieke content-wrapper instellen (standaard 48%)"; -$a->strings["Set color of fonts - use hex"] = "Tekstkleur instellen (gebruik hexadecimaal)"; -$a->strings["Set background-size element"] = "Grootte achtergrondafbeelding instellen"; -$a->strings["Item opacity"] = "Ondoorzichtigheid item"; -$a->strings["Display post previews only"] = "Alleen voorvertoning berichten weergeven"; -$a->strings["Display side bar on channel page"] = "Zijbalk op kanaalpagina weergeven"; -$a->strings["Colour of the navigation bar"] = "Kleur van de navigatiebalk"; -$a->strings["Item float"] = "Item float"; -$a->strings["Left offset of the section element"] = "Linker offset van het sectie-element"; -$a->strings["Right offset of the section element"] = "Rechter offset van het sectie-element"; -$a->strings["Section width"] = "Breedte van sectie"; -$a->strings["Left offset of the aside"] = "Rechter offset van aside (zijbalk)"; -$a->strings["Right offset of the aside element"] = "Rechter offset van het aside-element"; -$a->strings["Light (Red Matrix default)"] = "Light (\$Projectname-standaard)"; -$a->strings["Select scheme"] = "Kies schema van thema"; -$a->strings["Narrow navbar"] = "Smalle navigatiebalk"; -$a->strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk"; -$a->strings["Navigation bar gradient top color"] = "Bovenste gradiëntkleur navigatiebalk"; -$a->strings["Navigation bar gradient bottom color"] = "Onderste gradiëntkleur navigatiebalk"; -$a->strings["Navigation active button gradient top color"] = "Bovenste gradiëntkleur actieve knop navigatiebalk"; -$a->strings["Navigation active button gradient bottom color"] = "Onderste gradiëntkleur actieve knop op navigatiebalk"; -$a->strings["Navigation bar border color "] = "Randkleur navigatiebalk "; -$a->strings["Navigation bar icon color "] = "Pictogramkleur navigatiebalk"; -$a->strings["Navigation bar active icon color "] = "Actieve pictogramkleur navigatiebalk"; -$a->strings["link color"] = "Linkkleur instellen"; -$a->strings["Set font-color for banner"] = "Tekstkleur van banner instellen"; -$a->strings["Set the background color"] = "Achtergrondkleur instellen"; -$a->strings["Set the background image"] = "Achtergrondafbeelding instellen"; -$a->strings["Set the background color of items"] = "Achtergrondkleur items instellen"; -$a->strings["Set the background color of comments"] = "Achtergrondkleur reacties instellen"; -$a->strings["Set the border color of comments"] = "Randkleur reacties instellen"; -$a->strings["Set the indent for comments"] = "Inspringen reacties instellen"; -$a->strings["Set the basic color for item icons"] = "Basiskleur itempictogrammen instellen"; -$a->strings["Set the hover color for item icons"] = "Hoverkleur itempictogrammen instellen"; -$a->strings["Set font-size for the entire application"] = "Tekstgrootte van de volledige applicatie instellen"; -$a->strings["Example: 14px"] = "Voorbeeld: 14px"; -$a->strings["Set font-color for posts and comments"] = "Tekstkleur van berichten en reacties"; -$a->strings["Set radius of corners"] = "Radius van hoeken instellen"; -$a->strings["Set shadow depth of photos"] = "Schaduwdiepte van foto's instellen"; -$a->strings["Set maximum width of content region in pixel"] = "Maximumbreedte conversatieruimte instellen (in pixels)"; -$a->strings["Leave empty for default width"] = "Laat leeg voor standaardbreedte"; -$a->strings["Center page content"] = "Inhoud centreren"; -$a->strings["Set minimum opacity of nav bar - to hide it"] = "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)"; -$a->strings["Set size of conversation author photo"] = "Grootte profielfoto's van berichten instellen"; -$a->strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen"; +$a->strings["Profile not found."] = "Profiel niet gevonden."; +$a->strings["Profile deleted."] = "Profiel verwijderd."; +$a->strings["Profile-"] = "Profiel-"; +$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; +$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; +$a->strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; +$a->strings["Profile Name is required."] = "Profielnaam is vereist"; +$a->strings["Marital Status"] = "Huwelijke status"; +$a->strings["Romantic Partner"] = "Romantische partner"; +$a->strings["Likes"] = "Houdt van"; +$a->strings["Dislikes"] = "Houdt niet van"; +$a->strings["Work/Employment"] = "Werk/arbeid"; +$a->strings["Religion"] = "Religie"; +$a->strings["Political Views"] = "Politieke overtuigingen"; +$a->strings["Sexual Preference"] = "Seksuele voorkeur"; +$a->strings["Homepage"] = "Homepagina"; +$a->strings["Interests"] = "Interesses"; +$a->strings["Profile updated."] = "Profiel bijgewerkt"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; +$a->strings["Edit Profile Details"] = "Profiel bewerken"; +$a->strings["View this profile"] = "Profiel weergeven"; +$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; +$a->strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; +$a->strings["Clone this profile"] = "Dit profiel klonen"; +$a->strings["Delete this profile"] = "Dit profiel verwijderen"; +$a->strings["Import profile from file"] = "Profiel vanuit bestand importeren"; +$a->strings["Export profile to file"] = "Profiel naar bestand exporteren"; +$a->strings["Profile Name:"] = "Profielnaam:"; +$a->strings["Your Full Name:"] = "Jouw volledige naam:"; +$a->strings["Title/Description:"] = "Titel/omschrijving:"; +$a->strings["Your Gender:"] = "Jouw geslacht"; +$a->strings["Birthday :"] = "Verjaardag: "; +$a->strings["Street Address:"] = "Straat en huisnummer:"; +$a->strings["Locality/City:"] = "Woonplaats:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:"; +$a->strings[" Marital Status:"] = " Huwelijkse staat:"; +$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; +$a->strings["Since [date]:"] = "Sinds [datum]:"; +$a->strings["Homepage URL:"] = "URL homepagina:"; +$a->strings["Religious Views:"] = "Religieuze overtuigingen"; +$a->strings["Keywords:"] = "Trefwoorden"; +$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; +$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt"; +$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf..."; +$a->strings["Hobbies/Interests"] = "Hobby's/interesses"; +$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; +$a->strings["My other channels"] = "Mijn andere kanalen"; +$a->strings["Musical interests"] = "Muzikale interesses"; +$a->strings["Books, literature"] = "Boeken/literatuur"; +$a->strings["Television"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment"; +$a->strings["Love/romance"] = "Liefde/romantiek"; +$a->strings["Work/employment"] = "Werk/arbeid"; +$a->strings["School/education"] = "School/onderwijs"; +$a->strings["This is your default profile."] = "Dit is jouw standaardprofiel"; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren"; +$a->strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +$a->strings["Include desirable objects in your profile"] = "Voeg door jou gewenste dingen aan jouw profiel toe"; +$a->strings["Block Name"] = "Bloknaam"; +$a->strings["Block Title"] = "Bloktitel"; +$a->strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; +$a->strings["Source created."] = "Bron aangemaakt."; +$a->strings["Source updated."] = "Bron aangemaakt."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; +$a->strings["New Source"] = "Nieuwe bron"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; +$a->strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; +$a->strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; +$a->strings["Source not found."] = "Bron niet gevonden"; +$a->strings["Edit Source"] = "Bron bewerken"; +$a->strings["Delete Source"] = "Bron verwijderen"; +$a->strings["Source removed"] = "Bron verwijderd"; +$a->strings["Unable to remove source."] = "Verwijderen bron mislukt."; +$a->strings["Page Title"] = "Paginatitel"; +$a->strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; +$a->strings["Like/Dislike"] = "Leuk/niet leuk"; +$a->strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; +$a->strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account te registreren om verder te kunnen gaan."; +$a->strings["Invalid request."] = "Ongeldig verzoek"; +$a->strings["thing"] = "ding"; +$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +$a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; +$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; +$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; +$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; +$a->strings["Action completed."] = "Actie voltooid"; +$a->strings["Thank you."] = "Bedankt"; +$a->strings["Tag removed"] = "Tag verwijderd"; +$a->strings["Remove Item Tag"] = "Verwijder item-tag"; +$a->strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; $a->strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; $a->strings["Update Error at %s"] = "Update-fout op %s"; $a->strings["Create an account to access services and applications within the Red Matrix"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van \$Projectname"; diff --git a/view/nl/update_fail_eml.tpl b/view/nl/update_fail_eml.tpl index d903a8a9f..171859344 100644 --- a/view/nl/update_fail_eml.tpl +++ b/view/nl/update_fail_eml.tpl @@ -1,13 +1,13 @@ Hey, -I'm the RedMatrix hub at {{$sitename}}; +I'm the Hubzilla hub at {{$sitename}}; -The Red atrix developers released update {{$update}} recently, +The Hubzilla developers released update {{$update}} recently, but when I tried to install it, something went terribly wrong. This needs to be fixed soon and it requires human intervention. -Please contact a RedMatrix developer if you can not figure out how to +Please contact a Hubzilla developer if you can not figure out how to fix it on your own. My database might be invalid. The error message is '{{$error}}'. Apologies for the inconvenience, - your hub at {{$siteurl}} \ No newline at end of file + your hub at {{$siteurl}} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 2ff6c1eb4..b25ca333b 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -129,7 +129,7 @@ pre code { code { font-size: 1em; - padding: 5px; + padding: 1em; border: 1px solid #ccc; background: #ccc; color: #000; @@ -1432,7 +1432,10 @@ a.rconnect:hover, a.rateme:hover, div.rateme:hover { .profile-match-connect { margin-top: 5px; } .reshared-content { margin-left: 20px; } -.shared_header img { margin-right: 10px; } +.shared_header img { + border-radius: $radiuspx; + margin-right: 10px; +} .tag1 { font-size : 0.9em !important; @@ -1526,22 +1529,6 @@ a .drop-icons:hover { margin-right: 10px; color: #FF0000; } - -.attachlink { - float: left; - border: 1px solid black; - padding: 5px; - margin-right: 8px; -} - -.attach-icons { - font-size: 1.4em; -} - -.attach-clip { - margin-right: 3px; - font-size: 1.8em; -} #menulist { list-style-type: none; @@ -1635,39 +1622,43 @@ img.mail-conv-sender-photo { /* conversation */ -.wall-item-title { - font-size: $font_size; +.wall-item-head { + padding: 10px 10px 0px 10px; } -.hide-comments-outer, -.thread-wrapper .wall-item-comment-wrapper, -.wall-item-content-wrapper.comment { - margin-left: $comment_indent; +.wall-item-content { + padding: 1em 10px; +} + +.wall-photo-item { + padding: 10px 0px; +} + +.wall-item-tools { + padding: 0px 10px 10px 10px; +} + + +.wall-item-title { + font-size: $font_size; } .wall-item-content-wrapper { background-color: $item_colour; - padding: 10px; border-top-right-radius: $radiuspx; border-top-left-radius: $radiuspx; } .wall-item-content-wrapper.comment { background-color: $comment_item_colour; - border-color: $comment_border_colour; - border-style: solid; - border-width: 0px 0px 0px 3px; - border-radius: 0px; - padding: 7px 10px 7px 7px; } .hide-comments-outer { background-color: $comment_item_colour; - border-color: $comment_border_colour; border-top-color: #ccc; border-style: solid; border-top-style: dashed; - border-width: 1px 0px 0px 3px; + border-width: 1px 0px 0px 0px; text-align: center; border-radius: 0px; } @@ -1722,6 +1713,7 @@ img.mail-conv-sender-photo { } .wall-item-content, +.mail-conv-body, .page-body { font-size: $font_size; clear: both; diff --git a/view/theme/redbasic/tpl/theme_settings.tpl b/view/theme/redbasic/tpl/theme_settings.tpl index 4f5b69beb..cdc9de489 100644 --- a/view/theme/redbasic/tpl/theme_settings.tpl +++ b/view/theme/redbasic/tpl/theme_settings.tpl @@ -16,8 +16,8 @@ {{include file="field_colorinput.tpl" field=$background_image}} {{include file="field_colorinput.tpl" field=$item_colour}} {{include file="field_colorinput.tpl" field=$comment_item_colour}} - {{include file="field_colorinput.tpl" field=$comment_border_colour}} - {{include file="field_input.tpl" field=$comment_indent}} + {{*include file="field_colorinput.tpl" field=$comment_border_colour*}} + {{*include file="field_input.tpl" field=$comment_indent*}} {{include file="field_input.tpl" field=$body_font_size}} {{include file="field_input.tpl" field=$font_size}} {{include file="field_colorinput.tpl" field=$font_colour}} diff --git a/view/tpl/chatroom_new.tpl b/view/tpl/chatroom_new.tpl index c02e55c25..1317b672b 100644 --- a/view/tpl/chatroom_new.tpl +++ b/view/tpl/chatroom_new.tpl @@ -2,6 +2,7 @@
{{include file="field_input.tpl" field=$name}} +{{include file="field_input.tpl" field=$chat_expire}} {{$acl}}
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index dc8064f1a..5bac5b412 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -8,51 +8,67 @@
-
-
- {{$item.name}} +
+
+
+ {{$item.name}} +
+
-
+ {{if $item.title}} +
+

{{if $item.title_tosource}}{{if $item.plink}}{{/if}}{{/if}}{{$item.title}}{{if $item.title_tosource}}{{if $item.plink}}{{/if}}{{/if}}

+
+ {{/if}} + {{if $item.lock}} + + {{/if}} +
+ {{$item.name}}{{if $item.owner_url}} {{$item.via}} {{$item.owner_name}}{{/if}} +
+
+ {{if $item.verified}} {{elseif $item.forged}} {{/if}}{{if $item.location}}{{$item.location}}, {{/if}}{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}{{if $item.editedtime}} {{/if}} {{if $item.app}}{{$item.str_app}}{{/if}} +
+
- {{if $item.title}} -
-

{{if $item.title_tosource}}{{if $item.plink}}{{/if}}{{/if}}{{$item.title}}{{if $item.title_tosource}}{{if $item.plink}}{{/if}}{{/if}}

-
- {{/if}} - {{if $item.lock}} - - {{/if}} -
- {{$item.name}}{{if $item.owner_url}} {{$item.via}} {{$item.owner_name}}{{/if}} -
-
- {{if $item.verified}} {{elseif $item.forged}} {{/if}}{{if $item.location}}{{$item.location}}, {{/if}}{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}{{if $item.editedtime}} {{/if}} {{if $item.app}}{{$item.str_app}}{{/if}} -
-
-
+
{{$item.body}} - {{if $item.tags}} -
- {{foreach $item.tags as $tag}} - {{$tag}} - {{/foreach}} -
- {{/if}} - {{if $item.has_cats}} -
- {{$item.txt_cats}} {{foreach $item.categories as $cat}}{{$cat.name}} [{{$remove}}] {{if $cat.last}}{{else}}, {{/if}}{{/foreach}} -
- {{/if}} - {{if $item.has_folders}} -
- {{$item.txt_folders}} {{foreach $item.folders as $cat}}{{$cat.name}} [{{$remove}}] {{if $cat.last}}{{else}}, {{/if}}{{/foreach}} -
- {{/if}}
+
+ {{if $item.has_tags}} +
+ {{if $item.mentions}} +
+ {{$item.mentions}} +
+ {{/if}} + {{if $item.tags}} +
+ {{$item.tags}} +
+ {{/if}} + {{if $item.categories}} +
+ {{$item.categories}} +
+ {{/if}} + {{if $item.folders}} +
+ {{$item.folders}} +
+ {{/if}} + {{if $item.attachments}} +
+ {{$item.attachments}} +
+ {{/if}} +
+
+ {{/if}}
{{if $item.like}} @@ -167,6 +183,7 @@ {{/foreach}}
{{/if}} +
diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl index 5487d5937..65b695a70 100755 --- a/view/tpl/conv_list.tpl +++ b/view/tpl/conv_list.tpl @@ -8,51 +8,68 @@
-
-
- {{$item.name}} +
+
+
+ {{$item.name}} +
+
-
+ {{if $item.title}} +
+

{{if $item.title_tosource}}{{if $item.plink}}{{/if}}{{/if}}{{$item.title}}{{if $item.title_tosource}}{{if $item.plink}}{{/if}}{{/if}}

+
+ {{/if}} + {{if $item.lock}} + + {{/if}} +
+ {{$item.name}}{{if $item.owner_url}} {{$item.via}} {{$item.owner_name}}{{/if}} +
+
+ {{if $item.verified}} {{elseif $item.forged}} {{/if}}{{if $item.location}}{{$item.location}}, {{/if}}{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}{{if $item.editedtime}} {{/if}} {{if $item.app}}{{$item.str_app}}{{/if}} +
+
- {{if $item.title}} -
-

{{if $item.title_tosource}}{{if $item.plink}}{{/if}}{{/if}}{{$item.title}}{{if $item.title_tosource}}{{if $item.plink}}{{/if}}{{/if}}

-
- {{/if}} - {{if $item.lock}} - - {{/if}} -
- {{$item.name}}{{if $item.owner_url}} {{$item.via}} {{$item.owner_name}}{{/if}} -
-
- {{if $item.verified}} {{elseif $item.forged}} {{/if}}{{if $item.location}}{{$item.location}}, {{/if}}{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}{{if $item.editedtime}} {{/if}} {{if $item.app}}{{$item.str_app}}{{/if}} -
-
-
-
+
+
{{$item.body}} - {{if $item.tags}} -
- {{foreach $item.tags as $tag}} - {{$tag}} - {{/foreach}} -
- {{/if}} - {{if $item.has_cats}} -
- {{$item.txt_cats}} {{foreach $item.categories as $cat}}{{$cat.name}} [{{$remove}}] {{if $cat.last}}{{else}}, {{/if}}{{/foreach}} -
- {{/if}} - {{if $item.has_folders}} -
- {{$item.txt_folders}} {{foreach $item.folders as $cat}}{{$cat.name}} [{{$remove}}] {{if $cat.last}}{{else}}, {{/if}}{{/foreach}} -
- {{/if}}
+
+ {{if $item.has_tags}} +
+ {{if $item.mentions}} +
+ {{$item.mentions}} +
+ {{/if}} + {{if $item.tags}} +
+ {{$item.tags}} +
+ {{/if}} + {{if $item.categories}} +
+ {{$item.categories}} +
+ {{/if}} + {{if $item.folders}} +
+ {{$item.folders}} +
+ {{/if}} + {{if $item.attachments}} +
+ {{$item.attachments}} +
+ {{/if}} +
+
+ {{/if}} +
{{if $item.like}} @@ -176,6 +193,7 @@ {{/foreach}} {{/if}}
+
diff --git a/view/tpl/cropbody.tpl b/view/tpl/cropbody.tpl index 4794c0b83..01d9a24a0 100755 --- a/view/tpl/cropbody.tpl +++ b/view/tpl/cropbody.tpl @@ -27,8 +27,8 @@ previewWrap: 'previewWrap', minWidth: 300, minHeight: 300, - maxWidth: 640, - maxHeight: 640, + maxWidth: 1024, + maxHeight: 1024, ratioDim: { x: 100, y:100 }, displayOnInit: true, onEndCrop: onEndCrop diff --git a/view/tpl/item_attach.tpl b/view/tpl/item_attach.tpl index eeea25967..7638f39e7 100644 --- a/view/tpl/item_attach.tpl +++ b/view/tpl/item_attach.tpl @@ -1,8 +1,5 @@ -
{{if $attaches}} -
- {{foreach $attaches as $a}} - - {{/foreach}} -
+{{foreach $attaches as $a}} + {{$a.label}} +{{/foreach}} {{/if}} diff --git a/view/tpl/item_categories.tpl b/view/tpl/item_categories.tpl index ec2639a6f..eea0e0b8f 100644 --- a/view/tpl/item_categories.tpl +++ b/view/tpl/item_categories.tpl @@ -1,7 +1,7 @@ {{if $categories}}
{{foreach $categories as $cat}} - {{if $cat.url}}{{$cat.term}}{{else}}{{$cat.term}}{{/if}} +{{if $cat.url}}{{$cat.term}}{{else}}{{$cat.term}}{{/if}} {{/foreach}}
{{/if}} diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 100dd15b9..ea68368aa 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -47,19 +47,19 @@
- - - - -
diff --git a/view/tpl/locmanage.tpl b/view/tpl/locmanage.tpl index e0232547f..4ace457ed 100644 --- a/view/tpl/locmanage.tpl +++ b/view/tpl/locmanage.tpl @@ -12,15 +12,15 @@ function drophub(id) { {{foreach $hubs as $hub}} +{{if ! $hub.deleted }} +{{$hub.hubloc_url}} ({{$hub.hubloc_addr}}) - + +{{/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}}
diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index 2e64de7bc..4f54f1a6a 100755 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -4,15 +4,38 @@
{{if $mail.is_recalled}}{{$mail.is_recalled}}{{/if}} - +
{{$mail.date}}
-
{{$mail.body}}
-
- {{if $mail.can_recall}} - - {{/if}} - +
+
+
+
+ {{$mail.body}} +
+ +
diff --git a/view/tpl/mail_display.tpl b/view/tpl/mail_display.tpl index 789c25ade..24e763571 100755 --- a/view/tpl/mail_display.tpl +++ b/view/tpl/mail_display.tpl @@ -1,6 +1,8 @@
+ {{if $mailbox == 'combined'}} {{$delete}} + {{/if}}

{{$prvmsg_header}}

diff --git a/view/tpl/message_side.tpl b/view/tpl/message_side.tpl index b3bb94d71..6ea63c21e 100755 --- a/view/tpl/message_side.tpl +++ b/view/tpl/message_side.tpl @@ -1,7 +1,6 @@

{{$title}}